Skip to content

Instantly share code, notes, and snippets.

@selcukusta
Created December 30, 2017 23:06
Show Gist options
  • Select an option

  • Save selcukusta/ab2f638217f15f115700284e7ac8ac8a to your computer and use it in GitHub Desktop.

Select an option

Save selcukusta/ab2f638217f15f115700284e7ac8ac8a to your computer and use it in GitHub Desktop.
curl -X POST \
http://localhost:9200/shopping_index/_bulk \
-H 'Cache-Control: no-cache' \
-H 'Content-Type: application/json' \
-d '{"index":{"_index":"shopping_index", "_type":"product", "_id" : 1}}
{ "ProductName" : "Aeden (Bir Dünya Hikayesi) - Azra Kohen", "CategoryId":1, "Price" : 21.50}
{"index":{"_index":"shopping_index", "_type":"product", "_id" : 2}}
{ "ProductName" : "Taht Oyunları (9 Kitap) - George R. R. Martin", "CategoryId":1, "Price" : 199.00}
{"index":{"_index":"shopping_index", "_type":"product", "_id" : 3}}
{ "ProductName" : "Yüzüklerin Efendisi (3 Kitap Tek Cilt) - J. R. R. Tolkien", "CategoryId":1, "Price" : 86.86}
{"index":{"_index":"shopping_index", "_type":"product", "_id" : 4}}
{ "ProductName" : "Kırmızı Piyano - Josh Malerman", "CategoryId":2, "Price" : 12.50}
{"index":{"_index":"shopping_index", "_type":"product", "_id" : 5}}
{ "ProductName" : "Başlangıç - Dan Brown", "CategoryId":3, "Price" : 26.60}
{"index":{"_index":"shopping_index", "_type":"product", "_id" : 6}}
{ "ProductName" : "Kongo'\''ya Aıt - Jean Christophe Grange", "CategoryId":3, "Price" : 22.40}
{"index":{"_index":"shopping_index", "_type":"product", "_id" : 7}}
{ "ProductName" : "Uykusuzlar - Gülşah Elikbank", "CategoryId":3, "Price" : 14.00}
{"index":{"_index":"shopping_index", "_type":"product", "_id" : 8}}
{ "ProductName" : "Psikopat - Sir Arthur Conan Doyle", "CategoryId":3, "Price" : 17.40}
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment