SlideShare une entreprise Scribd logo
1  sur  43
Télécharger pour lire hors ligne
Satish Mohan
Your Data,
Your Search
Tuesday, 12 March 13
Enterprises today are collecting and have access
to more data points in their ecosystem then ever.
Tuesday, 12 March 13
File Store Example
File / Folder Navigation
Integration - Mount Points
Limited Metadata
Hierarchical Structure
Regular File Store
Tuesday, 12 March 13
• Find a document from December 2011 about transfer containing proposal and David
• Find the document received from John containing David and transfer
• Find the revisions of transfer document
File Store Example
File / Folder Navigation
Integration - Mount Points
Limited Metadata
Hierarchical Structure
Tuesday, 12 March 13
• Find a document from December 2011 about transfer containing proposal and David
• Find the document received from John containing David and transfer
• Find the revisions of transfer document
File Store Example
File / Folder Navigation
Integration - Mount Points
Limited Metadata
Hierarchical Structure Collections / Documents
Local / Distributed Integrations
Semantic Metadata
Declarative Queries
Automatic Indexing
Provenance
Automatic Organization
Virtual Collections
Regular File Store
Intelligent File Store
Tuesday, 12 March 13
ElasticSearch is an open source, scalable,
distributed, cloud-ready, highly-available full-text
search engine and database with powerful
aggregation features, communicating by JSON over
RESTful HTTP, based on Apache Lucene.
Tuesday, 12 March 13
Structured Data
Unstructured Data Data Refinery
Message Queues
Inverted index
Transaction Log Versioning
Source Document
Capture & Curate
Index
Streams
Analyse
Search
MemoryShared FS FS + MemoryLocal FS
Document Store
Playing with ElasticSearch
Tuesday, 12 March 13
Playing with ElasticSearch
Rivers
• Data flows from sources using Rivers
• Continues to add data as it flows
• Can be added, removed, configured dynamically
Tuesday, 12 March 13
Playing with ElasticSearch
Rivers
• Data flows from sources using Rivers
• Continues to add data as it flows
• Can be added, removed, configured dynamically
ES NodeData Source
Data Source
Data Source
River
River
River
ES Index
Tuesday, 12 March 13
Playing with ElasticSearch
Rivers
• Data flows from sources using Rivers
• Continues to add data as it flows
• Can be added, removed, configured dynamically
ES NodeData Source
Data Source
Data Source
River
River
River
ES Index
Tuesday, 12 March 13
Playing with ElasticSearch
River Modules
• CouchDB • JDBC
• MongoDB • Solr
• Wikipedia • Jira
• Twitter • CSV
• ActiveMQ • FileSystem
• RabbitMQ • SysInfo
• NSQ • Logs
• RSS • LDAP
Tuesday, 12 March 13
Playing with ElasticSearch
Index
• Describes document structure to the search engine
• Automatically created with sensible defaults
• Explicit mapping can be provided (generally, a good idea)
• Simple:
• string, integer/long, float/double, boolean, and null
• Complex:
• array, object
Tuesday, 12 March 13
Structured Data
Unstructured Data Data Refinery
Message Queues
Inverted index
Transaction Log Versioning
Source Document
Shards
Replication Load Balancing Nodes
Distributed
Capture & Curate
Index
Streams
Analyse
Search
MemoryShared FS FS + MemoryLocal FS
Document Store
Playing with ElasticSearch
Tuesday, 12 March 13
Playing with ElasticSearch
Distributed Model
• Number of shards is the scaling unit [ #shards > #nodes ]
• each one is a separate Lucene index thus, many per-index settings are available
• Moving shards around is faster than splitting them (no reindex)
• Replicas also serves reads, allowing to scale search
• # of replicas can be updated dynamically after index creation
Node 1
user (0)
user (1)
Node 2
user1 (0)
user (1)
Node 3
user (0)
user2 (0)
Automatic Discovery Protocol
Replica
Shard
Tuesday, 12 March 13
Playing with ElasticSearch
Index Aliases
curl -X POST 'http://localhost:9200/_aliases' -d '{
"actions" : [
{
"add" : {
“index” : “users”,
“alias” : “user_1”,
“filter” : { “term” : { “user” : “1” } },
“routing” : “1”
}
} ]
}'
Indexing and search happens on the alias, with automatic use of routing and filtering
Tuesday, 12 March 13
Playing with ElasticSearch
Index Aliases
curl -X POST 'http://localhost:9200/_aliases' -d
' {
"actions" : [ { "add" : {
"index" : "user_1",
"alias" : "users"
}
},
{ "add" : {
"index" : "user_2",
"alias" : "users"
}
} ]
}'
users
user_1
user_2
curl -X GET "http://localhost:9200/users/_search?q=..."
Tuesday, 12 March 13
Structured Data
Unstructured Data Data Refinery
Message Queues
Inverted index
Transaction Log Versioning
Source Document
Shards
Replication Load Balancing Nodes
Distributed
Capture & Curate
Index
Streams
Analyse
Search
Transport
HTTP WebSockets
Thrift
ZeroMQ
memcached
TCP
MemoryShared FS FS + MemoryLocal FS
Document Store
Playing with ElasticSearch
Tuesday, 12 March 13
Structured Data
Unstructured Data Data Refinery
Message Queues
Inverted index
Transaction Log Versioning
Source Document
Data Sources
Tokenisers
Retrieval Models
Structured Results
Language Bindings Transport
Shards
Replication Load Balancing Nodes
Distributed
Capture & Curate
Index
Streams
Analyse
Search
Transport
HTTP WebSockets
Thrift
ZeroMQ
memcached
TCP
Modules
Extend
MemoryShared FS FS + MemoryLocal FS
Document Store
Playing with ElasticSearch
Tuesday, 12 March 13
Structured Data
Unstructured Data Data Refinery
Message Queues
Inverted index
Transaction Log Versioning
Source Document
Data Sources
Tokenisers
Retrieval Models
Structured Results
Language Bindings Transport
Shards
Replication Load Balancing Nodes
Distributed
Zen EC2
Capture & Curate
Index
Streams
Analyse
Search
Transport
HTTP WebSockets
Thrift
ZeroMQ
memcached
TCP
Modules
Extend
Discovery
MemoryShared FS FS + MemoryLocal FS
Document Store
Playing with ElasticSearch
Tuesday, 12 March 13
Structured Data
Unstructured Data Data Refinery
Message Queues
Inverted index
Transaction Log Versioning
Source Document
Data Sources
Tokenisers
Retrieval Models
Structured Results
Language Bindings Transport
Shards
Replication Load Balancing Nodes
Distributed
Zen EC2
mvel Python
Groovy
Javascript
Capture & Curate
Index
Streams
Analyse
Search
Transport
HTTP WebSockets
Thrift
ZeroMQ
memcached
TCP
Modules
Extend
Script
Discovery
MemoryShared FS FS + MemoryLocal FS
Document Store
Playing with ElasticSearch
Tuesday, 12 March 13
Structured Data
Unstructured Data Data Refinery
Message Queues
Inverted index
Transaction Log Versioning
Source Document
Data Sources
Tokenisers
Retrieval Models
Structured Results
Language Bindings Transport
Shards
Replication Load Balancing Nodes
Distributed
Zen EC2
mvel Python
Groovy
Javascript
Capture & Curate
Index
Streams
Analyse
Search
Transport
HTTP WebSockets
Thrift
ZeroMQ
memcached
TCP
Modules
Extend
Script
Monitor
Discovery
MemoryShared FS FS + MemoryLocal FS
Document Store
Playing with ElasticSearch
Tuesday, 12 March 13
Structured Data
Unstructured Data Data Refinery
Message Queues
Inverted index
Transaction Log Versioning
Source Document
Data Sources
Tokenisers
Retrieval Models
Structured Results
Language Bindings Transport
Shards
Replication Load Balancing Nodes
Distributed
Zen EC2
mvel Python
Groovy
Javascript
Capture & Curate
Index
Streams
Analyse
Search
Transport
HTTP WebSockets
Thrift
ZeroMQ
memcached
TCP
Modules
Extend
Script
Monitor
Discovery
RESTful
MemoryShared FS FS + MemoryLocal FS
Document Store
Playing with ElasticSearch
Tuesday, 12 March 13
REST API : http://host:port/[index]/[type]/[_action/id]
HTTP Methods : GET, POST, PUT, DELETE
Playing with ElasticSearch
Tuesday, 12 March 13
REST API : http://host:port/[index]/[type]/[_action/id]
HTTP Methods : GET, POST, PUT, DELETE
Playing with ElasticSearch
Some Definitions.....
• index -> Like a database
• type -> Like a table
• id -> Like a row in a table
Tuesday, 12 March 13
Playing with ElasticSearch
REST API : http://host:port/[index]/[type]/_action/id]
HTTP Methods : GET, POST, PUT, DELETE
curl -X POST "http://localhost:9200/articles/article/1" -d '
{
"title" : "ElasticSearch Understands JSON!",
"body" : "ElasticSearch not only “works” with JSON, it understands it! Let’s first ...",
"published_on" : "2013/02/06 10:00:00",
"tags" : ["search", "json"],
"author" : {
"first_name" : "Bruce",
"last_name" : "Croft",
"email" : "bruce@croft.org"
}
}'
request
Tuesday, 12 March 13
Playing with ElasticSearch
REST API : http://host:port/[index]/[type]/_action/id]
HTTP Methods : GET, POST, PUT, DELETE
curl -X POST "http://localhost:9200/articles/article/1" -d '
{
"title" : "ElasticSearch Understands JSON!",
"body" : "ElasticSearch not only “works” with JSON, it understands it! Let’s first ...",
"published_on" : "2013/02/06 10:00:00",
"tags" : ["search", "json"],
"author" : {
"first_name" : "Bruce",
"last_name" : "Croft",
"email" : "bruce@croft.org"
}
}'
{
"ok":true,
"_index":"articles",
"_type":"article",
"_id":"1",
"_version":1
}
requestresponse
Tuesday, 12 March 13
Playing with ElasticSearch
REST API : http://host:port/[index]/[type]/_action/id]
HTTP Methods : GET, POST, PUT, DELETE
request
curl -X GET "http://localhost:9200/articles/_search?q=author.first_name:BRUCE"
Tuesday, 12 March 13
Playing with ElasticSearch
REST API : http://host:port/[index]/[type]/_action/id]
HTTP Methods : GET, POST, PUT, DELETE
{
"took":1,
"timed_out":false,
"_shards":{"total":5,"successful":5,"failed":0},
"hits":{
"total":1,
"max_score":0.30685282,
"hits":[{
"_index":"articles",
"_type":"article",
"_id":"1",
"_score":0.30685282,
"_source" :
{
"title" : "ElasticSearch Understands JSON!",
"body" : "ElasticSearch not only “works” with JSON, it understands it! Let’s first ...",
"published_on" : "2013/02/06 10:00:00",
"tags" : ["search", "json"],
"author" : {
"first_name" : "Bruce",
"last_name" : "Croft",
"email" : "bruce@croft.org"
}
} } ] } }
request
curl -X GET "http://localhost:9200/articles/_search?q=author.first_name:BRUCE"
response
Tuesday, 12 March 13
Playing with ElasticSearch
REST API : http://host:port/[index]/[type]/_action/id]
HTTP Methods : GET, POST, PUT, DELETE
{
"took":1,
"timed_out":false,
"_shards":{"total":5,"successful":5,"failed":0},
"hits":{
"total":1,
"max_score":0.30685282,
"hits":[{
"_index":"articles",
"_type":"article",
"_id":"1",
"_score":0.30685282,
"_source" :
{
"title" : "ElasticSearch Understands JSON!",
"body" : "ElasticSearch not only “works” with JSON, it understands it! Let’s first ...",
"published_on" : "2013/02/06 10:00:00",
"tags" : ["search", "json"],
"author" : {
"first_name" : "Bruce",
"last_name" : "Croft",
"email" : "bruce@croft.org"
}
}
} ] } }
request
curl -X GET "http://localhost:9200/articles/_search?q=author.first_name:BRUCE"
response
Location & ID
Document Source
Total number of documents
Tuesday, 12 March 13
Structured Data
Unstructured Data Data Refinery
Message Queues
Inverted index
Transaction Log Versioning
Source Document
Data Sources
Tokenisers
Retrieval Models
Structured Results
Language Bindings Transport
Shards
Replication Load Balancing Nodes
Distributed
Zen EC2
mvel Python
Groovy
Javascript
Capture & Curate
Index
Streams
Analyse
Search
Transport
HTTP WebSockets
Thrift
ZeroMQ
memcached
TCP
Modules
Extend
Script
Monitor
Discovery
RESTful Micro Apps
MemoryShared FS FS + MemoryLocal FS
Document Store
Playing with ElasticSearch
Tuesday, 12 March 13
Structured Data
Unstructured Data Data Refinery
Message Queues
Inverted index
Transaction Log Versioning
Source Document
Data Sources
Tokenisers
Retrieval Models
Structured Results
Language Bindings Transport
Shards
Replication Load Balancing Nodes
Distributed
Zen EC2
mvel Python
Groovy
Javascript
HTML5/CSS3 Javascript
Capture & Curate
Index
Streams
Analyse
Search
Transport
HTTP WebSockets
Thrift
ZeroMQ
memcached
TCP
Modules
Extend
Script
Monitor
Discovery
RESTful Micro Apps
MemoryShared FS FS + MemoryLocal FS
Document Store
Playing with ElasticSearch
Tuesday, 12 March 13
Micro Applications
Rich, interactive single-page web applications powered by JavaScript, HTML and
CSS.
Tuesday, 12 March 13
Micro Applications
Tuesday, 12 March 13
Micro Applications
Tuesday, 12 March 13
Micro Applications
Tuesday, 12 March 13
Micro Applications
Tuesday, 12 March 13
Micro Applications
Rich, interactive single-page web applications powered by JavaScript, HTML
and CSS.
• A self-described framework for ambitious applications
• Rails-inspired “convention over configuration” approach
• High level abstractions, two-way binding and auto-updating templates
Data Model
ControllerRouter
View
Model Model
Controller
View View
View
Tuesday, 12 March 13
Micro Applications
Rich, interactive single-page web applications powered by JavaScript, HTML
and CSS.
• A self-described framework for ambitious applications
• Rails-inspired “convention over configuration” approach
• High level abstractions, two-way binding and auto-updating templates
• Ember Data
• Client side storage adapter
• Provides a common interface to persist application data
• RESTful HTTP service - primary endpoint
• Browser’s localStorage
• Emerging web databases such as IndexedDB
Data Model
ControllerRouter
View
Model Model
Controller
View View
View
Tuesday, 12 March 13
Playing with ElasticSearch
More Features.....
• document oriented • load balancing
• versioning • plugins
• parent/child docs • more_like_this
• scripting • multi_field mapping
• dynamic mapping templates • percolation
• bulk indexing • facets
• geo location • index aliases
• auto-complete • ngrams & edge-ngrams
• histograms • rivers
Tuesday, 12 March 13
Structured Data
Unstructured Data Data Refinery
Message Queues
Inverted index
Transaction Log Versioning
Source Document
Data Sources
Tokenisers
Retrieval Models
Structured Results
Language Bindings Transport
Shards
Replication Load Balancing Nodes
Distributed
Zen EC2
mvel Python
Groovy
Javascript
HTML5/CSS3 Javascript
Capture & Curate
Index
Streams
Analyse
Search
Transport
HTTP WebSockets
Thrift
ZeroMQ
memcached
TCP
Modules
Extend
Script
Monitor
Discovery
RESTful Micro Apps
MemoryShared FS FS + MemoryLocal FS
Document Store
An alternative that would allow scientists or even casual users to perform analysis of
distributed data regardless of where the data resides.
Tuesday, 12 March 13
Search is the primary interface for getting
information today. Let’s build on it.
Search
DiscoverAnalyse
Tuesday, 12 March 13
Tuesday, 12 March 13
Data Management Tools - Challenges
• Interactive queries, data exploration or iterative query refinement poses
significant challenges for current methods
• Building and running jobs and queries requires deep understanding of
cluster size and structure, job performance, etc.
• Time-consuming to set up, deploy and use
Tuesday, 12 March 13

Contenu connexe

Tendances

Elastic search apache_solr
Elastic search apache_solrElastic search apache_solr
Elastic search apache_solr
macrochen
 

Tendances (19)

Introduction to Elasticsearch with basics of Lucene
Introduction to Elasticsearch with basics of LuceneIntroduction to Elasticsearch with basics of Lucene
Introduction to Elasticsearch with basics of Lucene
 
ElasticSearch in Production: lessons learned
ElasticSearch in Production: lessons learnedElasticSearch in Production: lessons learned
ElasticSearch in Production: lessons learned
 
Elasticsearch in 15 minutes
Elasticsearch in 15 minutesElasticsearch in 15 minutes
Elasticsearch in 15 minutes
 
ElasticSearch Basic Introduction
ElasticSearch Basic IntroductionElasticSearch Basic Introduction
ElasticSearch Basic Introduction
 
Elasticsearch Introduction at BigData meetup
Elasticsearch Introduction at BigData meetupElasticsearch Introduction at BigData meetup
Elasticsearch Introduction at BigData meetup
 
Elasticsearch Introduction
Elasticsearch IntroductionElasticsearch Introduction
Elasticsearch Introduction
 
Introduction to Elasticsearch
Introduction to ElasticsearchIntroduction to Elasticsearch
Introduction to Elasticsearch
 
Intro to elasticsearch
Intro to elasticsearchIntro to elasticsearch
Intro to elasticsearch
 
Elasticsearch: You know, for search! and more!
Elasticsearch: You know, for search! and more!Elasticsearch: You know, for search! and more!
Elasticsearch: You know, for search! and more!
 
Elasticsearch Introduction to Data model, Search & Aggregations
Elasticsearch Introduction to Data model, Search & AggregationsElasticsearch Introduction to Data model, Search & Aggregations
Elasticsearch Introduction to Data model, Search & Aggregations
 
ElasticSearch - index server used as a document database
ElasticSearch - index server used as a document databaseElasticSearch - index server used as a document database
ElasticSearch - index server used as a document database
 
Elastic search apache_solr
Elastic search apache_solrElastic search apache_solr
Elastic search apache_solr
 
Introduction to Elasticsearch
Introduction to ElasticsearchIntroduction to Elasticsearch
Introduction to Elasticsearch
 
Philly PHP: April '17 Elastic Search Introduction by Aditya Bhamidpati
Philly PHP: April '17 Elastic Search Introduction by Aditya BhamidpatiPhilly PHP: April '17 Elastic Search Introduction by Aditya Bhamidpati
Philly PHP: April '17 Elastic Search Introduction by Aditya Bhamidpati
 
Lucene basics
Lucene basicsLucene basics
Lucene basics
 
Introduction to Elasticsearch
Introduction to ElasticsearchIntroduction to Elasticsearch
Introduction to Elasticsearch
 
Introduction to Lucene & Solr and Usecases
Introduction to Lucene & Solr and UsecasesIntroduction to Lucene & Solr and Usecases
Introduction to Lucene & Solr and Usecases
 
Elasticsearch first-steps
Elasticsearch first-stepsElasticsearch first-steps
Elasticsearch first-steps
 
Roaring with elastic search sangam2018
Roaring with elastic search sangam2018Roaring with elastic search sangam2018
Roaring with elastic search sangam2018
 

Similaire à elasticsearch

DataGraft Platform: RDF Database-as-a-Service
DataGraft Platform: RDF Database-as-a-ServiceDataGraft Platform: RDF Database-as-a-Service
DataGraft Platform: RDF Database-as-a-Service
Marin Dimitrov
 
Solr Application Development Tutorial
Solr Application Development TutorialSolr Application Development Tutorial
Solr Application Development Tutorial
Erik Hatcher
 
RESTful JSON web databases
RESTful JSON web databasesRESTful JSON web databases
RESTful JSON web databases
kriszyp
 

Similaire à elasticsearch (20)

Drupal and Apache Stanbol. What if you could reliably do autotagging?
Drupal and Apache Stanbol. What if you could reliably do autotagging?Drupal and Apache Stanbol. What if you could reliably do autotagging?
Drupal and Apache Stanbol. What if you could reliably do autotagging?
 
Using ElasticSearch as a fast, flexible, and scalable solution to search occu...
Using ElasticSearch as a fast, flexible, and scalable solution to search occu...Using ElasticSearch as a fast, flexible, and scalable solution to search occu...
Using ElasticSearch as a fast, flexible, and scalable solution to search occu...
 
Introduction to NoSQL with MongoDB
Introduction to NoSQL with MongoDBIntroduction to NoSQL with MongoDB
Introduction to NoSQL with MongoDB
 
Mongo db php_shaken_not_stirred_joomlafrappe
Mongo db php_shaken_not_stirred_joomlafrappeMongo db php_shaken_not_stirred_joomlafrappe
Mongo db php_shaken_not_stirred_joomlafrappe
 
Adf walkthrough
Adf walkthroughAdf walkthrough
Adf walkthrough
 
DataGraft Platform: RDF Database-as-a-Service
DataGraft Platform: RDF Database-as-a-ServiceDataGraft Platform: RDF Database-as-a-Service
DataGraft Platform: RDF Database-as-a-Service
 
Elasticsearch
ElasticsearchElasticsearch
Elasticsearch
 
Visualizing Austin's data with Elasticsearch and Kibana
Visualizing Austin's data with Elasticsearch and KibanaVisualizing Austin's data with Elasticsearch and Kibana
Visualizing Austin's data with Elasticsearch and Kibana
 
Moving Library Metadata Toward Linked Data: Opportunities Provided by the eX...
Moving Library Metadata Toward Linked Data:  Opportunities Provided by the eX...Moving Library Metadata Toward Linked Data:  Opportunities Provided by the eX...
Moving Library Metadata Toward Linked Data: Opportunities Provided by the eX...
 
Elasticsearch & "PeopleSearch"
Elasticsearch & "PeopleSearch"Elasticsearch & "PeopleSearch"
Elasticsearch & "PeopleSearch"
 
An Intro to Elasticsearch and Kibana
An Intro to Elasticsearch and KibanaAn Intro to Elasticsearch and Kibana
An Intro to Elasticsearch and Kibana
 
NoSQL Now 2013 Presentation
NoSQL Now 2013 PresentationNoSQL Now 2013 Presentation
NoSQL Now 2013 Presentation
 
Solr Application Development Tutorial
Solr Application Development TutorialSolr Application Development Tutorial
Solr Application Development Tutorial
 
Hands On Spring Data
Hands On Spring DataHands On Spring Data
Hands On Spring Data
 
From discovering to trusting data
From discovering to trusting dataFrom discovering to trusting data
From discovering to trusting data
 
OData: Universal Data Solvent or Clunky Enterprise Goo? (GlueCon 2015)
OData: Universal Data Solvent or Clunky Enterprise Goo? (GlueCon 2015)OData: Universal Data Solvent or Clunky Enterprise Goo? (GlueCon 2015)
OData: Universal Data Solvent or Clunky Enterprise Goo? (GlueCon 2015)
 
Linked Data and Locah, UKSG2011
Linked Data and Locah, UKSG2011 Linked Data and Locah, UKSG2011
Linked Data and Locah, UKSG2011
 
elasticsearch basics workshop
elasticsearch basics workshopelasticsearch basics workshop
elasticsearch basics workshop
 
RESTful JSON web databases
RESTful JSON web databasesRESTful JSON web databases
RESTful JSON web databases
 
The RESTful Soa Datagrid with Oracle
The RESTful Soa Datagrid with OracleThe RESTful Soa Datagrid with Oracle
The RESTful Soa Datagrid with Oracle
 

Dernier

Dernier (20)

Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 

elasticsearch

  • 1. Satish Mohan Your Data, Your Search Tuesday, 12 March 13
  • 2. Enterprises today are collecting and have access to more data points in their ecosystem then ever. Tuesday, 12 March 13
  • 3. File Store Example File / Folder Navigation Integration - Mount Points Limited Metadata Hierarchical Structure Regular File Store Tuesday, 12 March 13
  • 4. • Find a document from December 2011 about transfer containing proposal and David • Find the document received from John containing David and transfer • Find the revisions of transfer document File Store Example File / Folder Navigation Integration - Mount Points Limited Metadata Hierarchical Structure Tuesday, 12 March 13
  • 5. • Find a document from December 2011 about transfer containing proposal and David • Find the document received from John containing David and transfer • Find the revisions of transfer document File Store Example File / Folder Navigation Integration - Mount Points Limited Metadata Hierarchical Structure Collections / Documents Local / Distributed Integrations Semantic Metadata Declarative Queries Automatic Indexing Provenance Automatic Organization Virtual Collections Regular File Store Intelligent File Store Tuesday, 12 March 13
  • 6. ElasticSearch is an open source, scalable, distributed, cloud-ready, highly-available full-text search engine and database with powerful aggregation features, communicating by JSON over RESTful HTTP, based on Apache Lucene. Tuesday, 12 March 13
  • 7. Structured Data Unstructured Data Data Refinery Message Queues Inverted index Transaction Log Versioning Source Document Capture & Curate Index Streams Analyse Search MemoryShared FS FS + MemoryLocal FS Document Store Playing with ElasticSearch Tuesday, 12 March 13
  • 8. Playing with ElasticSearch Rivers • Data flows from sources using Rivers • Continues to add data as it flows • Can be added, removed, configured dynamically Tuesday, 12 March 13
  • 9. Playing with ElasticSearch Rivers • Data flows from sources using Rivers • Continues to add data as it flows • Can be added, removed, configured dynamically ES NodeData Source Data Source Data Source River River River ES Index Tuesday, 12 March 13
  • 10. Playing with ElasticSearch Rivers • Data flows from sources using Rivers • Continues to add data as it flows • Can be added, removed, configured dynamically ES NodeData Source Data Source Data Source River River River ES Index Tuesday, 12 March 13
  • 11. Playing with ElasticSearch River Modules • CouchDB • JDBC • MongoDB • Solr • Wikipedia • Jira • Twitter • CSV • ActiveMQ • FileSystem • RabbitMQ • SysInfo • NSQ • Logs • RSS • LDAP Tuesday, 12 March 13
  • 12. Playing with ElasticSearch Index • Describes document structure to the search engine • Automatically created with sensible defaults • Explicit mapping can be provided (generally, a good idea) • Simple: • string, integer/long, float/double, boolean, and null • Complex: • array, object Tuesday, 12 March 13
  • 13. Structured Data Unstructured Data Data Refinery Message Queues Inverted index Transaction Log Versioning Source Document Shards Replication Load Balancing Nodes Distributed Capture & Curate Index Streams Analyse Search MemoryShared FS FS + MemoryLocal FS Document Store Playing with ElasticSearch Tuesday, 12 March 13
  • 14. Playing with ElasticSearch Distributed Model • Number of shards is the scaling unit [ #shards > #nodes ] • each one is a separate Lucene index thus, many per-index settings are available • Moving shards around is faster than splitting them (no reindex) • Replicas also serves reads, allowing to scale search • # of replicas can be updated dynamically after index creation Node 1 user (0) user (1) Node 2 user1 (0) user (1) Node 3 user (0) user2 (0) Automatic Discovery Protocol Replica Shard Tuesday, 12 March 13
  • 15. Playing with ElasticSearch Index Aliases curl -X POST 'http://localhost:9200/_aliases' -d '{ "actions" : [ { "add" : { “index” : “users”, “alias” : “user_1”, “filter” : { “term” : { “user” : “1” } }, “routing” : “1” } } ] }' Indexing and search happens on the alias, with automatic use of routing and filtering Tuesday, 12 March 13
  • 16. Playing with ElasticSearch Index Aliases curl -X POST 'http://localhost:9200/_aliases' -d ' { "actions" : [ { "add" : { "index" : "user_1", "alias" : "users" } }, { "add" : { "index" : "user_2", "alias" : "users" } } ] }' users user_1 user_2 curl -X GET "http://localhost:9200/users/_search?q=..." Tuesday, 12 March 13
  • 17. Structured Data Unstructured Data Data Refinery Message Queues Inverted index Transaction Log Versioning Source Document Shards Replication Load Balancing Nodes Distributed Capture & Curate Index Streams Analyse Search Transport HTTP WebSockets Thrift ZeroMQ memcached TCP MemoryShared FS FS + MemoryLocal FS Document Store Playing with ElasticSearch Tuesday, 12 March 13
  • 18. Structured Data Unstructured Data Data Refinery Message Queues Inverted index Transaction Log Versioning Source Document Data Sources Tokenisers Retrieval Models Structured Results Language Bindings Transport Shards Replication Load Balancing Nodes Distributed Capture & Curate Index Streams Analyse Search Transport HTTP WebSockets Thrift ZeroMQ memcached TCP Modules Extend MemoryShared FS FS + MemoryLocal FS Document Store Playing with ElasticSearch Tuesday, 12 March 13
  • 19. Structured Data Unstructured Data Data Refinery Message Queues Inverted index Transaction Log Versioning Source Document Data Sources Tokenisers Retrieval Models Structured Results Language Bindings Transport Shards Replication Load Balancing Nodes Distributed Zen EC2 Capture & Curate Index Streams Analyse Search Transport HTTP WebSockets Thrift ZeroMQ memcached TCP Modules Extend Discovery MemoryShared FS FS + MemoryLocal FS Document Store Playing with ElasticSearch Tuesday, 12 March 13
  • 20. Structured Data Unstructured Data Data Refinery Message Queues Inverted index Transaction Log Versioning Source Document Data Sources Tokenisers Retrieval Models Structured Results Language Bindings Transport Shards Replication Load Balancing Nodes Distributed Zen EC2 mvel Python Groovy Javascript Capture & Curate Index Streams Analyse Search Transport HTTP WebSockets Thrift ZeroMQ memcached TCP Modules Extend Script Discovery MemoryShared FS FS + MemoryLocal FS Document Store Playing with ElasticSearch Tuesday, 12 March 13
  • 21. Structured Data Unstructured Data Data Refinery Message Queues Inverted index Transaction Log Versioning Source Document Data Sources Tokenisers Retrieval Models Structured Results Language Bindings Transport Shards Replication Load Balancing Nodes Distributed Zen EC2 mvel Python Groovy Javascript Capture & Curate Index Streams Analyse Search Transport HTTP WebSockets Thrift ZeroMQ memcached TCP Modules Extend Script Monitor Discovery MemoryShared FS FS + MemoryLocal FS Document Store Playing with ElasticSearch Tuesday, 12 March 13
  • 22. Structured Data Unstructured Data Data Refinery Message Queues Inverted index Transaction Log Versioning Source Document Data Sources Tokenisers Retrieval Models Structured Results Language Bindings Transport Shards Replication Load Balancing Nodes Distributed Zen EC2 mvel Python Groovy Javascript Capture & Curate Index Streams Analyse Search Transport HTTP WebSockets Thrift ZeroMQ memcached TCP Modules Extend Script Monitor Discovery RESTful MemoryShared FS FS + MemoryLocal FS Document Store Playing with ElasticSearch Tuesday, 12 March 13
  • 23. REST API : http://host:port/[index]/[type]/[_action/id] HTTP Methods : GET, POST, PUT, DELETE Playing with ElasticSearch Tuesday, 12 March 13
  • 24. REST API : http://host:port/[index]/[type]/[_action/id] HTTP Methods : GET, POST, PUT, DELETE Playing with ElasticSearch Some Definitions..... • index -> Like a database • type -> Like a table • id -> Like a row in a table Tuesday, 12 March 13
  • 25. Playing with ElasticSearch REST API : http://host:port/[index]/[type]/_action/id] HTTP Methods : GET, POST, PUT, DELETE curl -X POST "http://localhost:9200/articles/article/1" -d ' { "title" : "ElasticSearch Understands JSON!", "body" : "ElasticSearch not only “works” with JSON, it understands it! Let’s first ...", "published_on" : "2013/02/06 10:00:00", "tags" : ["search", "json"], "author" : { "first_name" : "Bruce", "last_name" : "Croft", "email" : "bruce@croft.org" } }' request Tuesday, 12 March 13
  • 26. Playing with ElasticSearch REST API : http://host:port/[index]/[type]/_action/id] HTTP Methods : GET, POST, PUT, DELETE curl -X POST "http://localhost:9200/articles/article/1" -d ' { "title" : "ElasticSearch Understands JSON!", "body" : "ElasticSearch not only “works” with JSON, it understands it! Let’s first ...", "published_on" : "2013/02/06 10:00:00", "tags" : ["search", "json"], "author" : { "first_name" : "Bruce", "last_name" : "Croft", "email" : "bruce@croft.org" } }' { "ok":true, "_index":"articles", "_type":"article", "_id":"1", "_version":1 } requestresponse Tuesday, 12 March 13
  • 27. Playing with ElasticSearch REST API : http://host:port/[index]/[type]/_action/id] HTTP Methods : GET, POST, PUT, DELETE request curl -X GET "http://localhost:9200/articles/_search?q=author.first_name:BRUCE" Tuesday, 12 March 13
  • 28. Playing with ElasticSearch REST API : http://host:port/[index]/[type]/_action/id] HTTP Methods : GET, POST, PUT, DELETE { "took":1, "timed_out":false, "_shards":{"total":5,"successful":5,"failed":0}, "hits":{ "total":1, "max_score":0.30685282, "hits":[{ "_index":"articles", "_type":"article", "_id":"1", "_score":0.30685282, "_source" : { "title" : "ElasticSearch Understands JSON!", "body" : "ElasticSearch not only “works” with JSON, it understands it! Let’s first ...", "published_on" : "2013/02/06 10:00:00", "tags" : ["search", "json"], "author" : { "first_name" : "Bruce", "last_name" : "Croft", "email" : "bruce@croft.org" } } } ] } } request curl -X GET "http://localhost:9200/articles/_search?q=author.first_name:BRUCE" response Tuesday, 12 March 13
  • 29. Playing with ElasticSearch REST API : http://host:port/[index]/[type]/_action/id] HTTP Methods : GET, POST, PUT, DELETE { "took":1, "timed_out":false, "_shards":{"total":5,"successful":5,"failed":0}, "hits":{ "total":1, "max_score":0.30685282, "hits":[{ "_index":"articles", "_type":"article", "_id":"1", "_score":0.30685282, "_source" : { "title" : "ElasticSearch Understands JSON!", "body" : "ElasticSearch not only “works” with JSON, it understands it! Let’s first ...", "published_on" : "2013/02/06 10:00:00", "tags" : ["search", "json"], "author" : { "first_name" : "Bruce", "last_name" : "Croft", "email" : "bruce@croft.org" } } } ] } } request curl -X GET "http://localhost:9200/articles/_search?q=author.first_name:BRUCE" response Location & ID Document Source Total number of documents Tuesday, 12 March 13
  • 30. Structured Data Unstructured Data Data Refinery Message Queues Inverted index Transaction Log Versioning Source Document Data Sources Tokenisers Retrieval Models Structured Results Language Bindings Transport Shards Replication Load Balancing Nodes Distributed Zen EC2 mvel Python Groovy Javascript Capture & Curate Index Streams Analyse Search Transport HTTP WebSockets Thrift ZeroMQ memcached TCP Modules Extend Script Monitor Discovery RESTful Micro Apps MemoryShared FS FS + MemoryLocal FS Document Store Playing with ElasticSearch Tuesday, 12 March 13
  • 31. Structured Data Unstructured Data Data Refinery Message Queues Inverted index Transaction Log Versioning Source Document Data Sources Tokenisers Retrieval Models Structured Results Language Bindings Transport Shards Replication Load Balancing Nodes Distributed Zen EC2 mvel Python Groovy Javascript HTML5/CSS3 Javascript Capture & Curate Index Streams Analyse Search Transport HTTP WebSockets Thrift ZeroMQ memcached TCP Modules Extend Script Monitor Discovery RESTful Micro Apps MemoryShared FS FS + MemoryLocal FS Document Store Playing with ElasticSearch Tuesday, 12 March 13
  • 32. Micro Applications Rich, interactive single-page web applications powered by JavaScript, HTML and CSS. Tuesday, 12 March 13
  • 37. Micro Applications Rich, interactive single-page web applications powered by JavaScript, HTML and CSS. • A self-described framework for ambitious applications • Rails-inspired “convention over configuration” approach • High level abstractions, two-way binding and auto-updating templates Data Model ControllerRouter View Model Model Controller View View View Tuesday, 12 March 13
  • 38. Micro Applications Rich, interactive single-page web applications powered by JavaScript, HTML and CSS. • A self-described framework for ambitious applications • Rails-inspired “convention over configuration” approach • High level abstractions, two-way binding and auto-updating templates • Ember Data • Client side storage adapter • Provides a common interface to persist application data • RESTful HTTP service - primary endpoint • Browser’s localStorage • Emerging web databases such as IndexedDB Data Model ControllerRouter View Model Model Controller View View View Tuesday, 12 March 13
  • 39. Playing with ElasticSearch More Features..... • document oriented • load balancing • versioning • plugins • parent/child docs • more_like_this • scripting • multi_field mapping • dynamic mapping templates • percolation • bulk indexing • facets • geo location • index aliases • auto-complete • ngrams & edge-ngrams • histograms • rivers Tuesday, 12 March 13
  • 40. Structured Data Unstructured Data Data Refinery Message Queues Inverted index Transaction Log Versioning Source Document Data Sources Tokenisers Retrieval Models Structured Results Language Bindings Transport Shards Replication Load Balancing Nodes Distributed Zen EC2 mvel Python Groovy Javascript HTML5/CSS3 Javascript Capture & Curate Index Streams Analyse Search Transport HTTP WebSockets Thrift ZeroMQ memcached TCP Modules Extend Script Monitor Discovery RESTful Micro Apps MemoryShared FS FS + MemoryLocal FS Document Store An alternative that would allow scientists or even casual users to perform analysis of distributed data regardless of where the data resides. Tuesday, 12 March 13
  • 41. Search is the primary interface for getting information today. Let’s build on it. Search DiscoverAnalyse Tuesday, 12 March 13
  • 43. Data Management Tools - Challenges • Interactive queries, data exploration or iterative query refinement poses significant challenges for current methods • Building and running jobs and queries requires deep understanding of cluster size and structure, job performance, etc. • Time-consuming to set up, deploy and use Tuesday, 12 March 13