Open
Description
Following #116689 we should test the following flow:
-
Create 8.latest cluster
-
Create an index where Synthetic _source is used
PUT demosourcesyn
{
"mappings": {
"_source": {
"mode": "synthetic"
}
}
}
- Index a document
POST demosourcesyn/_doc
{
"field": "test"
}
-
Check the settings in
GET demosourcesyn?include_defaults=true
-
Upgrade to 9.x
-
Index a document
POST demosourcesyn/_doc
{
"field": "test2"
}
It must succeed
- Check the settings in
GET demosourcesyn?include_defaults=true
It must still index documents with Synthetic _source