SlideShare une entreprise Scribd logo
1  sur  80
Télécharger pour lire hors ligne
Agenda & Intervenants
Introduction
Alter Way in 2 slides
Alter Way in 2 slides
Elasticsearch in 1 slide 
• More than 11 million downloads 
• 650,000 New Downloads per Month 
• 1000s of Mission Critical Implementations 
• Top Investors: Benchmark Capital, Index 
Ventures 
• Seasoned Executive Team 
– Founded by Creator of Elasticsearch 
– Seasoned Executives from SpringSource
Les enjeux de la recherche à 
l’ère du BigData
Big Data in Todayʼs Business and Technology 
Environment : some significant figures 
• 2.7 Zetabytes of data exist in the digital universe today. (=1 billion Terabytes) 
• 235 Terabytes of data has been collected by the U.S. Library of Congress in 
April 2011. 
• Facebook stores, accesses, and analyzes 30+ Petabytes of user generated 
data. 
• Akamai analyzes 75 million events per day to better target advertisements. 
• Walmart handles more than 1 million customer transactions every hour, 
which is imported into databases estimated to contain more than 2.5 petabytes 
of data. 
• The largest AT&T database boasts titles including the largest volume of data in 
one unique database (312 terabytes) and the second largest number of rows in 
a unique database (1.9 trillion), which comprises AT&Tʼ’s extensive calling 
records. 
• Hadoop : 
– 94% of Hadoop users perform analytics on large volumes of data not 
possible before 
– 88% analyze data in greater detail; 
– while 82% can now retain more of their data.
The Rapid Growth of Unstructured Data 
• YouTube users upload 48 hours of new video every minute of the 
day. 
• 500+ new websites are created every minute of the day. 
• Brands and organizations on Facebook receive 34,722 Likes every 
minute of the day. 
• 100 terabytes of data uploaded daily to Facebook. 
• According to Twitterʼ’s own research in early 2012, it sees roughly 
175 million tweets every day, and has more than 465 million 
accounts. 
• 30 Billion pieces of content shared on Facebook every month. 
Data production will be 44 times greater in 2020 than it was in 2009.
Big Data & Real Business Issues 
• 25+ % of decision‐makers surveyed predict that data volumes in their 
companies will rise by more than 60% by the end of 2014, with the 
average of all respondents anticipating a growth of no less than 42 %. 
• 40% projected growth in global data generated per year vs. 5% growth in 
global IT spending. 
• According to estimates, the volume of business data worldwide, across all 
companies, doubles every 1.2 years. 
– Poor data can cost businesses 20%–35% of their operating revenue. 
– Bad data or poor data quality costs US businesses $600 billion annually. 
• 75+ % of decision-makers surveyed anticipate significant impacts in the 
domain of storage systems as a result of the “Big Data” phenomenon. 
• We anticipate a new challenge : to be able to Search and Analyse all 
those datas … in real time !
Elasticsearch 
A solution already in production 
with significant french 
implementations 
Revolutionizing Data Search and 
Analytics 
Richard Maurer– SEMEA Territory Manager
Purpose of Elasticsearch 
• Organize data and make it easily accessible 
– Through powerful search and analytics 
– Easily consumable (even for non-data scientists) 
– Elegantly handles extremely large data volumes 
– Delivers results in real time 
• Technology stack agnostic 
• Used across all market verticals
Features of Elasticsearch 
• Structured & unstructured search 
• Advanced analytics capabilities 
• Unmatched performance 
• Real-time results 
• Highly scalable 
• User friendly installation and maintenance
Elasticsearch 1.4: a solution 
production ready 
• Real time data Indexation 
• Distributed 
• High Availability 
• Schema Free 
• Real Time Data Analytics 
• Multi Tenancy 
• Much more….
Unprecedented Uptake 
Elasticsearch has more than11 Million downloads 
… and 650,000 more each month 
Cumulative
French Users
French Use Cases 
Bouygues Telecom: 
Uses Elasticsearch in their Big Data Platform. Cut their web resolution time by 10X 
Daily Motion: 
Indexing their 20 million Videos on Elasticsearch. On production for over 2 years 
Voyages SNCF 
They have recently announced ES has being live on their “Usine Logicielle” 
Fotolia: 
Search Engine made on Elasticsearch, to access 24 Million Images, move over to ES 
Orange: 
With over 1.2 billion docs, looking at better solution and cost reduction
Product Offerings: 
Support Throughout Your Project 
1. Core Elasticsearch Training (2 days) 
2. ELK Workshop (1 day) 
3. Development and Production Support 
4. Marvel, Monitoring of your ES clusters
2: Support
Resources 
• www.elasticsearch.com 
• www.elasticsearch.org 
• User Groups: 
http://www.elasticsearch.org/community/forum/ 
• Contact: 
Richard Maurer 
Territory Manager 
Richard.maurer@elasticsearch.com
MAKE SENSE OF YOUR (BIG) DATA! 
David Pilato 
Technical advocate! 
! 
elasticsearch. 
@dadoonet
StartUp 
data ?
StartUp
StartUp
StartUp
StartUp
StartUp
StartUp 
BIG data ?
StartUp 
BIG data ?
35.000.000.000.000.000 mb 
Source: http://www.csc.com/insights/flxwd/78931-big_data_just_beginning_to_explode 
StartUp
StartUp 
Source: http://www.domo.com/learn/data-never-sleeps-2
StartUp 
search = like % ? 
SELECT ! 
doc.*, country.* ! 
FROM ! 
doc, country! 
WHERE ! 
doc.country_code = country.code AND! 
doc.date_doc > to_date('2011-12', 'yyyy-mm') AND ! 
doc.date_doc < to_date('2012-01', 'yyyy-mm') AND ! 
lower(country.name) = 'france' AND ! 
lower(doc.comment) LIKE ‘%product%' AND 
lower(doc.comment) LIKE ‘%david%';
StartUp 
Search engine ?
elasticsearch ? 
StartUp 
plug & play 
REST/JSON 
scalable 
Apache 2 license 
Lucene 
elasticsearch
Start… 
$ wget https://download.elasticsearch.org/elasticsearch/ 
elasticsearch/elasticsearch-1.1.1.tar.gz! 
$ tar -xf elasticsearch-1.1.1.tar.gz! 
$ ./elasticsearch-1.1.1/bin/elasticsearch! 
[INFO ][node ][Ghost Maker] {1.1.1}[5645]: initializing
… and play! 
$ curl -XPUT localhost:9200/sessions/session/1 -d '{! 
"title" : "Elasticsearch",! 
"subtitle" : "Make sense of your (BIG) data !",! 
"date" : "2014-05-20T10:30:00",! 
"tags" : [ "elasticsearch", "alterway", "bigdata" ],! 
"speakers" : [{! 
"first_name" : "David", ! 
"last_name" : "Pilato" ! 
}]! 
}'
Search! 
$ curl http://localhost:9200/sessions/session/_search -d' 
{ 
"query": { 
"multi_match": { 
"query": "elasticsearch alterway david", 
"fields": [ "title^3", "tags^2", "speakers.first_name" ] 
} 
}, 
"post_filter": { 
"range": { 
"date": { 
"from": "2014-05-01", 
"to": "2014-06" 
} 
} 
} 
}'
StartUp 
Compute?
Compute! 
$ curl http://localhost:9200/sessions/session/_search -d' 
{ 
"query": { ... }, 
"aggs": { 
"by_date": { 
"date_histogram": { 
"field": "date", 
"interval": "day", 
"format" : "dd/MM/yyyy" 
} 
} 
} 
}' 
"by_date": [ 
{ "key_as_string": "03/04/2014", "doc_count": 1 }, 
{ "key_as_string": "12/04/2014", "doc_count": 2 }, 
{ "key_as_string": "16/04/2014", "doc_count": 3 } 
]
Let’s make sense of … 
• logs! 
• twitter! 
• github! 
• marketing data! 
• ...! 
• your data! 
• your big data 
#mstechdays #elasticsearch StartUp
Let’s make sense of … 
• logs! 
• twitter! 
• github! 
• marketing data! 
• ...! 
• your data! 
• your big data 
{ 
"name":"Pilato David", 
"dateOfBirth":"1971-12-26", 
"gender":"male", 
"children":3, 
"marketing":{ 
"fashion":334, 
"music":3363, 
"hifi":2351 
}, 
"address":{ 
"country":"France", 
"city":"Paris", 
"location": [2.332395, 48.861871] 
} 
} 
#mstechdays #elasticsearch StartUp
démo 
MAKE SENSE OF YOUR (BIG) DATA! 
let’s inject some marketing documents… 
#mstechdays #elasticsearch StartUp
elasticsearch. 
elasticsearch 
kibana 
logstash 
Marvel
thanks 
@dadoonet
Comment insérer ElasticSearch 
dans votre Système d’Information 
et en tirer le meilleur parti
ElasticSearch to do What ?
STORE
SEARCH
ANALYZE
Are you ready to use 
ElasticSearch in your IT?
What you need to run it 
• Java 8 update 20 or later, or Java 7 update 55 or 
later 
• Only Oracle’s Java and the OpenJDK are 
supported.
Github projects 
• Many projects 
• Big activity 
• Many languages 
6 mois !
Clients
Scripting Plugins Language
Why it ‘s easy
• One to many 
• ~ Zero conf 
• Cloud oriented 
• Scalability DNA 
• Replication 
• Sharding 
• Distributed 
• Resilience 
• Snapshot 
• Restore 
Start Small Grow Big
• One to many 
• ~ Zero conf 
• Cloud oriented 
• Scalability DNA 
• Replication 
• Sharding 
• Distributed 
• Resilience 
• Snapshot 
• Restore 
Start Small Grow Big
Where / How can you use 
ElasticSearch?
Centralized Log Storage 1/2 
VIA
Centralized Log Storage 2/2
… 
CMS Search Engine
Ecommerce Enhanced Search 
Engine 
• Faceting 
• Fuzzy Search 
• Speed 
• Auto Completion 
• Geo Search 
• Log Analysis
Combining Hadoop & ElasticSearch 
• REST based 
• Memory and I/O efficient 
• Adaptive I/O 
• Map/Reduce API support 
• Pig support 
• Hive support 
 elasticsearch-hadoop
What Else ?
It’s up to you to decide what to build with ES
Analysis / Dasboards 
Some Examples
Kibana examples : IRC Activity
Kibana examples : Pfsense Monitoring
Kibana examples : Windows Events
Kibana examples : Inventory
Kibana examples : Syslog
Kibana examples : Web Activity
ES = No Limits
Conclusion
Conclusion 
• Il est temps de révolutionner la façon dont vous valorisez 
vos données : offrez Elasticsearch à vos applicatifs ! 
• La stack ELK (Elasticsearch, Logstash, Kibana) est déjà 
massivement utilisée en production ! 
• Faites vous accompagner pour bénéficier des bonnes 
pratiques et du support à tous les stades de votre projet : 
conception, développement, production
Questions / Réponses

Contenu connexe

Tendances

Democratizing Data at Airbnb
Democratizing Data at AirbnbDemocratizing Data at Airbnb
Democratizing Data at AirbnbNeo4j
 
Guest Lecture: Introduction to Big Data at Indian Institute of Technology
Guest Lecture: Introduction to Big Data at Indian Institute of TechnologyGuest Lecture: Introduction to Big Data at Indian Institute of Technology
Guest Lecture: Introduction to Big Data at Indian Institute of TechnologyNishant Gandhi
 
Advanced Analytics for Any Data at Real-Time Speed
Advanced Analytics for Any Data at Real-Time SpeedAdvanced Analytics for Any Data at Real-Time Speed
Advanced Analytics for Any Data at Real-Time Speeddanpotterdwch
 
Advanced data science algorithms applied to scalable stream processing by Dav...
Advanced data science algorithms applied to scalable stream processing by Dav...Advanced data science algorithms applied to scalable stream processing by Dav...
Advanced data science algorithms applied to scalable stream processing by Dav...Big Data Spain
 
Dataiku Flow and dctc - Berlin Buzzwords
Dataiku Flow and dctc - Berlin BuzzwordsDataiku Flow and dctc - Berlin Buzzwords
Dataiku Flow and dctc - Berlin BuzzwordsDataiku
 
Transform from database professional to a Big Data architect
Transform from database professional to a Big Data architectTransform from database professional to a Big Data architect
Transform from database professional to a Big Data architectSaurabh K. Gupta
 
Data Mesh in Practice: How Europe’s Leading Online Platform for Fashion Goes ...
Data Mesh in Practice: How Europe’s Leading Online Platform for Fashion Goes ...Data Mesh in Practice: How Europe’s Leading Online Platform for Fashion Goes ...
Data Mesh in Practice: How Europe’s Leading Online Platform for Fashion Goes ...Databricks
 
Relational to Big Graph
Relational to Big GraphRelational to Big Graph
Relational to Big GraphNeo4j
 
Self Service Analytics at Twitch
Self Service Analytics at TwitchSelf Service Analytics at Twitch
Self Service Analytics at TwitchImply
 
The Evolution of Big Data Frameworks
The Evolution of Big Data FrameworksThe Evolution of Big Data Frameworks
The Evolution of Big Data FrameworkseXascale Infolab
 
Moving Past Infrastructure Limitations
Moving Past Infrastructure LimitationsMoving Past Infrastructure Limitations
Moving Past Infrastructure LimitationsCaserta
 
Introduction to Big Data
Introduction to Big DataIntroduction to Big Data
Introduction to Big DataJoey Li
 
Big Data Analytics with Hadoop, MongoDB and SQL Server
Big Data Analytics with Hadoop, MongoDB and SQL ServerBig Data Analytics with Hadoop, MongoDB and SQL Server
Big Data Analytics with Hadoop, MongoDB and SQL ServerMark Kromer
 
Rob peglar introduction_analytics _big data_hadoop
Rob peglar introduction_analytics _big data_hadoopRob peglar introduction_analytics _big data_hadoop
Rob peglar introduction_analytics _big data_hadoopGhassan Al-Yafie
 
Using The Internet of Things for Population Health Management - StampedeCon 2016
Using The Internet of Things for Population Health Management - StampedeCon 2016Using The Internet of Things for Population Health Management - StampedeCon 2016
Using The Internet of Things for Population Health Management - StampedeCon 2016StampedeCon
 
Big Data: An Overview
Big Data: An OverviewBig Data: An Overview
Big Data: An OverviewC. Scyphers
 

Tendances (20)

Big data 101
Big data 101Big data 101
Big data 101
 
Democratizing Data at Airbnb
Democratizing Data at AirbnbDemocratizing Data at Airbnb
Democratizing Data at Airbnb
 
Big Data
Big DataBig Data
Big Data
 
Guest Lecture: Introduction to Big Data at Indian Institute of Technology
Guest Lecture: Introduction to Big Data at Indian Institute of TechnologyGuest Lecture: Introduction to Big Data at Indian Institute of Technology
Guest Lecture: Introduction to Big Data at Indian Institute of Technology
 
Advanced Analytics for Any Data at Real-Time Speed
Advanced Analytics for Any Data at Real-Time SpeedAdvanced Analytics for Any Data at Real-Time Speed
Advanced Analytics for Any Data at Real-Time Speed
 
Advanced data science algorithms applied to scalable stream processing by Dav...
Advanced data science algorithms applied to scalable stream processing by Dav...Advanced data science algorithms applied to scalable stream processing by Dav...
Advanced data science algorithms applied to scalable stream processing by Dav...
 
Dataiku Flow and dctc - Berlin Buzzwords
Dataiku Flow and dctc - Berlin BuzzwordsDataiku Flow and dctc - Berlin Buzzwords
Dataiku Flow and dctc - Berlin Buzzwords
 
Transform from database professional to a Big Data architect
Transform from database professional to a Big Data architectTransform from database professional to a Big Data architect
Transform from database professional to a Big Data architect
 
Data Mesh in Practice: How Europe’s Leading Online Platform for Fashion Goes ...
Data Mesh in Practice: How Europe’s Leading Online Platform for Fashion Goes ...Data Mesh in Practice: How Europe’s Leading Online Platform for Fashion Goes ...
Data Mesh in Practice: How Europe’s Leading Online Platform for Fashion Goes ...
 
Machine Data Analytics
Machine Data AnalyticsMachine Data Analytics
Machine Data Analytics
 
Relational to Big Graph
Relational to Big GraphRelational to Big Graph
Relational to Big Graph
 
Self Service Analytics at Twitch
Self Service Analytics at TwitchSelf Service Analytics at Twitch
Self Service Analytics at Twitch
 
The Evolution of Big Data Frameworks
The Evolution of Big Data FrameworksThe Evolution of Big Data Frameworks
The Evolution of Big Data Frameworks
 
Moving Past Infrastructure Limitations
Moving Past Infrastructure LimitationsMoving Past Infrastructure Limitations
Moving Past Infrastructure Limitations
 
Introduction to Big Data
Introduction to Big DataIntroduction to Big Data
Introduction to Big Data
 
Big Data Analytics with Hadoop, MongoDB and SQL Server
Big Data Analytics with Hadoop, MongoDB and SQL ServerBig Data Analytics with Hadoop, MongoDB and SQL Server
Big Data Analytics with Hadoop, MongoDB and SQL Server
 
Rob peglar introduction_analytics _big data_hadoop
Rob peglar introduction_analytics _big data_hadoopRob peglar introduction_analytics _big data_hadoop
Rob peglar introduction_analytics _big data_hadoop
 
Using The Internet of Things for Population Health Management - StampedeCon 2016
Using The Internet of Things for Population Health Management - StampedeCon 2016Using The Internet of Things for Population Health Management - StampedeCon 2016
Using The Internet of Things for Population Health Management - StampedeCon 2016
 
Big Data: An Overview
Big Data: An OverviewBig Data: An Overview
Big Data: An Overview
 
Introduction to Data Engineering
Introduction to Data EngineeringIntroduction to Data Engineering
Introduction to Data Engineering
 

En vedette

EGP Burkenroad Report
EGP Burkenroad ReportEGP Burkenroad Report
EGP Burkenroad ReportEvan Kopf
 
Creating Elasticsearch Snapshots
Creating Elasticsearch SnapshotsCreating Elasticsearch Snapshots
Creating Elasticsearch SnapshotsVic Hargrave
 
Programa Febrero Año Hernandiano
Programa Febrero Año HernandianoPrograma Febrero Año Hernandiano
Programa Febrero Año HernandianoOrihuela 2010
 
In Vi T Ro Induct Ion Of F Rui T Ing Body In Ant Rodia
In Vi T Ro Induct Ion Of F Rui T Ing Body In Ant RodiaIn Vi T Ro Induct Ion Of F Rui T Ing Body In Ant Rodia
In Vi T Ro Induct Ion Of F Rui T Ing Body In Ant RodiaAffiliate marketing
 
08 adesivos, corte e correção
08   adesivos, corte e correção08   adesivos, corte e correção
08 adesivos, corte e correçãoAlexandre Ribeiro
 
Manual cazador completo
Manual cazador completoManual cazador completo
Manual cazador completoAntonio Vieira
 
Aviation Resume
Aviation ResumeAviation Resume
Aviation ResumeAadil (us)
 
National assembly decisions
National assembly decisionsNational assembly decisions
National assembly decisionslherzl
 
Actividad ordenador 5
Actividad ordenador 5Actividad ordenador 5
Actividad ordenador 5Pedro Jurado
 
Dessins de PLANTU
Dessins de PLANTUDessins de PLANTU
Dessins de PLANTUBalcon60
 
Pozitron Insights: Türkiye'nin Dijital Cüzdan Haritası
Pozitron Insights: Türkiye'nin Dijital Cüzdan HaritasıPozitron Insights: Türkiye'nin Dijital Cüzdan Haritası
Pozitron Insights: Türkiye'nin Dijital Cüzdan HaritasıMonitise MEA
 
Presentación digan 2014 (diseño integral-gráfico en el Punto de Venta)
Presentación digan 2014 (diseño integral-gráfico en el Punto de Venta)Presentación digan 2014 (diseño integral-gráfico en el Punto de Venta)
Presentación digan 2014 (diseño integral-gráfico en el Punto de Venta)Andy Jumbo
 
The Cognitive Science of dreaming
The Cognitive Science of dreamingThe Cognitive Science of dreaming
The Cognitive Science of dreamingJim Davies
 
Tutorial de Simulink
Tutorial de SimulinkTutorial de Simulink
Tutorial de Simulinkeducadorrr
 
Teleprospecting the Inbound Way: How to Increase Connect Rates and Close More...
Teleprospecting the Inbound Way: How to Increase Connect Rates and Close More...Teleprospecting the Inbound Way: How to Increase Connect Rates and Close More...
Teleprospecting the Inbound Way: How to Increase Connect Rates and Close More...HubSpot
 

En vedette (20)

EGP Burkenroad Report
EGP Burkenroad ReportEGP Burkenroad Report
EGP Burkenroad Report
 
Creating Elasticsearch Snapshots
Creating Elasticsearch SnapshotsCreating Elasticsearch Snapshots
Creating Elasticsearch Snapshots
 
Programa Febrero Año Hernandiano
Programa Febrero Año HernandianoPrograma Febrero Año Hernandiano
Programa Febrero Año Hernandiano
 
In Vi T Ro Induct Ion Of F Rui T Ing Body In Ant Rodia
In Vi T Ro Induct Ion Of F Rui T Ing Body In Ant RodiaIn Vi T Ro Induct Ion Of F Rui T Ing Body In Ant Rodia
In Vi T Ro Induct Ion Of F Rui T Ing Body In Ant Rodia
 
08 adesivos, corte e correção
08   adesivos, corte e correção08   adesivos, corte e correção
08 adesivos, corte e correção
 
Boleros 2016
Boleros 2016Boleros 2016
Boleros 2016
 
Mercadocarbonomagaly
MercadocarbonomagalyMercadocarbonomagaly
Mercadocarbonomagaly
 
Manual cazador completo
Manual cazador completoManual cazador completo
Manual cazador completo
 
Aviation Resume
Aviation ResumeAviation Resume
Aviation Resume
 
National assembly decisions
National assembly decisionsNational assembly decisions
National assembly decisions
 
Oct01 agenda
Oct01 agendaOct01 agenda
Oct01 agenda
 
PUNTA COLONET Y LOS INTERESES GEOPORTUARIOS
PUNTA COLONET Y LOS INTERESES GEOPORTUARIOSPUNTA COLONET Y LOS INTERESES GEOPORTUARIOS
PUNTA COLONET Y LOS INTERESES GEOPORTUARIOS
 
Actividad ordenador 5
Actividad ordenador 5Actividad ordenador 5
Actividad ordenador 5
 
Dessins de PLANTU
Dessins de PLANTUDessins de PLANTU
Dessins de PLANTU
 
Pozitron Insights: Türkiye'nin Dijital Cüzdan Haritası
Pozitron Insights: Türkiye'nin Dijital Cüzdan HaritasıPozitron Insights: Türkiye'nin Dijital Cüzdan Haritası
Pozitron Insights: Türkiye'nin Dijital Cüzdan Haritası
 
Presentación digan 2014 (diseño integral-gráfico en el Punto de Venta)
Presentación digan 2014 (diseño integral-gráfico en el Punto de Venta)Presentación digan 2014 (diseño integral-gráfico en el Punto de Venta)
Presentación digan 2014 (diseño integral-gráfico en el Punto de Venta)
 
Eval riesgotoxicol
Eval riesgotoxicolEval riesgotoxicol
Eval riesgotoxicol
 
The Cognitive Science of dreaming
The Cognitive Science of dreamingThe Cognitive Science of dreaming
The Cognitive Science of dreaming
 
Tutorial de Simulink
Tutorial de SimulinkTutorial de Simulink
Tutorial de Simulink
 
Teleprospecting the Inbound Way: How to Increase Connect Rates and Close More...
Teleprospecting the Inbound Way: How to Increase Connect Rates and Close More...Teleprospecting the Inbound Way: How to Increase Connect Rates and Close More...
Teleprospecting the Inbound Way: How to Increase Connect Rates and Close More...
 

Similaire à Séminaire Big Data Alter Way - Elasticsearch - octobre 2014

Big data with Hadoop - Introduction
Big data with Hadoop - IntroductionBig data with Hadoop - Introduction
Big data with Hadoop - IntroductionTomy Rhymond
 
Le big data à l'épreuve des projets d'entreprise
Le big data à l'épreuve des projets d'entrepriseLe big data à l'épreuve des projets d'entreprise
Le big data à l'épreuve des projets d'entrepriseRubedo, a WebTales solution
 
AWS Summit 2013 | Singapore - Delivering Search for Today's Local, Social, an...
AWS Summit 2013 | Singapore - Delivering Search for Today's Local, Social, an...AWS Summit 2013 | Singapore - Delivering Search for Today's Local, Social, an...
AWS Summit 2013 | Singapore - Delivering Search for Today's Local, Social, an...Amazon Web Services
 
Big data 2017 final
Big data 2017   finalBig data 2017   final
Big data 2017 finalAmjid Ali
 
Big-Data-Seminar-6-Aug-2014-Koenig
Big-Data-Seminar-6-Aug-2014-KoenigBig-Data-Seminar-6-Aug-2014-Koenig
Big-Data-Seminar-6-Aug-2014-KoenigManish Chopra
 
Data analytics introduction
Data analytics introductionData analytics introduction
Data analytics introductionamiyadash
 
Big Data, NoSQL, NewSQL & The Future of Data Management
Big Data, NoSQL, NewSQL & The Future of Data ManagementBig Data, NoSQL, NewSQL & The Future of Data Management
Big Data, NoSQL, NewSQL & The Future of Data ManagementTony Bain
 
Social Media, Cloud Computing, Machine Learning, Open Source, and Big Data An...
Social Media, Cloud Computing, Machine Learning, Open Source, and Big Data An...Social Media, Cloud Computing, Machine Learning, Open Source, and Big Data An...
Social Media, Cloud Computing, Machine Learning, Open Source, and Big Data An...Open Analytics
 
Open Data Summit Presentation by Joe Olsen
Open Data Summit Presentation by Joe OlsenOpen Data Summit Presentation by Joe Olsen
Open Data Summit Presentation by Joe OlsenChristopher Whitaker
 
Big Data Landscape 2018
Big Data Landscape 2018Big Data Landscape 2018
Big Data Landscape 2018Leanne Hwee
 
Solr Under the Hood at S&P Global- Sumit Vadhera, S&P Global
Solr Under the Hood at S&P Global- Sumit Vadhera, S&P Global Solr Under the Hood at S&P Global- Sumit Vadhera, S&P Global
Solr Under the Hood at S&P Global- Sumit Vadhera, S&P Global Lucidworks
 
Bigdatappt 140225061440-phpapp01
Bigdatappt 140225061440-phpapp01Bigdatappt 140225061440-phpapp01
Bigdatappt 140225061440-phpapp01nayanbhatia2
 
Special issues on big data
Special issues on big dataSpecial issues on big data
Special issues on big dataVedanand Singh
 
Big data4businessusers
Big data4businessusersBig data4businessusers
Big data4businessusersBob Hardaway
 
Configuring elasticsearch for performance and scale
Configuring elasticsearch for performance and scaleConfiguring elasticsearch for performance and scale
Configuring elasticsearch for performance and scaleBharvi Dixit
 

Similaire à Séminaire Big Data Alter Way - Elasticsearch - octobre 2014 (20)

Data analytics & its Trends
Data analytics & its TrendsData analytics & its Trends
Data analytics & its Trends
 
Big data with Hadoop - Introduction
Big data with Hadoop - IntroductionBig data with Hadoop - Introduction
Big data with Hadoop - Introduction
 
Le big data à l'épreuve des projets d'entreprise
Le big data à l'épreuve des projets d'entrepriseLe big data à l'épreuve des projets d'entreprise
Le big data à l'épreuve des projets d'entreprise
 
AWS Summit 2013 | Singapore - Delivering Search for Today's Local, Social, an...
AWS Summit 2013 | Singapore - Delivering Search for Today's Local, Social, an...AWS Summit 2013 | Singapore - Delivering Search for Today's Local, Social, an...
AWS Summit 2013 | Singapore - Delivering Search for Today's Local, Social, an...
 
Big data 2017 final
Big data 2017   finalBig data 2017   final
Big data 2017 final
 
Big-Data-Seminar-6-Aug-2014-Koenig
Big-Data-Seminar-6-Aug-2014-KoenigBig-Data-Seminar-6-Aug-2014-Koenig
Big-Data-Seminar-6-Aug-2014-Koenig
 
Data analytics introduction
Data analytics introductionData analytics introduction
Data analytics introduction
 
Big Data, NoSQL, NewSQL & The Future of Data Management
Big Data, NoSQL, NewSQL & The Future of Data ManagementBig Data, NoSQL, NewSQL & The Future of Data Management
Big Data, NoSQL, NewSQL & The Future of Data Management
 
Social Media, Cloud Computing, Machine Learning, Open Source, and Big Data An...
Social Media, Cloud Computing, Machine Learning, Open Source, and Big Data An...Social Media, Cloud Computing, Machine Learning, Open Source, and Big Data An...
Social Media, Cloud Computing, Machine Learning, Open Source, and Big Data An...
 
Open Data Summit Presentation by Joe Olsen
Open Data Summit Presentation by Joe OlsenOpen Data Summit Presentation by Joe Olsen
Open Data Summit Presentation by Joe Olsen
 
Big Data Landscape 2018
Big Data Landscape 2018Big Data Landscape 2018
Big Data Landscape 2018
 
Big data ppt
Big  data pptBig  data ppt
Big data ppt
 
Solr Under the Hood at S&P Global- Sumit Vadhera, S&P Global
Solr Under the Hood at S&P Global- Sumit Vadhera, S&P Global Solr Under the Hood at S&P Global- Sumit Vadhera, S&P Global
Solr Under the Hood at S&P Global- Sumit Vadhera, S&P Global
 
Bigdatappt 140225061440-phpapp01
Bigdatappt 140225061440-phpapp01Bigdatappt 140225061440-phpapp01
Bigdatappt 140225061440-phpapp01
 
Special issues on big data
Special issues on big dataSpecial issues on big data
Special issues on big data
 
Big data4businessusers
Big data4businessusersBig data4businessusers
Big data4businessusers
 
SKILLWISE-BIGDATA ANALYSIS
SKILLWISE-BIGDATA ANALYSISSKILLWISE-BIGDATA ANALYSIS
SKILLWISE-BIGDATA ANALYSIS
 
Hadoop HDFS.ppt
Hadoop HDFS.pptHadoop HDFS.ppt
Hadoop HDFS.ppt
 
Configuring elasticsearch for performance and scale
Configuring elasticsearch for performance and scaleConfiguring elasticsearch for performance and scale
Configuring elasticsearch for performance and scale
 
Big_Data_ppt[1] (1).pptx
Big_Data_ppt[1] (1).pptxBig_Data_ppt[1] (1).pptx
Big_Data_ppt[1] (1).pptx
 

Plus de ALTER WAY

Drupagora 2019 : Drupal, accessibilité et RGAA
Drupagora 2019 : Drupal, accessibilité et RGAADrupagora 2019 : Drupal, accessibilité et RGAA
Drupagora 2019 : Drupal, accessibilité et RGAAALTER WAY
 
#sharingLille : L'Open Source pour une société numérique ouverte, transparent...
#sharingLille : L'Open Source pour une société numérique ouverte, transparent...#sharingLille : L'Open Source pour une société numérique ouverte, transparent...
#sharingLille : L'Open Source pour une société numérique ouverte, transparent...ALTER WAY
 
Flyer promotions Alter Way Formation Avril Mai 2015
Flyer promotions Alter Way Formation Avril Mai 2015Flyer promotions Alter Way Formation Avril Mai 2015
Flyer promotions Alter Way Formation Avril Mai 2015ALTER WAY
 
Alter Way's digitalks - Docker : des conteneurs pour tout faire ?
Alter Way's digitalks - Docker  : des conteneurs pour tout faire ? Alter Way's digitalks - Docker  : des conteneurs pour tout faire ?
Alter Way's digitalks - Docker : des conteneurs pour tout faire ? ALTER WAY
 
Alter Way's digitalks - Docker : des conteneurs pour tout faire ?
Alter Way's digitalks - Docker  : des conteneurs pour tout faire ?Alter Way's digitalks - Docker  : des conteneurs pour tout faire ?
Alter Way's digitalks - Docker : des conteneurs pour tout faire ?ALTER WAY
 
Open World Forum 2014 : From ES6 to Javascript 2.0. What use today ? par Jon...
Open World Forum 2014  : From ES6 to Javascript 2.0. What use today ? par Jon...Open World Forum 2014  : From ES6 to Javascript 2.0. What use today ? par Jon...
Open World Forum 2014 : From ES6 to Javascript 2.0. What use today ? par Jon...ALTER WAY
 
Open World Forum 2014 : Guerre des IAAS par Stéphane Vincent
Open World Forum 2014 : Guerre des IAAS par Stéphane Vincent Open World Forum 2014 : Guerre des IAAS par Stéphane Vincent
Open World Forum 2014 : Guerre des IAAS par Stéphane Vincent ALTER WAY
 
Meetup Drupal Paris : Connexion Drupal et Elasticsearch
Meetup Drupal Paris : Connexion Drupal et Elasticsearch Meetup Drupal Paris : Connexion Drupal et Elasticsearch
Meetup Drupal Paris : Connexion Drupal et Elasticsearch ALTER WAY
 
Solutions Linux 2014 – Alter Way : Révélations sur les pratiques de la NSA
Solutions Linux 2014 – Alter Way : Révélations sur les pratiques de la NSASolutions Linux 2014 – Alter Way : Révélations sur les pratiques de la NSA
Solutions Linux 2014 – Alter Way : Révélations sur les pratiques de la NSAALTER WAY
 
Solutions Linux 2014 – Alter Way : Industrialisation des développements en Ja...
Solutions Linux 2014 – Alter Way : Industrialisation des développements en Ja...Solutions Linux 2014 – Alter Way : Industrialisation des développements en Ja...
Solutions Linux 2014 – Alter Way : Industrialisation des développements en Ja...ALTER WAY
 
Solutions Linux 2014 - Alter Way : Évolutions des back offices des CMS/CMF
Solutions Linux 2014 - Alter Way : Évolutions des back offices des CMS/CMF Solutions Linux 2014 - Alter Way : Évolutions des back offices des CMS/CMF
Solutions Linux 2014 - Alter Way : Évolutions des back offices des CMS/CMF ALTER WAY
 
Alter way-wordcamp-paris-2014
Alter way-wordcamp-paris-2014Alter way-wordcamp-paris-2014
Alter way-wordcamp-paris-2014ALTER WAY
 
Présentation Drupal - Global Training Days
Présentation Drupal - Global Training DaysPrésentation Drupal - Global Training Days
Présentation Drupal - Global Training DaysALTER WAY
 
OpenStack havana tour d'horizon
OpenStack havana tour d'horizonOpenStack havana tour d'horizon
OpenStack havana tour d'horizonALTER WAY
 
H2O, le Cloud par Alter Way
H2O, le Cloud par Alter WayH2O, le Cloud par Alter Way
H2O, le Cloud par Alter WayALTER WAY
 
Industrialisez vos projets Php
Industrialisez vos projets Php Industrialisez vos projets Php
Industrialisez vos projets Php ALTER WAY
 
Reprise sur incident , par Jean Marc Fontaine
Reprise sur incident , par Jean Marc FontaineReprise sur incident , par Jean Marc Fontaine
Reprise sur incident , par Jean Marc FontaineALTER WAY
 
Organiser efficacement son depot de code par Jean Marc Fontaine
Organiser efficacement son depot de code par Jean Marc FontaineOrganiser efficacement son depot de code par Jean Marc Fontaine
Organiser efficacement son depot de code par Jean Marc FontaineALTER WAY
 
Objets patterns et genie logiciel , par Julien Pauli
Objets patterns et genie logiciel , par Julien PauliObjets patterns et genie logiciel , par Julien Pauli
Objets patterns et genie logiciel , par Julien PauliALTER WAY
 
Maintenir du code historique , par Jean Marc Fontaine
Maintenir du code historique , par Jean Marc FontaineMaintenir du code historique , par Jean Marc Fontaine
Maintenir du code historique , par Jean Marc FontaineALTER WAY
 

Plus de ALTER WAY (20)

Drupagora 2019 : Drupal, accessibilité et RGAA
Drupagora 2019 : Drupal, accessibilité et RGAADrupagora 2019 : Drupal, accessibilité et RGAA
Drupagora 2019 : Drupal, accessibilité et RGAA
 
#sharingLille : L'Open Source pour une société numérique ouverte, transparent...
#sharingLille : L'Open Source pour une société numérique ouverte, transparent...#sharingLille : L'Open Source pour une société numérique ouverte, transparent...
#sharingLille : L'Open Source pour une société numérique ouverte, transparent...
 
Flyer promotions Alter Way Formation Avril Mai 2015
Flyer promotions Alter Way Formation Avril Mai 2015Flyer promotions Alter Way Formation Avril Mai 2015
Flyer promotions Alter Way Formation Avril Mai 2015
 
Alter Way's digitalks - Docker : des conteneurs pour tout faire ?
Alter Way's digitalks - Docker  : des conteneurs pour tout faire ? Alter Way's digitalks - Docker  : des conteneurs pour tout faire ?
Alter Way's digitalks - Docker : des conteneurs pour tout faire ?
 
Alter Way's digitalks - Docker : des conteneurs pour tout faire ?
Alter Way's digitalks - Docker  : des conteneurs pour tout faire ?Alter Way's digitalks - Docker  : des conteneurs pour tout faire ?
Alter Way's digitalks - Docker : des conteneurs pour tout faire ?
 
Open World Forum 2014 : From ES6 to Javascript 2.0. What use today ? par Jon...
Open World Forum 2014  : From ES6 to Javascript 2.0. What use today ? par Jon...Open World Forum 2014  : From ES6 to Javascript 2.0. What use today ? par Jon...
Open World Forum 2014 : From ES6 to Javascript 2.0. What use today ? par Jon...
 
Open World Forum 2014 : Guerre des IAAS par Stéphane Vincent
Open World Forum 2014 : Guerre des IAAS par Stéphane Vincent Open World Forum 2014 : Guerre des IAAS par Stéphane Vincent
Open World Forum 2014 : Guerre des IAAS par Stéphane Vincent
 
Meetup Drupal Paris : Connexion Drupal et Elasticsearch
Meetup Drupal Paris : Connexion Drupal et Elasticsearch Meetup Drupal Paris : Connexion Drupal et Elasticsearch
Meetup Drupal Paris : Connexion Drupal et Elasticsearch
 
Solutions Linux 2014 – Alter Way : Révélations sur les pratiques de la NSA
Solutions Linux 2014 – Alter Way : Révélations sur les pratiques de la NSASolutions Linux 2014 – Alter Way : Révélations sur les pratiques de la NSA
Solutions Linux 2014 – Alter Way : Révélations sur les pratiques de la NSA
 
Solutions Linux 2014 – Alter Way : Industrialisation des développements en Ja...
Solutions Linux 2014 – Alter Way : Industrialisation des développements en Ja...Solutions Linux 2014 – Alter Way : Industrialisation des développements en Ja...
Solutions Linux 2014 – Alter Way : Industrialisation des développements en Ja...
 
Solutions Linux 2014 - Alter Way : Évolutions des back offices des CMS/CMF
Solutions Linux 2014 - Alter Way : Évolutions des back offices des CMS/CMF Solutions Linux 2014 - Alter Way : Évolutions des back offices des CMS/CMF
Solutions Linux 2014 - Alter Way : Évolutions des back offices des CMS/CMF
 
Alter way-wordcamp-paris-2014
Alter way-wordcamp-paris-2014Alter way-wordcamp-paris-2014
Alter way-wordcamp-paris-2014
 
Présentation Drupal - Global Training Days
Présentation Drupal - Global Training DaysPrésentation Drupal - Global Training Days
Présentation Drupal - Global Training Days
 
OpenStack havana tour d'horizon
OpenStack havana tour d'horizonOpenStack havana tour d'horizon
OpenStack havana tour d'horizon
 
H2O, le Cloud par Alter Way
H2O, le Cloud par Alter WayH2O, le Cloud par Alter Way
H2O, le Cloud par Alter Way
 
Industrialisez vos projets Php
Industrialisez vos projets Php Industrialisez vos projets Php
Industrialisez vos projets Php
 
Reprise sur incident , par Jean Marc Fontaine
Reprise sur incident , par Jean Marc FontaineReprise sur incident , par Jean Marc Fontaine
Reprise sur incident , par Jean Marc Fontaine
 
Organiser efficacement son depot de code par Jean Marc Fontaine
Organiser efficacement son depot de code par Jean Marc FontaineOrganiser efficacement son depot de code par Jean Marc Fontaine
Organiser efficacement son depot de code par Jean Marc Fontaine
 
Objets patterns et genie logiciel , par Julien Pauli
Objets patterns et genie logiciel , par Julien PauliObjets patterns et genie logiciel , par Julien Pauli
Objets patterns et genie logiciel , par Julien Pauli
 
Maintenir du code historique , par Jean Marc Fontaine
Maintenir du code historique , par Jean Marc FontaineMaintenir du code historique , par Jean Marc Fontaine
Maintenir du code historique , par Jean Marc Fontaine
 

Dernier

04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationshipsccctableauusergroup
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfMarinCaroMartnezBerg
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts ServiceSapana Sha
 
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubaihf8803863
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxolyaivanovalion
 
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /WhatsappsBeautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsappssapnasaifi408
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxolyaivanovalion
 
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...Suhani Kapoor
 
Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxolyaivanovalion
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfRachmat Ramadhan H
 
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptxEMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptxthyngster
 
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130Suhani Kapoor
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiVIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiSuhani Kapoor
 
BigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxBigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxolyaivanovalion
 
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Callshivangimorya083
 
Ukraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICSUkraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICSAishani27
 

Dernier (20)

04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships
 
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Kishangarh
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in  KishangarhDelhi 99530 vip 56974 Genuine Escort Service Call Girls in  Kishangarh
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Kishangarh
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdf
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts Service
 
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptx
 
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /WhatsappsBeautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptx
 
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
 
Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptx
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
 
E-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptxE-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptx
 
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
 
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptxEMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptx
 
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiVIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
 
BigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxBigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptx
 
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
 
Ukraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICSUkraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICS
 

Séminaire Big Data Alter Way - Elasticsearch - octobre 2014

  • 1.
  • 4. Alter Way in 2 slides
  • 5. Alter Way in 2 slides
  • 6. Elasticsearch in 1 slide • More than 11 million downloads • 650,000 New Downloads per Month • 1000s of Mission Critical Implementations • Top Investors: Benchmark Capital, Index Ventures • Seasoned Executive Team – Founded by Creator of Elasticsearch – Seasoned Executives from SpringSource
  • 7. Les enjeux de la recherche à l’ère du BigData
  • 8. Big Data in Todayʼs Business and Technology Environment : some significant figures • 2.7 Zetabytes of data exist in the digital universe today. (=1 billion Terabytes) • 235 Terabytes of data has been collected by the U.S. Library of Congress in April 2011. • Facebook stores, accesses, and analyzes 30+ Petabytes of user generated data. • Akamai analyzes 75 million events per day to better target advertisements. • Walmart handles more than 1 million customer transactions every hour, which is imported into databases estimated to contain more than 2.5 petabytes of data. • The largest AT&T database boasts titles including the largest volume of data in one unique database (312 terabytes) and the second largest number of rows in a unique database (1.9 trillion), which comprises AT&Tʼ’s extensive calling records. • Hadoop : – 94% of Hadoop users perform analytics on large volumes of data not possible before – 88% analyze data in greater detail; – while 82% can now retain more of their data.
  • 9. The Rapid Growth of Unstructured Data • YouTube users upload 48 hours of new video every minute of the day. • 500+ new websites are created every minute of the day. • Brands and organizations on Facebook receive 34,722 Likes every minute of the day. • 100 terabytes of data uploaded daily to Facebook. • According to Twitterʼ’s own research in early 2012, it sees roughly 175 million tweets every day, and has more than 465 million accounts. • 30 Billion pieces of content shared on Facebook every month. Data production will be 44 times greater in 2020 than it was in 2009.
  • 10. Big Data & Real Business Issues • 25+ % of decision‐makers surveyed predict that data volumes in their companies will rise by more than 60% by the end of 2014, with the average of all respondents anticipating a growth of no less than 42 %. • 40% projected growth in global data generated per year vs. 5% growth in global IT spending. • According to estimates, the volume of business data worldwide, across all companies, doubles every 1.2 years. – Poor data can cost businesses 20%–35% of their operating revenue. – Bad data or poor data quality costs US businesses $600 billion annually. • 75+ % of decision-makers surveyed anticipate significant impacts in the domain of storage systems as a result of the “Big Data” phenomenon. • We anticipate a new challenge : to be able to Search and Analyse all those datas … in real time !
  • 11. Elasticsearch A solution already in production with significant french implementations Revolutionizing Data Search and Analytics Richard Maurer– SEMEA Territory Manager
  • 12. Purpose of Elasticsearch • Organize data and make it easily accessible – Through powerful search and analytics – Easily consumable (even for non-data scientists) – Elegantly handles extremely large data volumes – Delivers results in real time • Technology stack agnostic • Used across all market verticals
  • 13. Features of Elasticsearch • Structured & unstructured search • Advanced analytics capabilities • Unmatched performance • Real-time results • Highly scalable • User friendly installation and maintenance
  • 14. Elasticsearch 1.4: a solution production ready • Real time data Indexation • Distributed • High Availability • Schema Free • Real Time Data Analytics • Multi Tenancy • Much more….
  • 15. Unprecedented Uptake Elasticsearch has more than11 Million downloads … and 650,000 more each month Cumulative
  • 17. French Use Cases Bouygues Telecom: Uses Elasticsearch in their Big Data Platform. Cut their web resolution time by 10X Daily Motion: Indexing their 20 million Videos on Elasticsearch. On production for over 2 years Voyages SNCF They have recently announced ES has being live on their “Usine Logicielle” Fotolia: Search Engine made on Elasticsearch, to access 24 Million Images, move over to ES Orange: With over 1.2 billion docs, looking at better solution and cost reduction
  • 18. Product Offerings: Support Throughout Your Project 1. Core Elasticsearch Training (2 days) 2. ELK Workshop (1 day) 3. Development and Production Support 4. Marvel, Monitoring of your ES clusters
  • 20. Resources • www.elasticsearch.com • www.elasticsearch.org • User Groups: http://www.elasticsearch.org/community/forum/ • Contact: Richard Maurer Territory Manager Richard.maurer@elasticsearch.com
  • 21. MAKE SENSE OF YOUR (BIG) DATA! David Pilato Technical advocate! ! elasticsearch. @dadoonet
  • 22.
  • 31. 35.000.000.000.000.000 mb Source: http://www.csc.com/insights/flxwd/78931-big_data_just_beginning_to_explode StartUp
  • 33.
  • 34. StartUp search = like % ? SELECT ! doc.*, country.* ! FROM ! doc, country! WHERE ! doc.country_code = country.code AND! doc.date_doc > to_date('2011-12', 'yyyy-mm') AND ! doc.date_doc < to_date('2012-01', 'yyyy-mm') AND ! lower(country.name) = 'france' AND ! lower(doc.comment) LIKE ‘%product%' AND lower(doc.comment) LIKE ‘%david%';
  • 36. elasticsearch ? StartUp plug & play REST/JSON scalable Apache 2 license Lucene elasticsearch
  • 37. Start… $ wget https://download.elasticsearch.org/elasticsearch/ elasticsearch/elasticsearch-1.1.1.tar.gz! $ tar -xf elasticsearch-1.1.1.tar.gz! $ ./elasticsearch-1.1.1/bin/elasticsearch! [INFO ][node ][Ghost Maker] {1.1.1}[5645]: initializing
  • 38. … and play! $ curl -XPUT localhost:9200/sessions/session/1 -d '{! "title" : "Elasticsearch",! "subtitle" : "Make sense of your (BIG) data !",! "date" : "2014-05-20T10:30:00",! "tags" : [ "elasticsearch", "alterway", "bigdata" ],! "speakers" : [{! "first_name" : "David", ! "last_name" : "Pilato" ! }]! }'
  • 39. Search! $ curl http://localhost:9200/sessions/session/_search -d' { "query": { "multi_match": { "query": "elasticsearch alterway david", "fields": [ "title^3", "tags^2", "speakers.first_name" ] } }, "post_filter": { "range": { "date": { "from": "2014-05-01", "to": "2014-06" } } } }'
  • 41. Compute! $ curl http://localhost:9200/sessions/session/_search -d' { "query": { ... }, "aggs": { "by_date": { "date_histogram": { "field": "date", "interval": "day", "format" : "dd/MM/yyyy" } } } }' "by_date": [ { "key_as_string": "03/04/2014", "doc_count": 1 }, { "key_as_string": "12/04/2014", "doc_count": 2 }, { "key_as_string": "16/04/2014", "doc_count": 3 } ]
  • 42.
  • 43. Let’s make sense of … • logs! • twitter! • github! • marketing data! • ...! • your data! • your big data #mstechdays #elasticsearch StartUp
  • 44. Let’s make sense of … • logs! • twitter! • github! • marketing data! • ...! • your data! • your big data { "name":"Pilato David", "dateOfBirth":"1971-12-26", "gender":"male", "children":3, "marketing":{ "fashion":334, "music":3363, "hifi":2351 }, "address":{ "country":"France", "city":"Paris", "location": [2.332395, 48.861871] } } #mstechdays #elasticsearch StartUp
  • 45. démo MAKE SENSE OF YOUR (BIG) DATA! let’s inject some marketing documents… #mstechdays #elasticsearch StartUp
  • 48. Comment insérer ElasticSearch dans votre Système d’Information et en tirer le meilleur parti
  • 50. STORE
  • 53. Are you ready to use ElasticSearch in your IT?
  • 54. What you need to run it • Java 8 update 20 or later, or Java 7 update 55 or later • Only Oracle’s Java and the OpenJDK are supported.
  • 55. Github projects • Many projects • Big activity • Many languages 6 mois !
  • 58. Why it ‘s easy
  • 59. • One to many • ~ Zero conf • Cloud oriented • Scalability DNA • Replication • Sharding • Distributed • Resilience • Snapshot • Restore Start Small Grow Big
  • 60. • One to many • ~ Zero conf • Cloud oriented • Scalability DNA • Replication • Sharding • Distributed • Resilience • Snapshot • Restore Start Small Grow Big
  • 61. Where / How can you use ElasticSearch?
  • 64. … CMS Search Engine
  • 65. Ecommerce Enhanced Search Engine • Faceting • Fuzzy Search • Speed • Auto Completion • Geo Search • Log Analysis
  • 66. Combining Hadoop & ElasticSearch • REST based • Memory and I/O efficient • Adaptive I/O • Map/Reduce API support • Pig support • Hive support  elasticsearch-hadoop
  • 68. It’s up to you to decide what to build with ES
  • 69. Analysis / Dasboards Some Examples
  • 70. Kibana examples : IRC Activity
  • 71. Kibana examples : Pfsense Monitoring
  • 72. Kibana examples : Windows Events
  • 73. Kibana examples : Inventory
  • 75. Kibana examples : Web Activity
  • 76. ES = No Limits
  • 77.
  • 79. Conclusion • Il est temps de révolutionner la façon dont vous valorisez vos données : offrez Elasticsearch à vos applicatifs ! • La stack ELK (Elasticsearch, Logstash, Kibana) est déjà massivement utilisée en production ! • Faites vous accompagner pour bénéficier des bonnes pratiques et du support à tous les stades de votre projet : conception, développement, production