Skip to content

Instantly share code, notes, and snippets.

@drewr
Created October 14, 2013 22:38
Show Gist options
  • Save drewr/6983454 to your computer and use it in GitHub Desktop.
Save drewr/6983454 to your computer and use it in GitHub Desktop.
#!/bin/bash
curl -XDELETE localhost:9200/test >/dev/null
curl -XPUT localhost:9200/test -d'
{
"number_of_replicas": 0,
"number_of_shards": 1
}
'; echo
curl -XPUT localhost:9200/test/t/1 -d'{"foo":{"bar":1}}'; echo
curl -XPUT localhost:9200/test/t/1 -d'{"foo":1}'; echo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment