OpenSearch/docs
Martijn van Groningen 4393939f5e inner_hits: Nested parent field should be resolved based on the parent inner hit definition, instead of the nested parent field in the mapping.
The behaviour is better in the case someone has multiple levels of nested object fields defined in the mapping and like to define a single inner_hits definition that is two or more levels deep.

If someone wants inner hits on a nested field that is 2 levels deep the following would need to be defined:

```
{
  ...
  "inner_hits" : {
     "path" : {
        "level1" : {
            "inner_hits" : {
               "path" : {
                  "level2" : {
                     "query" : { .... }
                  }
               }
            }
        }
     }
  }
}
```

With this change the above can be defined as:

```
{
  ...
  "inner_hits" : {
     "path" : {
        "level1.level2" : {
            "query" : { .... }
        }
     }
  }
}
```

Closes #9251
2015-03-16 16:31:03 -07:00
..
community Docs: added searchkick 2015-01-26 21:58:36 +01:00
groovy-api Updated groovy docs to point to the new groovy repo 2014-05-14 12:08:02 +02:00
java-api [DOCS] update JAVA API with aggregation changes 2015-03-05 11:09:49 +00:00
javascript Updated copyright years to include 2015 2015-02-28 03:18:45 +01:00
perl Docs: Minor test change to Perl docs 2015-02-28 17:19:55 +01:00
python Updated copyright years to include 2015 2015-02-28 03:18:45 +01:00
reference inner_hits: Nested parent field should be resolved based on the parent inner hit definition, instead of the nested parent field in the mapping. 2015-03-16 16:31:03 -07:00
resiliency Updated the resiliency status page for v1.4.0 2015-03-03 19:50:13 +01:00
river [DOCS] Fixed typo 2013-10-05 17:10:30 +02:00
ruby Updated copyright years to include 2015 2015-02-28 03:18:45 +01:00
README.md [DOCS] various docs fixes 2014-01-23 10:52:13 +01:00

README.md

The Elasticsearch docs are in AsciiDoc format and can be built using the Elasticsearch documentation build process

See: https://github.com/elasticsearch/docs