Tout n'est pas qu'une histoire de relations : architectures avancées NoSQL et graphes

Size: px
Start display at page:

Download "Tout n'est pas qu'une histoire de relations : architectures avancées NoSQL et graphes"

Transcription

1 Tout n'est pas qu'une histoire de relations : architectures avancées NoSQL et graphes Amazon DynamoDB & Amazon Neptune Olivier Bazoud, Head of Infrastructure chez Ogury Alexandre Pinhel Solutions Architect, Manager, France. #AWSSummit

2 AWS Base de données relationnelles Schéma fort Modèle relationnel Transactions Jointures

3 Caractéristiques des applications à large echelle (internet) Utilisateurs >1M Volume données TB-PB-EB Localisation Global Performance Milliseconds-Microseconds Reqûetes Millions Acces Mobile, IoT, Devices Economie Pay as you go Relational Key-value Document Graph Accès développeur Instantané par API ;

4 Raisons pour choisir une base non relationnelle Schéma variable ou absence de schema Dénormalisé, key/value, document Items non connectés, orienté aggrégation Séparation de performance read et write

5 Des choix plus difficiles Un modèle plus complexe Un schema évolutif (par entité) Des données très connectées (structure variable selon les entités) Les requêtes nécessitent de joindre des entités ou de naviguer au travers des relations

6 AWS Base de données non relationnelles Fait pour des cas d utilisations spécifiques Non-relational Nonrelationelle Amazon DynamoDB Key value Document Amazon ElastiCache Amazon Neptune Graph AWS Database Migration Service

7 Amazon DynamoDB Entièrement managé, multi-master, base multi-region NOSQL pour n importe quelle taille Highly scalable Fast, consistent performance Fully managed Business critical reliability Auto-scaling to hundreds of terabytes of data, that serve millions of requests per second Consistent single-digit millisecond latency; DAX inmemory performance reduces response times to microseconds Automatic provisioning and infrastructure management Data is replicated across fault tolerant availability zones, with fine-grained access control

8 Amazon DynamoDB Débit (RCU WCU) Fournit au niveau de la table Write capacity units (WCUs): capacité d écriture, mesurée 1 KB par seconde Read capacity units (RCUs): capacité de lecture mesurée par 4 KB par seconde - RCU= lecture consistente - Lecture éventuellement consistente = 1/2 RCU Les lectures et les écritures sont indépendantes.

9 Amazon DynamoDB - Nouveautés February 2017 April 2017 April 2017 June 2017 Time to Live (TTL) VPC Endpoints DynamoDB Accelerator (DAX) Auto Scaling Nov 2017 Nov 2017 Feb 2018 Global Tables (GA) On-demand Backup (GA) Encryption at rest (GA)

10 Table employés

11 Table employés Clé employeeid cola

12 Table employés Clé employeeid cola Autre attributs: state city dept city_dept

13 Index global secondaire employés par état et ville/dpt.

14 Index global secondaire employés par état et city/dept Clé state city_dept Clé composite

15 Requête (Query) par état

16 Requête par Etat et Ville (State and City)

17 Requête par état, ville et département

18 Python Trouver les employés par état et ville/dept dynamodb = boto3.resource('dynamodb') table = dynamodb.table('employees') response = table.query( IndexName='gsi_city_dept', KeyConditionExpression=Key('state').eq(value1) & \ Key('city_dept').begins_with(value2) ) for i in response['items']: city,dept = i['city_dept'].split(':') print('\tname: %s. City: %s. Dept: %s' % (i['name'], city, dept))

19 Initialiser les objets dynamodb = boto3.resource('dynamodb') table = dynamodb.table('employees') response = table.query( IndexName='gsi_city_dept', KeyConditionExpression=Key('state').eq(value1) & \ Key('city_dept').begins_with(value2) ) for i in response['items']: city,dept = i['city_dept'].split(':') print('\tname: %s. City: %s. Dept: %s' % (i['name'], city, dept))

20 Requêter la table dynamodb = boto3.resource('dynamodb') table = dynamodb.table('employees') response = table.query( IndexName='gsi_city_dept', KeyConditionExpression=Key('state').eq(value1) & \ Key('city_dept').begins_with(value2) ) for i in response['items']: city,dept = i['city_dept'].split(':') print('\tname: %s. City: %s. Dept: %s' % (i['name'], city, dept))

21 Afficher les résultats dynamodb = boto3.resource('dynamodb') table = dynamodb.table('employees') response = table.query( IndexName='gsi_city_dept', KeyConditionExpression=Key('state').eq(value1) & \ Key('city_dept').begins_with(value2) ) for i in response['items']: city,dept = i['city_dept'].split(':') print('\tname: %s. City: %s. Dept: %s' % (i['name'], city, dept))

22 AWS Summit Paris 2018 Olivier Bazoud Head of Infrastructure chez Ogury

23 LONDRES PARIS MILAN ROME MADRID NEW-YORK LOS ANGELES BOSTON CHICAGO DETROIT

24

25 User agreement We would like to inform you regarding the Consent to Collection and Use of Data. By clicking on I agree below, you consent to Ogury Ltd collecting information from your device to allow us to dynamically serve more relevant promoted content and product support and improve our product and services. This consent applies to all Apps you have installed or may install that contain Ogury s technology. GDPR by design The data that we collect may include information about your device, location, , application, and browsing usage. The data we collect may be shared I AGREE within our group and with select business partners, including those based outside I the REFUSE European Economic Area.

26 THE MOST POWERFUL DATA SET IN THE INDUSTRY Once a user opts in, we can listen to signals and translate them into deterministic data, including Every installed app Usage of these apps Every website browsed

27 WE ARE CREATING OUR OWN DATA! PUBLISHER S DATA Ogury never uses or exploits Publishers in-app usage data. OGURY DATA Ogury generates its own data. Ogury is the only company able to translate raw signals from mobile devices into meaningful and useful data.

28

29 Ogury For Marketers Assurer la disponibilité des users live Performance de la délivrance Collecter les signaux faibles Renforcer la compliance

30

31 Technique Stockage des users live dans des clusters Couchbase NoSQL de type Clé / Valeur Version obsolète Backup / Restore Mono AZ Managé par les DevOps Nodes fail over Manual scaling Tuning Sécurité

32

33

34

35

36

37

38

39

40

41

42 Bénéfices Migration performante et transparente Suppression de la dette technique Backup / Restore MultiAZ Managé par AWS Sécurisé

43

44 GLOBAL MOBILE DATA COMPANY

45 Graphes Requêtes sur données connectées

46 Graphe social Avec qui je me connecte? AMI

47 Fermer les triangles Bill AMI Sarah

48 Fermer les triangles Bill AMI AMI Terry Sarah

49 Fermer les triangles Bill AMI AMI Terry Sarah

50 Fermer les triangles Bill AMI AMI Terry AMI Sarah

51 Amazon Neptune: Une base en graphes rapide et fiable Optimisé pour stocker et requêter des données hautement connectées

52 Neptune cas d usage Réseaux sociaux Recommandations Réseaux connaissances Détection fraudes Science de la vie Réseau & IT operations

53 Neptune Exemple de graphe Knows name: marko age:29 Person Likes name: France lang:francais Team Likes name: josh age:32 Person Knows Likes Likes Person Person Team name: vadas age:27 name: peter age:35 name: brazil lang:portugues

54 Neptune - Requête sur les personnes

55 Neptune - autre exemple: recommandation de nouveaux amis g.v().has('name','terry').as('user'). both('friend').aggregate('friends'). both('friend'). where(neq('user')).where(without('friends')). groupcount().by('name'). order(local).by(values, decr)

56 Trouver Terry g.v().has('name','terry').as('user'). both('friend').aggregate('friends'). both('friend'). where(neq('user')).where(without('friends')). groupcount().by('name'). order(local).by(values, decr)

57 Trouver les amis de Terry Créer une collection g.v().has('name','terry').as('user'). both('friend').aggregate('friends'). both('friend'). where(neq('user')).where(without('friends')). groupcount().by('name'). order(local).by(values, decr) Ignorer le point départ

58 Et les amis des amis g.v().has('name','terry').as('user'). both('friend').aggregate('friends'). both('friend'). where(neq('user')).where(without('friends')). groupcount().by('name'). order(local).by(values, decr)

59 qui ne sont pas Terry et ne sont pas amis avec Terry g.v().has('name','terry').as('user'). both('friend').aggregate('friends'). both('friend'). where(neq('user')).where(without('friends')). groupcount().by('name'). order(local).by(values, decr)

60 On groupe les noeuds esseulés par nom g.v().has('name','terry').as('user'). both('friend').aggregate('friends'). both('friend'). where(neq('user')).where(without('friends')). groupcount().by('name'). order(local).by(values, decr) Emets la valeur( name ) et compte

61 Ordonner par le plus grand nombre de connections g.v().has('name','terry').as('user'). both('friend').aggregate('friends'). both('friend'). where(neq('user')).where(without('friends')). groupcount().by('name'). order(local).by(values, decr)

62 Résultats [Henry:3, Emily:2, Colin:2, Kate:1, Sarah:1, Chloe:1]

63 Synthèse Choisissez votre base en fonction de votre modèle de données, des patterns de requêtes et de la performance et disponibilité. DynamoDB Neptune Description Déploiement Modèle de données APIs Modèle de requêtes Ordre de la "Serverless" Clé/Valeur CLI, AWS SDKs Orienté milliseconde en lecture et écriture aggréagation: trouver des à n importe quelle échelle éléments dans une hiérarchie (clé composite) Stocke et requête des millions de relations en quelques millisecondes Basé sur des instances avec auto-scaling sur le stockage 2 modèles: sans schema graphe ou triples RDF Gremlin et SPARQL 1.1 avec des clients dans le langage choisi Traversée de graphe et recherche de patterns en graphe

64

65

66 #AWSSummit

Index. TerraPorte 7600 & accessable

Index. TerraPorte 7600 & accessable TerraPorte 7600 & accessable Out-Swing / Ouverture Extérieure Thermally broken frame with superior air / water performance. Rain screen design and multi-point locking ideal for residential and condominium

More information

HOLA SAFETY RING PLAN

HOLA SAFETY RING PLAN FRENCH VERSION ON PAGE 3 HOLA SAFETY RING PLAN PRICE: $50.00 per person EFFECTIVE FEBRUARY 01, 2019 The Hola Safety Ring Plan allows you to cancel your trip with a refund up to 3 days before departure

More information

Thermographie, pourquoi l utiliser?

Thermographie, pourquoi l utiliser? Thermographie, pourquoi l utiliser? Manny Alsaid FLIR Systems Jacques Wagner MultiPro Plus = 3,600 Thermomètre IR Thermometre IR La zone de mesure Distance au cible Ce quoi l infrarouge? Voir la réalité

More information

Index. RainBlade 1970

Index. RainBlade 1970 Interior glazed, full rainscreen design with bull nose profile Vitrer de l'intérieur avec écran pare pluie et profilé avec un nez Index Primary components Composantes principales Thermal Simulation chart

More information

1. Configurez votre Stick Up Cam Wired dans l application Ring.

1. Configurez votre Stick Up Cam Wired dans l application Ring. Stick Up Cam Wired 1. Configurez votre Stick Up Cam Wired dans l application Ring. Téléchargez l application Ring. L application vous guide dans la configuration et l utilisation de votre Stick Up Cam

More information

Guide Du Routard Andalousie 2018

Guide Du Routard Andalousie 2018 We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer, you have convenient answers with guide du routard andalousie

More information

Index. TerraPorte 7600 & accessable

Index. TerraPorte 7600 & accessable TerraPorte 7600 & accessable Out-Swing / Ouverture Extérieure Thermally broken frame with superior air / water performance. Rain screen design and multi-point locking ideal for residential and condominium

More information

SCADE for AIRBUS critical avionics systems

SCADE for AIRBUS critical avionics systems SCADE Users Conference October 2009 Presented by Jean-Charles DALBIN Airbus Operations SAS SCADE for AIRBUS critical avionics systems Scade Users Conference 2009 Agenda Airbus Context SCADE use Automatic

More information

WELCOME TO ALL OUR VOLVO S AMATEURS FRIENDS

WELCOME TO ALL OUR VOLVO S AMATEURS FRIENDS WELCOME TO ALL OUR VOLVO S AMATEURS FRIENDS For the first time since its creation, this 9th IVM will take place in France. Through this opportunity the Volvo Club of France who is getting settling this

More information

THE WORLD IS YOURS. Formations linguistiques & interculturelles

THE WORLD IS YOURS. Formations linguistiques & interculturelles THE WORLD IS YOURS Formations linguistiques & interculturelles 11 langues, plus de 160 cultures et de nombreuses thématiques managériales dans nos centres tout confort, au cœur de l Europe Un apprentissage

More information

SE... 4 PORTAIR GR...

SE... 4 PORTAIR GR... CAR CARRIER & CHASSIS 2014 CONTENTS CAR CARRIER Range PORTAIR SE... 4 PORTAIR GR... 6 PORTAIR 3.5 T... 8 PORTAIR 5.1 T... 10 PORTAIR PRESTIGE... 12 CHASSIS & AIR SUSPENSIONS Range CHASSIS 1 OR 2 REAR AXLES...

More information

GENE-AUTO Status of new Airbus case Studies

GENE-AUTO Status of new Airbus case Studies GENEAUTO 9/29/2009 Presented by Jean-Charles DALBIN Airbus Operations SAS & Laurent DUFFAU Airbus Operations SAS GENE-AUTO Status of new Airbus case Studies Airbus Operation SAS - GENEAUTO Status on Airbus

More information

1.0 EXISTING PARKING SITUATION

1.0 EXISTING PARKING SITUATION January 16 th, 2018 Greatwise Developments 333 Wilson Ave., Suite 200 Toronto, Ontario, Canada M3H 1T2 Re: Norberry Crescent Additional Survey Ottawa, Ontario Subsequent to the submission of the Transportation

More information

Epidémiologie de la tuberculose à la Réunion,

Epidémiologie de la tuberculose à la Réunion, Epidémiologie de la tuberculose à la Réunion, 2000-2007 N. Baroux 1, Dr E. D Ortenzio 1 1/ CIRE Réunion-Mayotte Nombres estimés de nouveaux cas, 2006 Estimated number of new TB cases (all forms) No estimate

More information

Procurement Plan. I. General

Procurement Plan. I. General I. General Plan 1. Bank s approval Date of the procurement Plan [Original Mar 2017] 2. Date of General Notice NA 3. Period covered by this procurement plan The procurement period of project covered from

More information

9 me Atelier du Club Display. Bienvenue

9 me Atelier du Club Display. Bienvenue 9 me Atelier du Club Display Bienvenue Ordre du jour global Matin: 10h00 12h30 Vue sur l Europe Campagne de Communication en France Après-midi: 14h00 16h30 Affichage de posters avant/après t Financement

More information

ThermaWall XTRM2600 Unitized Curtain Wall

ThermaWall XTRM2600 Unitized Curtain Wall ThermaWall XTRM2600 Unitized Curtain Wall Unitized thermally broken curtain wall - Capped and SSG, 2 1/2" (63.5mm) and 3" (76.2mm) profile widths, various system depths. Mur-rideau à bris thermique unitisé

More information

RT2N Thermostat compact

RT2N Thermostat compact aractéristiques Excellente répétabilité Réglage de l'écart pour la régulation orrection de l'écart pour le contrôle et l'alarme Résistant à la surpression accidentelle Léger pplications Équipement de sécurité

More information

Guide Du Routard France: Guide Du Routard Provence (French Edition) READ ONLINE

Guide Du Routard France: Guide Du Routard Provence (French Edition) READ ONLINE Guide Du Routard France: Guide Du Routard Provence (French Edition) READ ONLINE If you are searching for the ebook Guide Du Routard France: Guide Du Routard Provence (French Edition) in pdf form, then

More information

A Hong-Kong, Singapour Et Manille: [guide (Guides Bleus A) (French Edition) By Christine Routier-Le Diraison

A Hong-Kong, Singapour Et Manille: [guide (Guides Bleus A) (French Edition) By Christine Routier-Le Diraison A Hong-Kong, Singapour Et Manille: [guide (Guides Bleus A) (French Edition) By Christine Routier-Le Diraison If searched for a book A Hong-Kong, Singapour et Manille: [guide (Guides bleus a) (French Edition)

More information

Développement d Application & interface Web-BDD

Développement d Application & interface Web-BDD Développement d Application & interface Web-BDD - Final Internship Defense - Master2 Computer Sciences Dpt. Mathematics & Computer Sciences Univeristy of La Réunion 23 juin 2015 1 / 25 Toward the university

More information

Dangerous Goods Handling and Règlement sur la manutention et le transport

Dangerous Goods Handling and Règlement sur la manutention et le transport THE DANGEROUS GOODS HANDLING AND TRANSPORTATION ACT (C.C.S.M. c. D12) LOI SUR LA MANUTENTION ET LE TRANSPORT DES MARCHANDISES DANGEREUSES (c. D12 de la C.P.L.M.) Dangerous Goods Handling and Règlement

More information

Le Tour Du Monde En 80 Jours (French Edition) By Jules Verne

Le Tour Du Monde En 80 Jours (French Edition) By Jules Verne Le Tour Du Monde En 80 Jours (French Edition) By Jules Verne Le Tour du monde en 80 jours. Couverture En vérité, ne ferait-on pas, pour moins que cela, le tour du monde? Le texte amazon.fr Voir la by VERNE

More information

BANQUE DE DONNEES MINIERES DU GROUPE DES ETATS ACP

BANQUE DE DONNEES MINIERES DU GROUPE DES ETATS ACP BANQUE DE DONNEES MINIERES DU GROUPE DES ETATS ACP 4 de la base de données Toutes les informations sont stockées dans une base de données et peuvent être mises à jour. Le présent site Internet n est pas

More information

Rapport d'activités des CN 2006 Activity Report Form 2006

Rapport d'activités des CN 2006 Activity Report Form 2006 Rapport d'activités des CN 2006 Activity Report Form 2006 RÉSUMÉ SUMMARY Article / Question Item / Question Svp, écrivez votre texte ici Please, enter your text here 1. Information générale 1. General

More information

download le guide du routard in pdf/epub ebook Recent files: download le guide du routard file name: leguide-du-routard.rar

download le guide du routard in pdf/epub ebook Recent files: download le guide du routard file name: leguide-du-routard.rar Routard Guide Learn about working at GUIDE DU ROUTARD. Join LinkedIn today for free. See who you know at GUIDE DU ROUTARD, leverage your professional network, and get hired. download le guide du routard

More information

Bagagerie - Luggage COLLECTION FW 18-19

Bagagerie - Luggage COLLECTION FW 18-19 Bagagerie - Luggage COLLECTION FW 18-19 WE LOVE SKIMP AVANTAGES PRODUIT / PRODUCT ADVANTAGES weather resistant easy clean waterproof French design waterproof zip Résistant aux conditions extrêmes (de -20

More information

Guide Du Routard France: Guide Du Routard Provence (French Edition)

Guide Du Routard France: Guide Du Routard Provence (French Edition) Guide Du Routard France: Guide Du Routard Provence (French Edition) If looking for the book Guide Du Routard France: Guide Du Routard Provence (French Edition) in pdf form, in that case you come on to

More information

Distributed Object Storage System Ceph in Practice

Distributed Object Storage System Ceph in Practice Distributed Object Storage System Ceph in Practice Dominik Joe Pantůček dominik.pantucek@trustica.cz Trustica 8.10.2016 Dominik Joe Pantůček Trustica Practical Ceph 8.10.2016 1 / 32 Legal notice. Dominik

More information

Oise, Paris, Val D'Oise (Maps/Local (Michelin)) (English And French Edition) By Michelin

Oise, Paris, Val D'Oise (Maps/Local (Michelin)) (English And French Edition) By Michelin Oise, Paris, Val D'Oise (Maps/Local (Michelin)) (English And French Edition) By Michelin The army of the Duke of Burgundy and a force of about two hundred English soldiers occupied Paris the Val-d'Oise

More information

The Canadian Rockies (French - Les Rocheuses Canadiennes) (French Edition) READ ONLINE

The Canadian Rockies (French - Les Rocheuses Canadiennes) (French Edition) READ ONLINE The Canadian Rockies (French - Les Rocheuses Canadiennes) (French Edition) READ ONLINE If searching for the book The Canadian Rockies (French - Les Rocheuses Canadiennes) (French Edition) in pdf form,

More information

I We reserve the right to modify or attar Instructions. No modification or

I We reserve the right to modify or attar Instructions. No modification or INSTALLATION INSTRUCTION VLFS3265 Floor Stand TV Mobile Cart For TV panels: 32"-65" Maximum load capacity: 100 lbs/ 45.5 kg AV shelf max load: 10 lbs/ 4.5 kg Video tray max load: 10 lbs/ 4.5 kg VESA: 100x100-600x400mm

More information

Pays De La Loire: Ign.R07 Map By Ign

Pays De La Loire: Ign.R07 Map By Ign Pays De La Loire: Ign.R07 Map By Ign Carte r gionale 1:250 000. : R07, Pays de la Loire - R07, Pays de la Loire carte routi re : routes rdf Pays DE LA Loire 2015 IGN R07 9782758532798 2014 - Pays de la

More information

Guides Routard - Provence:

Guides Routard - Provence: Guides Routard - Provence: 2000-1 If searched for the book Guides Routard - Provence: 2000-1 in pdf format, then you've come to the right website. We presented full edition of this book in epub, DjVu,

More information

Guide Touristique Berlin

Guide Touristique Berlin Guide Touristique Berlin The history of Berlin began with its foundation in the 12th century, and later became the capital of the small country of Prussia. Prussia grew rapidly in the 18th Des informations

More information

Mystere Sur Le Vieux-Port + CD Audio MP3 (Paoli) (Lff (Lire En Francais Facile)) (French Edition)

Mystere Sur Le Vieux-Port + CD Audio MP3 (Paoli) (Lff (Lire En Francais Facile)) (French Edition) Mystere Sur Le Vieux-Port + CD Audio MP3 (Paoli) (Lff (Lire En Francais Facile)) (French Edition) Click here if your download doesn"t start automatically Mystere Sur Le Vieux-Port + CD Audio MP3 (Paoli)

More information

Session 47 Risks at work/risques au travail

Session 47 Risks at work/risques au travail Session 47 Risks at work/risques au travail 14h Introduction : Philippe Minard et Catherine Omnès Experts et expertises : Jacob Fogel, Martin Lengwiller Discussion Les organisations professionnelles :

More information

Introduction, Etat des lieux, Illustration clinique, Perspectives, Conclusion. 2 ème Colloque Francophone de Pratiques en TCC-Cynthia Acca (2018) 2

Introduction, Etat des lieux, Illustration clinique, Perspectives, Conclusion. 2 ème Colloque Francophone de Pratiques en TCC-Cynthia Acca (2018) 2 Introduction, Etat des lieux, Illustration clinique, Perspectives, Conclusion. 2 Efficacité parfois limitée troubles anxieux. des TCC pour certains Certains troubles très invalidants (en terme d intensité

More information

L'architecture De La Renaissance (French Edition) [Kindle Edition] By L

L'architecture De La Renaissance (French Edition) [Kindle Edition] By L L'architecture De La Renaissance (French Edition) [Kindle Edition] By L If searching for a book L'architecture de la Renaissance (French Edition) [Kindle Edition] by L in pdf format, then you have come

More information

Partitionnement à l'aide du gestionnaire Integrated Virtualization Manager

Partitionnement à l'aide du gestionnaire Integrated Virtualization Manager Partitionnement à l'aide du gestionnaire Integrated Virtualization Manager 86 F1 46EW 00 Integrated Virtualization Manager 86 F1 46EW 00 Table des Matières...1 Nouveautés...1 Version PDF...2 Sauvegarde

More information

Republique Dominicaine / Haiti

Republique Dominicaine / Haiti Republique Dominicaine / Haiti Reference map of Haiti - Dominican Republic border - Reference map of Haiti - Dominican Republic border. Map. from UN High Commissioner for Refugees. Published on 18 Feb

More information

Welcome to Bretagne. land of excellence

Welcome to Bretagne. land of excellence Welcome to Bretagne land of excellence Bretagne overview Bretagne today, at a glance 3,12 million in habitants 5% of the french population + 23 000 per year, + 6,6% between 2000 and 2007 A strategic location

More information

Rough Guides - Official Site - travel and music guide publishers; includes an online guide to destinations throughout the world, as well as a guide

Rough Guides - Official Site - travel and music guide publishers; includes an online guide to destinations throughout the world, as well as a guide Guide Routard Usa Rough Guides - Official Site - travel and music guide publishers; includes an online guide to destinations throughout the world, as well as a guide to various genres of music. Guide Du

More information

00 Page du titre Frontpage Contenu du dossier List of drawings. 02 Localisation du site Site location. Implantation. 04 Vue en plan Top view

00 Page du titre Frontpage Contenu du dossier List of drawings. 02 Localisation du site Site location. Implantation. 04 Vue en plan Top view 00 Page du titre Frontpage Contenu du dossier List of drawings 0 Note technique faisabilite Technical note feasability 02 Localisation du site Site location 03a Implantation Implantation 04 Vue en plan

More information

Republique Dominicaine / Haiti

Republique Dominicaine / Haiti Republique Dominicaine / Haiti If searched for a book Republique dominicaine / haiti in pdf form, in that case you come on to correct website. We presented the full release of this ebook in epub, doc,

More information

GUIDE D INSTALLATION PVC CELLULAIRE

GUIDE D INSTALLATION PVC CELLULAIRE GUIDE D INSTALLATION PVC CELLULAIRE 7 5 3 4 1 2 6 8 NOTES IMPORTANTES Travailler toujours de gauche à droite, de bas en haut. Utiliser des vis en acier inoxidable #8 x 1.5 (3,8 cm) à tous les 16 /40,64

More information

DOWNLOAD OR READ : THE LIGHT OF PARIS PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : THE LIGHT OF PARIS PDF EBOOK EPUB MOBI DOWNLOAD OR READ : THE LIGHT OF PARIS PDF EBOOK EPUB MOBI Page 1 Page 2 the light of paris the light of paris pdf the light of paris Paris (French pronunciation: ()) is the capital and most populous city

More information

Parlez-vous Français? OUI OUI

Parlez-vous Français? OUI OUI Why take French?? Parlez-vous Français? OUI OUI adieu, art déco, bon appétit, carte blanche, croissant, c'est la vie, cul-desac, déjà vu, démodé, femme fatale, film noir, idée fixe, je ne sais quoi, joie

More information

tecumseh D128C1FC71D321CE75427BFE5CFDD4C7 Tecumseh 37000

tecumseh D128C1FC71D321CE75427BFE5CFDD4C7 Tecumseh 37000 Tecumseh 37000 Thank you very much for reading. Maybe you have knowledge that, people have look numerous times for their favorite readings like this, but end up in malicious downloads. Rather than enjoying

More information

ORIGINAL : English CLEARANCE : NATO SECRET DATE VALIDATED : 14 December 2018 VALIDATED BY : C. Defrance

ORIGINAL : English CLEARANCE : NATO SECRET DATE VALIDATED : 14 December 2018 VALIDATED BY : C. Defrance ORIGINAL : English CLEARANCE : NATO SECRET DATE VALIDATED : 14 December 2018 VALIDATED BY : C. Defrance ORGANISATION : AIR AND LAND COMBAT SYSTEMS PROGRAMME OFFICE, Technical, Engineering and Project Support

More information

evisa and Electronic Travel Authority: sharing Australia s

evisa and Electronic Travel Authority: sharing Australia s evisa and Electronic Travel Authority: sharing Australia s experience and lessons learnt Department of Immigration and Citizenship (DIAC) October 2010 DIAC Who and what we are Purpose Building Australia

More information

Guide Du Routard Vietnam 2017

Guide Du Routard Vietnam 2017 Guide Du Routard Vietnam 2017 If you are searching for the ebook Guide du routard vietnam 2017 in pdf format, then you have come on to loyal website. We furnish the utter option of this book in txt, DjVu,

More information

MICHELIN Guide France (in French) (Michelin Guide/Michelin) (French Edition) By Michelin

MICHELIN Guide France (in French) (Michelin Guide/Michelin) (French Edition) By Michelin MICHELIN Guide France (in French) (Michelin Guide/Michelin) (French Edition) By Michelin France Michelin restaurants: find the best restaurants in France thanks to the Michelin Guide selection. Starred

More information

INTERNATIONAL STANDARD NORME INTERNATIONALE

INTERNATIONAL STANDARD NORME INTERNATIONALE IEC 61784-5-16 Edition 1.0 2013-09 INTERNATIONAL STANDARD NORME INTERNATIONALE colour inside Industrial communication networks Profiles Part 5-16: Installation of fieldbuses Installation profiles for CPF

More information

AeroCRS Keynote. AeroCRS Corporate Update Mr. Meir Hadassi Turner AeroCRS CEO

AeroCRS Keynote. AeroCRS Corporate Update Mr. Meir Hadassi Turner AeroCRS CEO AeroCRS Keynote AeroCRS Corporate Update Mr. Meir Hadassi Turner AeroCRS CEO Welcome 2018 customers! Global Distribution Systems integrations Type A + Type B full integration with GDS Direct connection

More information

Navitaire GoNow Day-of-departure services

Navitaire GoNow Day-of-departure services Navitaire GoNow: Day-of-Departure Made Smarter GoNow is Navitaire s advanced day-of-departure suite offering today s evolving airlines a comprehensive, scalable solution to support efficient, cost-effective

More information

Atlas Routier Et Touristique : Espagne & Portugal 2015 [ Road Atlas Spain And Portugal ] ; 1/400,000 (French Edition) By Michelin

Atlas Routier Et Touristique : Espagne & Portugal 2015 [ Road Atlas Spain And Portugal ] ; 1/400,000 (French Edition) By Michelin Atlas Routier Et Touristique : Espagne & Portugal 2015 [ Road Atlas Spain And Portugal ] ; 1/400,000 (French Edition) By Michelin If looking for the ebook by Michelin Atlas Routier et Touristique : Espagne

More information

Douala ICAO Workshop Kalibo Study Case

Douala ICAO Workshop Kalibo Study Case ICAO WACAF Workshop 1 st 4 th September 2015 Douala ICAO Workshop Kalibo Study Case September 1 st to 4 th 2015, Douala Objective Objective of the Study Case: To apply the ICAO 9906 steps and Methodology

More information

Kakinada (Cocanada) bay (Andhra Pradesh-E India)

Kakinada (Cocanada) bay (Andhra Pradesh-E India) Sea - Seek Ebook Sailing guide / Guide nautique Kakinada (Cocanada) bay (Andhra Pradesh-E India) Indian Ocean - Bay of Bengal - East Coast of India November 2018 http://www.sea-seek.com November 2018 Kakinada

More information

Sculpture In The Musee D'Orsay By Anne Pingeot READ ONLINE

Sculpture In The Musee D'Orsay By Anne Pingeot READ ONLINE Sculpture In The Musee D'Orsay By Anne Pingeot READ ONLINE If you are searching for the book Sculpture in the Musee d'orsay by Anne Pingeot in pdf form, then you've come to the loyal site. We presented

More information

Configuring a Secure Access etrust SiteMinder Server Instance (NSM Procedure)

Configuring a Secure Access etrust SiteMinder Server Instance (NSM Procedure) Configuring a Secure Access etrust SiteMinder Server Instance (NSM Procedure) Within the Secure Access device, a SiteMinder instance is a set of configuration settings that defines how the Secure Access

More information

AGENCE POUR LA SÉCURITÉ DE LA NAVIGATION AÉRIENNE EN AFRIQUE ET A MADAGASCAR

AGENCE POUR LA SÉCURITÉ DE LA NAVIGATION AÉRIENNE EN AFRIQUE ET A MADAGASCAR AGENCE POUR LA SÉCURITÉ DE LA NAVIGATION AÉRIENNE EN AFRIQUE ET A MADAGASCAR Phone : +(221) 33.869.23.32 +(221) 33.869.23.46 Fax : +(221) 33.820.06.00 AFTN : GOOOYNYX E-mail : bnidakar@asecna.org Web :

More information

more info PROMOTIONS E-SAVERS Information about E-Savers Current E-Savers Promotions Enroll in the E-Savers Program SPECIALS

more info PROMOTIONS E-SAVERS Information about E-Savers Current E-Savers Promotions Enroll in the E-Savers Program SPECIALS high priority items 1 LOOK-UP SCHEDULE/FARES The Check Flights function provides a gateway into the Travelocity booking engine. Customers supply an origin, a destination, a departure and a return time.

More information

Atlas Routier Et Touristique : Espagne & Portugal 2015 [ Road Atlas Spain And Portugal ] ; 1/400,000 (French Edition) By Michelin

Atlas Routier Et Touristique : Espagne & Portugal 2015 [ Road Atlas Spain And Portugal ] ; 1/400,000 (French Edition) By Michelin Atlas Routier Et Touristique : Espagne & Portugal 2015 [ Road Atlas Spain And Portugal ] ; 1/400,000 (French Edition) By Michelin If searched for a book by Michelin Atlas Routier et Touristique : Espagne

More information

1. Acting Deputy City Manager s report, Planning and Infrastructure, dated 23 June 2015 (ACS2015-PAI-INF-0003).

1. Acting Deputy City Manager s report, Planning and Infrastructure, dated 23 June 2015 (ACS2015-PAI-INF-0003). 6 COMITÉ DES TRANSPORTS 2. WEST TRANSITWAY EXTENSION AT GRADE CROSSING AT MOODIE DRIVE PROLONGEMENT DU TRANSITWAY OUEST PASSAGE À NIVEAU DE LA PROMENADE MOODIE COMMITTEE RECOMMENDATION That Council approve

More information

We make it fly. Digital Transformation in the Airspace industry powered by Internet of Things

We make it fly. Digital Transformation in the Airspace industry powered by Internet of Things We make it fly. Digital Transformation in the Airspace industry powered by Internet of Things Dr.-Ing. Anes Hodžić Airbus Digital Transformation Office Vice President, Digital Transformation and IoT Berlin,

More information

A SEGMENTED ARCHITECTURE APPROACH TO PROVIDE A CONTINUOUS, LONG-TERM, ADAPTIVE AND COST- EFFECTIVE GLACIERS MONITORING SYSTEM

A SEGMENTED ARCHITECTURE APPROACH TO PROVIDE A CONTINUOUS, LONG-TERM, ADAPTIVE AND COST- EFFECTIVE GLACIERS MONITORING SYSTEM 1st IAA Latin American Symposium on Small Satellites: Advanced Technologies and Distributed Systems A SEGMENTED ARCHITECTURE APPROACH TO PROVIDE A CONTINUOUS, LONG-TERM, ADAPTIVE AND COST- EFFECTIVE GLACIERS

More information

VISALE PROCEDURE. How to apply for a visa with "visale.fr"? Mars 2019

VISALE PROCEDURE. How to apply for a visa with visale.fr? Mars 2019 VISALE PROCEDURE How to apply for a visa with "visale.fr"? Mars 2019 INFOS: o VISALE is free. o You must subscribe to VISALE if you are between 18 and 30 years old. o VISALE is open to foreign students

More information

01 Amadeus at a glance

01 Amadeus at a glance 01 Amadeus at a glance 7 Amadeus Annual Report 2011 1.1 Company s origins and development Most people associate the birth of electronic commerce distribution with the arrival of the internet. In fact,

More information

FSTD operator: Visual aid: YES NO Total training time at the controls: Instrument approaches at aerodromes: To a decision altitude/height of:

FSTD operator: Visual aid: YES NO Total training time at the controls: Instrument approaches at aerodromes: To a decision altitude/height of: TRAINING, SKILL TEST AND PROFICIENCY CHECK FOR ATPL, TYPE AND CLASS RATINGS, AND PROFICIENCY CHECK FOR INSTRUMENT RATINGS Application and report form ATPL, type rating, training, skill test and proficiency

More information

A structuring public transport project for Cape Town Inner City

A structuring public transport project for Cape Town Inner City A structuring public transport project for Cape Town Inner City Dave EADIE Transport, Roads & Storm Water Directorate / City of Cape Town South Africa Pierre LABORDE Thales Engineering & Consulting France

More information

Musique Cordiale, Association Fr

Musique Cordiale, Association Fr Musique Cordiale, Association Fr Aperçu du budget prévisionnel / Compte de Résultat Exercice 2016, 2017 : Revenues/Dépenses Financial years 2016, 2017 : Profit & Loss accounts Cf. Budgets 2016,2017,2018

More information

INTERNATIONAL STANDARD NORME INTERNATIONALE

INTERNATIONAL STANDARD NORME INTERNATIONALE IEC 62264-2 Edition 2.0 2013-06 INTERNATIONAL STANDARD NORME INTERNATIONALE colour inside Enterprise-control system integration Part 2: Objects and attributes for enterprise-control system integration

More information

17/04/ :36 1/15 VLC media player

17/04/ :36 1/15 VLC media player 17/04/2018 17:36 1/15 VLC media player VLC media player Objet : Installation et utilisation de VLC. Niveau requis : débutant, avisé Commentaires : lecteur multimédia open-source extrêmement polyvalent

More information

Jacques Nicolas Bellin Researched by Diane Wolford Sheppard, FCHSM Member

Jacques Nicolas Bellin Researched by Diane Wolford Sheppard, FCHSM Member Jacques Nicolas Bellin Researched by Diane Wolford Sheppard, FCHSM Member Jacques Nicolas Bellin was a hydrographer and engineer who began working in the newly formed Dépôt des cartes et plans de la Marine

More information

TECHNICAL REPORT RAPPORT TECHNIQUE

TECHNICAL REPORT RAPPORT TECHNIQUE TECHNICAL REPORT RAPPORT TECHNIQUE IEC/TR 61508-0 Edition 1.0 2005-01 Functional safety of electrical/electronic/programmable electronic safety-related systems Part 0: Functional safety and IEC 61508 Sécurité

More information

lastminute.com Group Milan November 2018

lastminute.com Group Milan November 2018 lastminute.com Group Milan November 2018 lastminute.com Group Overview A journey of growth and diversification addressed to long-term value maximisation 4 We have a global footprint Context lmn group

More information

AGENCE POUR LA SÉCURITÉ DE LA NAVIGATION AÉRIENNE EN AFRIQUE ET A MADAGASCAR

AGENCE POUR LA SÉCURITÉ DE LA NAVIGATION AÉRIENNE EN AFRIQUE ET A MADAGASCAR AGENCE POUR LA SÉCURITÉ DE LA NAVIGATION AÉRIENNE EN AFRIQUE ET A MADAGASCAR Phone : +(221) 33.869.23.32 +(221) 33.869.23.46 Fax : +(221) 33.820.06.00 AFTN : GOOOYNYX E-mail : bnidakar@asecna.org Web :

More information

NOR : DEVA A. (Note : This decree replaces the decree of 21 March 2007 dealing with the same matter)

NOR : DEVA A. (Note : This decree replaces the decree of 21 March 2007 dealing with the same matter) Informal Translation of French decree titled: Arrêté du 11 avril 2012 relatif à la conception des aéronefs civils qui circulent sans aucune personne à bord, aux conditions de leur emploi et sur les capacités

More information

Michelin Green Sightseeing Travel Guide Alpes Du Sud, Haute Provence (France) French Language Edition (French Edition)

Michelin Green Sightseeing Travel Guide Alpes Du Sud, Haute Provence (France) French Language Edition (French Edition) Michelin Green Sightseeing Travel Guide Alpes Du Sud, Haute Provence (France) French Language Edition (French Edition) If you are looking for the book Michelin Green Sightseeing Travel Guide Alpes du Sud,

More information

INTERNATIONAL STANDARD NORME INTERNATIONALE

INTERNATIONAL STANDARD NORME INTERNATIONALE IEC 61314-1-1 Edition 3.0 2011-11 INTERNATIONAL STANDARD NORME INTERNATIONALE Fibre optic interconnecting devices and passive components Fibre optic fan-outs Part 1-1: Blank detail specification Dispositifs

More information

TECHNICAL SPECIFICATION SPÉCIFICATION TECHNIQUE

TECHNICAL SPECIFICATION SPÉCIFICATION TECHNIQUE IEC/TS 62282-1 Edition 2.0 2010-04 TECHNICAL SPECIFICATION SPÉCIFICATION TECHNIQUE Fuel cell technologies Part 1: Terminology Technologies des piles à combustible Partie 1: Terminologie INTERNATIONAL ELECTROTECHNICAL

More information

Rapport d'activités des CN 2007 Activity Report Form 2007

Rapport d'activités des CN 2007 Activity Report Form 2007 Rapport d'activités des CN 2007 Activity Report Form 2007 RÉSUMÉ SUMMARY Article / Question Item / Question Svp, écrivez votre texte ici Please, enter your text here 1. Information générale 1. General

More information

Looking for aluminium cut-to-length products?

Looking for aluminium cut-to-length products? Looking for aluminium cut-to-length products? Welcome Alcobra has the cut to length products and service you are looking for. Welcome to Alcobra! We will support you with a full service and logistic for

More information

Market Insights & Salary Guide 2018 Data & Analytics

Market Insights & Salary Guide 2018 Data & Analytics MARKET INSIGHTS / ARCHITECTURE JOB SEEKER MARKET REPORT 2018 AUSTRALIAN TECHNOLOGY RECRUITMENT AUSTRALIAN MARKET TECHNOLOGY INSIGHTS RECRUITMENT & SALARY GUIDE MARKET - 2018 INSIGHTS & SALARY GUIDE - 2018

More information

71248

71248 71248 1 2x 2 2x 3 1x 1x 1x 1x 1 2 4 2x 5 1x 6 2x 2x 2x 1 2 2x 7 8 1x 1x 1 2 9 1x 1x 1 2 10 1x 1x 11 1x 1x 12 1x 13 2x 1x 1x 1x 1x 14 1 2 3 LEGO DIMENSIONS Videogame software 2016 TT Games Ltd. Produced

More information

71248

71248 71248 1 1x 2 2x 3 1x 4 1x 1x 5 2x 6 1x 7 1x 1x 8 2x 9 2x 10 1x 1x 11 2x 12 2x 13 2x 14 1x 15 2x 2x 1 2 2x 4x 4x 16 4x 17 1x 1x LEGO DIMENSIONS Videogame software 2016 TT Games Ltd. Produced by TT

More information

TM 71251

TM 71251 TM 71251 1 2 3 2x 4 2x 5 2x 2x 2x 6 7 2x 1 2 8 2x 9 2x 10 1 2 3 4 2x 4x 11 1 2 12 2x 2x 2x 2x 2x 13 14 2x 2x 15 16 17 2x 18 1 2 19 1 2 20 21 4x 4x 22 4x 23 24 25 LEGO DIMENSIONS Videogame software

More information

Vacuum Controls and Interlocks

Vacuum Controls and Interlocks Vacuum Controls and Interlocks CERN Accelerator School Platja D Aro, 16-24 May 2006 P. Strubin (CERN) Outline Introduction Architecture 3 tiers architecture Example of the LHC vacuum system Mapping the

More information

Fall 2015 Brand & Advertising Tracking Study Report Ontario Market

Fall 2015 Brand & Advertising Tracking Study Report Ontario Market 1 Fall 20 Brand & Advertising Tracking Study Report Ontario Market STUDY BACKGROUND & METHODOLOGY Methodology & Sample Profile Methodology: Online survey Eligibility: Residents of Ontario Overnight Pleasure

More information

DECOUVERTE DE CORINTHIENS (French: Discovering Corinthians) (French Edition) By Gene Sanford

DECOUVERTE DE CORINTHIENS (French: Discovering Corinthians) (French Edition) By Gene Sanford DECOUVERTE DE CORINTHIENS (French: Discovering Corinthians) (French Edition) By Gene Sanford Is "discovery of nature" a good translation for "d couverte de la nature" in a text I'd say "discovering "The

More information

PUBLIC TRANSPORTATION INTRODUCTION

PUBLIC TRANSPORTATION INTRODUCTION PUBLIC TRANSPORTATION INTRODUCTION 1 OUTLINE Current Status and Recent Trends Significant Influences A Critical Assessment Arguments Supporting Public Transport Future Influences Ingredients for Future

More information

Les langages de modélisation en ingénierie système Etat de la pratique et persepectives

Les langages de modélisation en ingénierie système Etat de la pratique et persepectives www.thalesgroup.com Les langages de modélisation en ingénierie système Etat de la pratique et persepectives Jérôme Le Noir (Thales Research &Technology) Journées Neptune, 22 Mai 2013 Research & Technology

More information

La Princesse De Cleves By Lafayette, Madame De,

La Princesse De Cleves By Lafayette, Madame De, La Princesse De Cleves By Lafayette, Madame De, Décryptez La Princesse de Clèves de Madame de La Fayette avec l'analyse du PetitLitteraire.fr! Que faut-il retenir de La Princesse de Clèves, l'oeuvre La

More information

Benin Tourist visa Application for citizens of Bangladesh living in Alberta

Benin Tourist visa Application for citizens of Bangladesh living in Alberta VisaHQca Inc Benin Tourist visa pplication for citizens of Bangladesh living in lberta Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned in

More information

Call to Book:

Call to Book: Call to Book: 1-844-862-8466 The Birthday Vacation Sale - now extended! There s still a little time to get Birthday Sale savings on the sunny escape you ve been craving. Choose from 45 amazing vacation

More information

LES PORTES DE LA PERCEPTION (FRENCH EDITION) BY ALDOUS HUXLEY

LES PORTES DE LA PERCEPTION (FRENCH EDITION) BY ALDOUS HUXLEY LES PORTES DE LA PERCEPTION (FRENCH EDITION) BY ALDOUS HUXLEY DOWNLOAD EBOOK : LES PORTES DE LA PERCEPTION (FRENCH EDITION) BY Click link bellow and free register to download ebook: LES PORTES DE LA PERCEPTION

More information

1. CANADA DAY 2012 PARKING LOT PARTIES IN THE BYWARD MARKET FÊTE DU CANADA 2012 CÉLÉBRATIONS TENUES DANS LE PARC DE STATIONNEMENT DU MARCHÉ BY

1. CANADA DAY 2012 PARKING LOT PARTIES IN THE BYWARD MARKET FÊTE DU CANADA 2012 CÉLÉBRATIONS TENUES DANS LE PARC DE STATIONNEMENT DU MARCHÉ BY 1 COMITÉ DES TRANSPORTS 1. CANADA DAY 2012 PARKING LOT PARTIES IN THE BYWARD MARKET FÊTE DU CANADA 2012 CÉLÉBRATIONS TENUES DANS LE PARC DE STATIONNEMENT DU MARCHÉ BY COMMITTEE RECOMMENDATIONS That Council

More information

Large Scale Irrigation Modernization Project Procurement Plan

Large Scale Irrigation Modernization Project Procurement Plan I. General Large Scale Irrigation Modernization Project Plan 1. Bank s approval Date of the procurement Plan [Original: 5 may 2015]: Revision 2 of Updated Plan, March 28, 2017 2. Date of General Notice:

More information

STANDING COMMITTEE ON THE FOOD CHAIN AND ANIMAL HEALTH Section Animal Health and Welfare

STANDING COMMITTEE ON THE FOOD CHAIN AND ANIMAL HEALTH Section Animal Health and Welfare STANDING COMMITTEE ON THE FOOD CHAIN AND ANIMAL HEALTH Section Animal Health and Welfare COMITÉ PERMANENT DE LA CHAÎNE ALIMENTAIRE ET DE LA SANTÉ ANIMALE Section Santé Animale et Bien-être des animaux

More information