update docs and bunp changelog

This commit is contained in:
Nick Lang
2018-03-04 15:18:25 -08:00
parent 4e95fe320d
commit 603cc9cd17
2 changed files with 4 additions and 2 deletions
+2
View File
@@ -5,6 +5,8 @@ Changelog
6.2.0 (dev) 6.2.0 (dev)
----------- -----------
* ``_routing`` in bulk action has been deprecated in ES. Introduces a breaking change
if you use ``routing`` as a field in your documents.
6.1.1 (2018-01-05) 6.1.1 (2018-01-05)
------------------ ------------------
+2 -2
View File
@@ -28,7 +28,7 @@ in several formats. The most common one is the same as returned by
'_index': 'index-name', '_index': 'index-name',
'_type': 'document', '_type': 'document',
'_id': 42, '_id': 42,
'_parent': 5, 'routing': 5,
'pipeline': 'my-ingest-pipeline', 'pipeline': 'my-ingest-pipeline',
'_source': { '_source': {
"title": "Hello World!", "title": "Hello World!",
@@ -43,7 +43,7 @@ from the doc and use the rest as the document data:
{ {
"_id": 42, "_id": 42,
"_parent": 5, "routing": 5,
"title": "Hello World!", "title": "Hello World!",
"body": "..." "body": "..."
} }