Created
August 7, 2017 19:03
-
-
Save selcukusta/424134c07c4e52a53be3043b8d82e842 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -X POST \ | |
| http://localhost:9200/career_sample_index/_bulk \ | |
| -H 'cache-control: no-cache' \ | |
| -H 'content-type: application/json' \ | |
| -d '{"index":{"_index":"career_sample_index", "_type":"sample_type", "_id" : 1}} | |
| { "CompanyName" : "ABC Softwarehouse", "Position":"Software Developer", "Salary" : 5000, "Servicing" : true, "Location" : "41.165493, 28.532379"} | |
| {"index":{"_index":"career_sample_index", "_type":"sample_type", "_id" : 2}} | |
| { "CompanyName" : "DEF Tech", "Position":"Software Developer", "Salary" : 5500, "Servicing" : false, "Location" : "41.153168, 28.544824"} | |
| {"index":{"_index":"career_sample_index", "_type":"sample_type", "_id" : 3}} | |
| { "CompanyName" : "ASD Cloud Solutions", "Position":"Software Developer", "Salary" : 5250, "Servicing" : true, "Location" : "41.158358, 28.512380"} | |
| {"index":{"_index":"career_sample_index", "_type":"sample_type", "_id" : 4}} | |
| { "CompanyName" : "HALO Marketing", "Position":"Sales Specialist", "Salary" : 1760, "Servicing" : false, "Location" : "41.173211, 28.532808"} | |
| ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment