1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
| curl -XPUT 'localhost:9200/customer?pretty&pretty'
{ "acknowledged" : true, "shards_acknowledged" : true, "index" : "customer" }
curl -XGET 'localhost:9200/_cat/indices?v&pretty' yellow open customer oByO4i3IT96RAHiAyaYc4g 1 1 0 0 226b 226b
curl -XPUT 'localhost:9200/customer/external/1?pretty&pretty' -H 'Content-Type: application/json' -d'{ "name": "John Doe" }'
{ "_index" : "customer", "_type" : "external", "_id" : "1", "_version" : 1, "result" : "created", "_shards" : { "total" : 2, "successful" : 1, "failed" : 0 }, "_seq_no" : 0, "_primary_term" : 1 }
curl -XGET 'localhost:9200/customer/external/1?pretty&pretty'
{ "_index" : "customer", "_type" : "external", "_id" : "1", "_version" : 1, "_seq_no" : 0, "_primary_term" : 1, "found" : true, "_source" : { "name" : "John Doe" } }
|