+ All Categories
Home > Technology > Introduction to Elasticsearch

Introduction to Elasticsearch

Date post: 12-Apr-2017
Category:
Upload: bo-andersen
View: 31 times
Download: 0 times
Share this document with a friend
5
INTRODUCTION TO ELASTICSEARCH by Bo Andersen - codingexplained.com
Transcript
Page 1: Introduction to Elasticsearch

INTRODUCTION TO ELASTICSEARCHby Bo Andersen - codingexplained.com

Page 2: Introduction to Elasticsearch

ELASTICSEARCH➤ Open source search server based on Apache Lucene➤ Written in Java➤ Cross-platform➤ Big focus on scalability - distributed from the ground up➤ Designed to take data from any source, analyze it and search through it

Page 3: Introduction to Elasticsearch

ELASTICSEARCH➤ Communication with the search server is done through a HTTP REST API

➤ curl -X<REST Verb> <Node>:<Port>/<Index>/<Type>/<ID>➤ E.g. curl -X GET http://localhost:9200/mywebshop/employee/123

➤ Schema-less JSON documents (like NoSQL databases)➤ Developed by Elasticsearch BV, which provides commercial solutions

related to Elasticsearch➤ Near real-time search

Page 4: Introduction to Elasticsearch

PROMINENT USERS➤ Wikimedia➤ StumbleUpon➤ Mozilla➤ Quora➤ Foursquare➤ SoundCloud➤ GitHub➤ Stack Exchange➤ Netflix➤ ... and many more

Page 5: Introduction to Elasticsearch

THANK YOU FOR WATCHING!


Recommended