ElasticSearch Hello World Example
ElasticSearch is an Open-source Enterprise REST based Real-time Search and Analytics Engine. It’s core Search Functionality is built using Apache Lucene, but supports many other features.
It is written in Java Language. It supports Store, Index, Search and Analyze Data in Real-time. Like MongoDB, ElasticSearch is also a Document-based NoSQL Data Store.
ElasticSearch website: www.elastic.co. The latest version of ElasticSearch is 5.2.1, which was released on 14th Feb 2017.
ElasticSearch Features:-
- An Open-source
- Supports Full-text Simple and Powerful Search
- Supports REST Based API (JSON over HTTP)
- Supports Real-time Search and Analytics
- By Definition, Distributed
- Supports Multi Tenancy Feature
- Support Cloud and Big Data Environments
- Supports Cross-platform
- Denormalized NoSQL Data Store
Advantages or Benefits of ElasticSearch:-
- An Open-source
- Light Weight with REST API
- Highly Available. Easily and Highly Scalable
- Supports Caching Data
- Schema Free
- Fast Search Performance
- Supports both Structured and UN-Structured Data
- Supports Distributed, Sharding, Replication, Clustering and Multi-Node Architecture
- Supports Bulk Operations
- Build Charts and Dashboards within no time
Drawbacks or Limitations of ElasticSearch:-
- Does NOT support MapReduce operations
- Not useful as a Primary Data Store
- Not an ACID compliant Data Store
- Does not support Transactions and Distributed Transactions
- Does NOT have built-in authentication or authorization feature
Popular Clients who are using ElasticSearch:-
- Github.com, Quora.com, Stackoverflow.com
- eBay, DELL, Cisco, Mozilla, Wikimedia
- Netflix, Symatics, Facebook
- UK HMRC (HM Revenue & Customs)
For instance, Github.com uses ElasticSearch to search files, history, ticket numbers etc. Most of the companies uses ELK stack to manage their logs and to monitor their systems. ELK stands for ElasticSearch Logstash and Kibana.
You can find a more Customer’s use-cases at https://www.elastic.co/use-cases
1. Install ElasticSearch Locally
As we know, ElasticSearch is written in Java. So, we should have Java/JRE in our System Path to use it. Please install and setup Java Environment properly.
To install ElasticSearch to your local File System, please follow these instructions.
1.1 Download ElasticSearch from https://www.elastic.co/downloads/elasticsearch
1.2 Windows
- Download and extract Zip file to local File system: elasticsearch-5.2.1.zip
- Extracted Zip file to F:\elasticsearch-5.2.1
- Set Environment Variable
PATH = F:\elasticsearch-5.2.1\bin
F:/>elasticsearch.bat
1.3 Ubuntu Linux: Install with tar file
- Download and extract Tar file to local File system
tar -xvf elasticsearch-5.2.1.tar.gz
$ ./elasticsearch
1.4 Ubuntu Linux: Install with commands
- Execute the following command to download ElasticSearch
$ sudo wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.2.1.deb
It downloads ElasticSearch DEB file: elasticsearch-5.2.1.deb
$ sudo dpkg -i elasticsearch-5.2.1.deb
By default, it installs ElasticSearch at “/usr/share/elasticsearch”.
$ ./elasticsearch
ElasticSearch default port number is 9200. If required, we can change this port number.
1.5 After ElasticSearch is started, access the default URL, we will get the following default Response
"name" : "rBvi0Hs", "cluster_name" : "elasticsearch", "cluster_uuid" : "kOQQ_nqfTW-b4vQ00XSvdg", "version" : { "number" : "5.2.1", "build_hash" : "db0d481", "build_date" : "2017-02-09T22:05:32.386Z", "build_snapshot" : false, "lucene_version" : "6.4.1" }, "tagline" : "You Know, for Search"
You can find ElasticSearch source code at https://github.com/elastic/elasticsearch
2. ElasticSearch REST API URL Basics
ElasticSearch REST API URL should follow the following format.
Here
- Server means any server name or host name like “myserver”. Sometimes we use Node + Port number like “myhost:9999”.
- Index must be in lower case, otherwise it throws an Exception.
- It is recommended to use Type also in lower case.
We will discuss more about this REST API usage and Exception with some examples in the coming sections.
3. ElasticSearch Terminology
We will discuss few important ElasticSearch Terminology: Index, Type, Document, Key, Value etc.
3.1 What is an Index in ElasticSearch?
In ElasticSearch, an Index is a collection of Documents. For instance, “bookstore” is a Document. Index is used for indexing, searching, updating and deleting Documents. It must be in lower case.
An Index is similar to Database in Relation Database World.
3.2 What is a Type in ElasticSearch?
In ElasticSearch, a Type is a category of similar Documents. That means we can group a set of similar Documents into a Type. As we know in real-world, a “bookstore” contains different kinds of items: a collection of “Books”, a collections Pens, Pencils, CDs etc. In the same way, “bookstore” Document (One kind of Index) can contain a collection of Types: books, pens,CDs etc.
A Type is similar to Table in Relation Database World.
3.3 What is a Document in ElasticSearch?
In ElasticSearch, a Document is an instance of a Type. It contains Data with Key and Value fairs. For instance, “title”:”Functional Programming In Java” is a Key:Value fair of a Document of Type:”Books”. Each Document has an id.
A Document is similar to a Row in a Table in Relation Database World. Key is Column name and value is Column value.
4. ElasticSearch Commands Basics
As we know, ElasticSearch supports REST-Based API (JSON Over HTTP Protocol) to support CRUD (Create Read Update Delete) operations. It uses HTTP methods to perform its operations.
HTTP Request Mothod | Usage |
---|---|
GET | To get or select or read data from ElasticSearch |
POST | To create or update data to ElasticSearch |
PUT | To create or update data to ElasticSearch |
DELETE | To delete or remove existing data from ElasticSearch |
To test ElasticSearch Operations, We can use any REST clients like POSTMAN, Fiddler, CURL command, Sense etc. I’m going to use Google Chrome POSTMAN to explore the ElasticSearch REST APIs. You can install POSTMAN or Sense as Chrome Extensions.
5. ElasticSearch CRUD Operations
Let us develop a Search functionality for Mkyong.com website using ElasticSearch to search Posts details, Author details etc.
5.1 CREATE Operation Example
To insert a new Document with /mkyong/posts/1001 and the following Request Data:
"title": "Java 8 Optional In Depth", "category":"Java", "published_date":"23-FEB-2017", "author":"Rambabu Posa"
Here 1001 is Document id. It is used to identify it uniquely.
Description:-
- To create a new Document, we use an HTTP POST request method.
- Our Node:Port Number: http://localhost:9200
- Index name: mkyong
- Type name: posts
- As Request body type as JSON or add request header: “Content-Type” : “application/json”
- Click on “SEND” button to the Response.
- We can observe the following Key:Value pairs in Response data.
"_index":"mkyong" "_type":"posts" "result":"created" "created":true
[2017-02-26T21:10:33,941][INFO ][o.e.c.m.MetaDataCreateIndexService] [aH4GiIP] [mkyong] creating index, cause [auto(index api)], templates [], shards [5]/[1], mappings [] [2017-02-26T21:10:35,790][INFO ][o.e.c.m.MetaDataMappingService] [aH4GiIP] [mkyong/KJsGZgF-Try0k4OHWAgARQ] create_mapping [posts]
Plese insert the following Documents in the same way:
"/mkyong/posts/1002" "title": "Elastic Search Basics", "category":"ElasticSearch", "published_date":"03-MAR-2017", "author":"Rambabu Posa" "/mkyong/posts/1003" "title": "Spring + Spring Data + ElasticSearch", "category":"Spring", "published_date":"11-MAR-2017", "author":"Rambabu Posa" "/mkyong/posts/1004" "title": "Spring + Spring Data + ElasticSearch", "category":"Spring Boot", "published_date":"23-MAR-2017", "author":"Rambabu Posa"
5.2 READ Operation Example
To read or query or select data from ElasticSearch, we should use “_search” at the end of the REAT API URL.
Description:-
- You can observe “_search” in the URL.
- Response shows: “total”:4 (Total 4 records found with that Index and Type.)
5.3 READ Operation With Query Parameters Example
We can use query parameters using “?q=
Description:-
- We can observe the following Key:Value pairs in Response data. It tells total one record found in this search.
"total":"1" "_id":"1002"
5.4 UPDATE Operation Example
Would like to update an existing Document data as shown below:
Description:-
- We can observe the following Key:Value pairs in Response data. It tells Document is updated, but not created.
"result":"updated" "created":"false"
Check the same Document
5.5 DELETE Operation Example
Would like to remove one Document whose _id = 1004
Description:-
- We can observe the following Key:Value pairs in Response data. It tells Document is deleted successfully.
"result":"deleted" "successful":"1"
6. Index must be in lower case
As we discussed, Index must be in lower case. Otherwise, it throws an error as shown below:
As we are NOT using Index: “Mkyong” in lower case, it throws a very meaningful error message: “Invalid index name [Mkyong], must be lowercase”.
Type may be in upper case, but it is not recommended.
References
From:一号门
COMMENTS