-
Notifications
You must be signed in to change notification settings - Fork 25.5k
Closed
Closed
Copy link
Labels
:Data Management/Ingest NodeExecution or management of Ingest Pipelines including GeoIPExecution or management of Ingest Pipelines including GeoIP>bugTeam:Data ManagementMeta label for data/management teamMeta label for data/management team
Description
Elasticsearch version (bin/elasticsearch --version
): 7.11.0+
Steps to reproduce:
POST _ingest/pipeline/_simulate
{
"pipeline": {
"processors": [
{
"set": {
"field": "foo2",
"copy_from": "foo"
}
},
{
"set": {
"field": "foo2.bar",
"value": "changed"
}
}
]
},
"docs": [
{
"_source": {
"foo": {
"bar": "baz"
}
}
}
]
}
produces:
"_source" : {
"foo2" : {
"bar" : "changed"
},
"foo" : {
"bar" : "changed"
}
}
which shows that foo2
is linked to the content of foo
and cannot be changed independently.
Metadata
Metadata
Assignees
Labels
:Data Management/Ingest NodeExecution or management of Ingest Pipelines including GeoIPExecution or management of Ingest Pipelines including GeoIP>bugTeam:Data ManagementMeta label for data/management teamMeta label for data/management team