SlideShare a Scribd company logo
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

More Related Content

What's hot

Big data 101
Big data 101Big data 101
Democratizing Data at Airbnb
Democratizing Data at AirbnbDemocratizing Data at Airbnb
Democratizing Data at Airbnb
Neo4j
 
Big Data
Big DataBig 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
Nishant 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 Speed
danpotterdwch
 
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 architect
Saurabh 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
 
Machine Data Analytics
Machine Data AnalyticsMachine Data Analytics
Machine Data Analytics
Nicolas Morales
 
Relational to Big Graph
Relational to Big GraphRelational to Big Graph
Relational to Big Graph
Neo4j
 
Self Service Analytics at Twitch
Self Service Analytics at TwitchSelf Service Analytics at Twitch
Self Service Analytics at Twitch
Imply
 
The Evolution of Big Data Frameworks
The Evolution of Big Data FrameworksThe Evolution of Big Data Frameworks
The Evolution of Big Data Frameworks
eXascale Infolab
 
Moving Past Infrastructure Limitations
Moving Past Infrastructure LimitationsMoving Past Infrastructure Limitations
Moving Past Infrastructure Limitations
Caserta
 
Introduction to Big Data
Introduction to Big DataIntroduction to Big Data
Introduction to Big Data
Joey 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 Server
Mark 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_hadoop
Ghassan 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 2016
StampedeCon
 
Big Data: An Overview
Big Data: An OverviewBig Data: An Overview
Big Data: An Overview
C. Scyphers
 
Introduction to Data Engineering
Introduction to Data EngineeringIntroduction to Data Engineering
Introduction to Data Engineering
Vivek Aanand Ganesan
 

What's hot (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
 

Viewers also liked

EGP Burkenroad Report
EGP Burkenroad ReportEGP Burkenroad Report
EGP Burkenroad ReportEvan Kopf
 
Creating Elasticsearch Snapshots
Creating Elasticsearch SnapshotsCreating Elasticsearch Snapshots
Creating Elasticsearch Snapshots
Vic Hargrave
 
Programa Febrero Año Hernandiano
Programa Febrero Año HernandianoPrograma Febrero Año Hernandiano
Programa Febrero Año Hernandiano
Orihuela 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ção
Alexandre Ribeiro
 
Boleros 2016
Boleros 2016Boleros 2016
Boleros 2016
Cris Maciá
 
Manual cazador completo
Manual cazador completoManual cazador completo
Manual cazador completo
Antonio Vieira
 
Aviation Resume
Aviation ResumeAviation Resume
Aviation ResumeAadil (us)
 
National assembly decisions
National assembly decisionsNational assembly decisions
National assembly decisionslherzl
 
PUNTA COLONET Y LOS INTERESES GEOPORTUARIOS
PUNTA COLONET Y LOS INTERESES GEOPORTUARIOSPUNTA COLONET Y LOS INTERESES GEOPORTUARIOS
PUNTA COLONET Y LOS INTERESES GEOPORTUARIOS
Arq Jaime Martínez Veloz
 
Actividad ordenador 5
Actividad ordenador 5Actividad ordenador 5
Actividad ordenador 5Pedro Jurado
 
Dessins de PLANTU
Dessins de PLANTUDessins de PLANTU
Dessins de PLANTU
Balcon60
 
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 dreaming
Jim Davies
 
Tutorial de Simulink
Tutorial de SimulinkTutorial de Simulink
Tutorial de Simulink
educadorrr
 
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
 

Viewers also liked (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...
 

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

Data analytics & its Trends
Data analytics & its TrendsData analytics & its Trends
Data analytics & its Trends
Dr.K.Sreenivas Rao
 
Big data with Hadoop - Introduction
Big data with Hadoop - IntroductionBig data with Hadoop - Introduction
Big data with Hadoop - Introduction
Tomy 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'entreprise
Rubedo, 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 final
Amjid 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 introduction
amiyadash
 
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
Tony 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 2018
Leanne 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-phpapp01
nayanbhatia2
 
Special issues on big data
Special issues on big dataSpecial issues on big data
Special issues on big data
Vedanand Singh
 
Big data4businessusers
Big data4businessusersBig data4businessusers
Big data4businessusers
Bob Hardaway
 
SKILLWISE-BIGDATA ANALYSIS
SKILLWISE-BIGDATA ANALYSISSKILLWISE-BIGDATA ANALYSIS
SKILLWISE-BIGDATA ANALYSIS
Skillwise Consulting
 
Hadoop HDFS.ppt
Hadoop HDFS.pptHadoop HDFS.ppt
Hadoop HDFS.ppt
6535ANURAGANURAG
 
Configuring elasticsearch for performance and scale
Configuring elasticsearch for performance and scaleConfiguring elasticsearch for performance and scale
Configuring elasticsearch for performance and scale
Bharvi Dixit
 
Big_Data_ppt[1] (1).pptx
Big_Data_ppt[1] (1).pptxBig_Data_ppt[1] (1).pptx
Big_Data_ppt[1] (1).pptx
TanguturiAvinash
 

Similar to 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
 

More from ALTER WAY

Drupagora 2019 : Drupal, accessibilité et RGAA
Drupagora 2019 : Drupal, accessibilité et RGAADrupagora 2019 : Drupal, accessibilité et RGAA
Drupagora 2019 : Drupal, accessibilité et RGAA
ALTER 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 2015
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
 
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 NSA
ALTER 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 Days
ALTER 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 Way
ALTER 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 Fontaine
ALTER 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 Fontaine
ALTER 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 Pauli
ALTER 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 Fontaine
ALTER WAY
 

More from 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
 

Recently uploaded

Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...
Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...
Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...
Subhajit Sahu
 
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
vcaxypu
 
一比一原版(TWU毕业证)西三一大学毕业证成绩单
一比一原版(TWU毕业证)西三一大学毕业证成绩单一比一原版(TWU毕业证)西三一大学毕业证成绩单
一比一原版(TWU毕业证)西三一大学毕业证成绩单
ocavb
 
Q1’2024 Update: MYCI’s Leap Year Rebound
Q1’2024 Update: MYCI’s Leap Year ReboundQ1’2024 Update: MYCI’s Leap Year Rebound
Q1’2024 Update: MYCI’s Leap Year Rebound
Oppotus
 
一比一原版(CU毕业证)卡尔顿大学毕业证成绩单
一比一原版(CU毕业证)卡尔顿大学毕业证成绩单一比一原版(CU毕业证)卡尔顿大学毕业证成绩单
一比一原版(CU毕业证)卡尔顿大学毕业证成绩单
yhkoc
 
Predicting Product Ad Campaign Performance: A Data Analysis Project Presentation
Predicting Product Ad Campaign Performance: A Data Analysis Project PresentationPredicting Product Ad Campaign Performance: A Data Analysis Project Presentation
Predicting Product Ad Campaign Performance: A Data Analysis Project Presentation
Boston Institute of Analytics
 
standardisation of garbhpala offhgfffghh
standardisation of garbhpala offhgfffghhstandardisation of garbhpala offhgfffghh
standardisation of garbhpala offhgfffghh
ArpitMalhotra16
 
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
ahzuo
 
一比一原版(BU毕业证)波士顿大学毕业证成绩单
一比一原版(BU毕业证)波士顿大学毕业证成绩单一比一原版(BU毕业证)波士顿大学毕业证成绩单
一比一原版(BU毕业证)波士顿大学毕业证成绩单
ewymefz
 
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
slg6lamcq
 
Data Centers - Striving Within A Narrow Range - Research Report - MCG - May 2...
Data Centers - Striving Within A Narrow Range - Research Report - MCG - May 2...Data Centers - Striving Within A Narrow Range - Research Report - MCG - May 2...
Data Centers - Striving Within A Narrow Range - Research Report - MCG - May 2...
pchutichetpong
 
Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...
Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...
Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...
Subhajit Sahu
 
一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单
ewymefz
 
SOCRadar Germany 2024 Threat Landscape Report
SOCRadar Germany 2024 Threat Landscape ReportSOCRadar Germany 2024 Threat Landscape Report
SOCRadar Germany 2024 Threat Landscape Report
SOCRadar
 
Sample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdf
Sample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdfSample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdf
Sample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdf
Linda486226
 
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
oz8q3jxlp
 
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
slg6lamcq
 
FP Growth Algorithm and its Applications
FP Growth Algorithm and its ApplicationsFP Growth Algorithm and its Applications
FP Growth Algorithm and its Applications
MaleehaSheikh2
 
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
vcaxypu
 
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
u86oixdj
 

Recently uploaded (20)

Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...
Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...
Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...
 
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
 
一比一原版(TWU毕业证)西三一大学毕业证成绩单
一比一原版(TWU毕业证)西三一大学毕业证成绩单一比一原版(TWU毕业证)西三一大学毕业证成绩单
一比一原版(TWU毕业证)西三一大学毕业证成绩单
 
Q1’2024 Update: MYCI’s Leap Year Rebound
Q1’2024 Update: MYCI’s Leap Year ReboundQ1’2024 Update: MYCI’s Leap Year Rebound
Q1’2024 Update: MYCI’s Leap Year Rebound
 
一比一原版(CU毕业证)卡尔顿大学毕业证成绩单
一比一原版(CU毕业证)卡尔顿大学毕业证成绩单一比一原版(CU毕业证)卡尔顿大学毕业证成绩单
一比一原版(CU毕业证)卡尔顿大学毕业证成绩单
 
Predicting Product Ad Campaign Performance: A Data Analysis Project Presentation
Predicting Product Ad Campaign Performance: A Data Analysis Project PresentationPredicting Product Ad Campaign Performance: A Data Analysis Project Presentation
Predicting Product Ad Campaign Performance: A Data Analysis Project Presentation
 
standardisation of garbhpala offhgfffghh
standardisation of garbhpala offhgfffghhstandardisation of garbhpala offhgfffghh
standardisation of garbhpala offhgfffghh
 
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
 
一比一原版(BU毕业证)波士顿大学毕业证成绩单
一比一原版(BU毕业证)波士顿大学毕业证成绩单一比一原版(BU毕业证)波士顿大学毕业证成绩单
一比一原版(BU毕业证)波士顿大学毕业证成绩单
 
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
 
Data Centers - Striving Within A Narrow Range - Research Report - MCG - May 2...
Data Centers - Striving Within A Narrow Range - Research Report - MCG - May 2...Data Centers - Striving Within A Narrow Range - Research Report - MCG - May 2...
Data Centers - Striving Within A Narrow Range - Research Report - MCG - May 2...
 
Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...
Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...
Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...
 
一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单
 
SOCRadar Germany 2024 Threat Landscape Report
SOCRadar Germany 2024 Threat Landscape ReportSOCRadar Germany 2024 Threat Landscape Report
SOCRadar Germany 2024 Threat Landscape Report
 
Sample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdf
Sample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdfSample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdf
Sample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdf
 
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
 
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
 
FP Growth Algorithm and its Applications
FP Growth Algorithm and its ApplicationsFP Growth Algorithm and its Applications
FP Growth Algorithm and its Applications
 
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
 
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
 

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