Skip to content

Instantly share code, notes, and snippets.

@VorticonCmdr
Created July 17, 2015 13:18
Show Gist options
  • Save VorticonCmdr/63e34e04535bef8c0398 to your computer and use it in GitHub Desktop.
Save VorticonCmdr/63e34e04535bef8c0398 to your computer and use it in GitHub Desktop.
elasticsearch parent child sort by child value
curl -XPOST localhost:9200/test -d '{
"mappings" : {
"person" : {
"properties" : {
"name" : { "type" : "string" }
}
},
"homes" : {
"_parent":{ "type" : "person" },
"properties" : {
"views" : { "type" : "long" }
}
}
}
}'
curl -XPUT localhost:9200/test/person/zach/ -d'
{
"name" : "Zach"
}'
curl -XPOST localhost:9200/test/homes?parent=zach -d'
{
"views" : 100
}'
curl -XPUT localhost:9200/test/person/jack/ -d'
{
"name" : "Jack"
}'
curl -XPOST localhost:9200/test/homes?parent=jack -d'
{
"views" : 50
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment