rest.asciidoc 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. [[breaking_60_rest_changes]]
  2. === REST changes
  3. ==== Unquoted JSON
  4. In previous versions of Elasticsearch, JSON documents were allowed to contain unquoted field names.
  5. This feature was removed in the 5.x series, but a backwards-compatibility layer was added via the
  6. system property `elasticsearch.json.allow_unquoted_field_names`. This backwards-compatibility layer
  7. has been removed in Elasticsearch 6.0.0.
  8. ==== Duplicate Keys in JSON, CBOR, Yaml and Smile
  9. In previous versions of Elasticsearch, documents were allowed to contain duplicate keys. Elasticsearch 6.0.0
  10. enforces that all keys are unique. This applies to all content types: JSON, CBOR, Yaml and Smile.
  11. ==== Content-Type Auto-detection
  12. In previous versions of Elasticsearch, having a proper Content-Type for the data in a request was not enforced.
  13. Elasticsearch 6.0.0 enforces that all requests with a body must have a supported Content-Type and this type will
  14. be used when parsing the data.
  15. When using the `source` query string parameter, the `source_content_type` parameter must also be specified with
  16. the media type of the source.
  17. ==== Boolean API parameters
  18. All REST APIs parameters (both request parameters and JSON body) support providing boolean "false" as the
  19. value `false` and boolean "true" as the value `true`. All other values will raise an error.
  20. ==== Analyze API changes
  21. The deprecated request parameters and plain text in request body has been removed. Define parameters in request body.
  22. ==== Indices exists API
  23. The `ignore_unavailable` and `allow_no_indices` options are no longer accepted
  24. as they could cause undesired results when their values differed from their
  25. defaults.
  26. ==== `timestamp` and `ttl` in index requests
  27. `timestamp` and `ttl` are not accepted anymore as parameters of index/update
  28. requests.
  29. ==== Refresh requests with one or more shard failures return HTTP 500 response instead of 200
  30. Refresh requests that are broadcast to multiple shards that can have one or more
  31. shards fail during the request now return a 500 response instead of a 200
  32. response in the event there is at least one failure.
  33. ==== Delete by Query API requires an explicit query
  34. In previous versions of Elasticsearch, delete by query requests without an explicit query
  35. were accepted, match_all was used as the default query and all documents were deleted
  36. as a result. From version 6.0.0, delete by query requests require an explicit query.
  37. === DELETE document calls now implicitly create the type
  38. Running `DELETE index/type/id` now implicitly creates `type` with a default
  39. mapping if it did not exist yet.
  40. ==== Indices information APIs
  41. Previously it was possible to execute `GET /_aliases,_mappings` or `GET
  42. /myindex/_settings,_alias` by separating mulitple types of requests with commas
  43. in order to retrieve multiple types of information about one or more indices.
  44. This comma-separation for retrieving multiple pieces of information has been
  45. removed.. `GET /_all` can be used to retrieve all aliases, settings, and
  46. mappings for all indices. In order to retrieve only the mappings for an index,
  47. `GET /myindex/_mappings` (or `_aliases`, or `_settings`).