You can import data in various formats, such as JSON and CSV, to Elasticsearch in CSS by using Kibana or APIs.
If there is an available index in the cluster where you want to import data, skip this step. If there is no available index, create an index by referring to the following sample code.
For example, on the Console page of Kibana, run the following command to create an index named my_store and specify a user-defined mapping to define the data type:
PUT /my_store { "settings": { "number_of_shards": 1 }, "mappings": { "products": { "properties": { "productName": { "type": "text" }, "size": { "type": "keyword" } } } } }
Versions later than 7.x
PUT /my_store { "settings": { "number_of_shards": 1 }, "mappings": { "properties": { "productName": { "type": "text" }, "size": { "type": "keyword" } } } }
POST /my_store/products/_bulk {"index":{}} {"productName":"Latest art shirts for women in 2017 autumn","size":"L"}
Versions later than 7.x
POST /my_store/_bulk {"index":{}} {"productName":"Latest art shirts for women in 2017 autumn","size":"L"}
The command output is similar to that shown in Figure 1. If the value of the errors field in the result is false, the data is successfully imported.
The following procedure illustrates how you can import a JSON data file using bulk APIs through the cURL command.
You are advised to import a file smaller than 50 MB.
For details about how to access a cluster, see Accessing a Cluster by Calling Elasticsearch APIs on the ECS That Is Located in the Same VPC as the Cluster.
curl -X PUT "http://{Private network address and port number of the node} /_bulk" -H 'Content-Type: application/json' --data-binary @test.json
If communication encryption has been enabled on the cluster where you will import data, you need to send HTTPS requests and add -k to the cURL command.
curl -X PUT -k "https://{Private network address and port number of the node} /_bulk" -H 'Content-Type: application/json' --data-binary @test.json
The value of the -X parameter is a command and that of the -H parameter is a message header. In the preceding command, PUT is the value of the -X parameter and 'Content-Type: application/json' --data-binary @test.json is the value of the -H parameter. Do not add -k between a parameter and its value.
Example 1: In this example, assume that you need to import data in the testdata.json file to an Elasticsearch cluster, where communication encryption is disabled and the private network address and port number of one node are 192.168.0.90 and 9200 respectively. The data in the testdata.json file is as follows:
Versions earlier than 7.x
{"index": {"_index":"my_store","_type":"products"}} {"productName":"Autumn new woman blouses 2019","size":"M"} {"index": {"_index":"my_store","_type":"products"}} {"productName":"Autumn new woman blouses 2019","size":"L"}
Versions later than 7.x
{"index": {"_index":"my_store"}} {"productName":"Autumn new woman blouse 2019","size":"M"} {"index": {"_index":"my_store"}} {"productName":"Autumn new woman blouse 2019","size":"L"}
Perform the following steps to import the data:
curl -X PUT http://192.168.0.90:9200/my_store -H 'Content-Type: application/json' -d ' { "settings": { "number_of_shards": 1 }, "mappings": { "products": { "properties": { "productName": { "type": "text" }, "size": { "type": "keyword" } } } } }'
Versions later than 7.x
curl -X PUT http://192.168.0.90:9200/my_store -H 'Content-Type: application/json' -d ' { "settings": { "number_of_shards": 1 }, "mappings": { "properties": { "productName": { "type": "text" }, "size": { "type": "keyword" } } } }'
curl -X PUT "http://192.168.0.90:9200/_bulk" -H 'Content-Type: application/json' --data-binary @testdata.json
Example 2: In this example, assume that you need to import data in the testdata.json file to an Elasticsearch cluster, where communication encryption has been enabled and the node access address and content in the testdata.json are the same as those in example 1. Perform the following steps to import the data:
curl -X PUT -k https://192.168.0.90:9200/my_store -H 'Content-Type: application/json' -d ' { "settings": { "number_of_shards": 1 }, "mappings": { "products": { "properties": { "productName": { "type": "text" }, "size": { "type": "keyword" } } } } }'
curl -X PUT -k "https://192.168.0.90:9200/_bulk" -H 'Content-Type: application/json' --data-binary @testdata.json