Skip to content

Instantly share code, notes, and snippets.

@p365labs
Created May 30, 2020 18:31
Show Gist options
  • Save p365labs/af922a6c8785f141fb173a2ce5731ee2 to your computer and use it in GitHub Desktop.
Save p365labs/af922a6c8785f141fb173a2ce5731ee2 to your computer and use it in GitHub Desktop.
Elasticsearch Create Repository
curl -X POST "localhost:9200/person/_bulk?pretty" -H 'Content-Type: application/json' -d'
{ "index":{} }
{ "name":"john doe","age":25 }
{ "index":{} }
{ "name":"mary smith","age":32 }
{ "index":{} }
{ "name":"robin green","age":15 }
{ "index":{} }
{ "name":"fred white","age":68 }
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment