Elastic 8.17 and _source

I was reading through 8.17.0 release note. first thing it says _source is no longer available without subscription.

is this means if you create index it won't have _source and this means not able to update, update_by_query and reindex? is my understanding correct?

https://www.elastic.co/guide/en/elasticsearch/reference/8.17/release-notes-8.17.0.html

https://www.elastic.co/guide/en/elasticsearch/reference/8.17/mapping-source-field.html#synthetic-source

1 Like

It's synthetic source, not the _source field itself. So you can still reindex, update by query, etc...

But if you are using explicitly this "mode": "synthetic" in your mapping, then there's a modification. If you are not, there is no change.

1 Like

ok, great I check few template that I have setup. and none of them has this mode. :face_exhaling: