We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e95fe3 commit 603cc9cCopy full SHA for 603cc9c
Changelog.rst
@@ -5,6 +5,8 @@ Changelog
5
6
6.2.0 (dev)
7
-----------
8
+ * ``_routing`` in bulk action has been deprecated in ES. Introduces a breaking change
9
+ if you use ``routing`` as a field in your documents.
10
11
6.1.1 (2018-01-05)
12
------------------
docs/helpers.rst
@@ -28,7 +28,7 @@ in several formats. The most common one is the same as returned by
28
'_index': 'index-name',
29
'_type': 'document',
30
'_id': 42,
31
- '_parent': 5,
+ 'routing': 5,
32
'pipeline': 'my-ingest-pipeline',
33
'_source': {
34
"title": "Hello World!",
@@ -43,7 +43,7 @@ from the doc and use the rest as the document data:
43
44
{
45
"_id": 42,
46
- "_parent": 5,
+ "routing": 5,
47
48
"body": "..."
49
}
0 commit comments