-
Notifications
You must be signed in to change notification settings - Fork 437
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot use data stream with time_series mode #723
Comments
Agreed! We needed to add an elasticsearch ingest pipeline to strip the id, but for other reasons. Not ideal. Giving us a a connector configuration option to opt out of the id would be great. I don't know yet if our pipeline to strip the id will work with index.mode set to time_series. |
I ended up forking the repo and adding an extra setting allowing to not set ID when creating the index request. jpthomasset@7b44693 And then building the image is done with
And you can then add a
|
When using a data stream with
"index.mode": "time_series"
the connector fails to index data as it adds the document id to the index request and this is not supported.Error:
Solution would be to allow to unset id or ignore id when creating the IndexRequest.
A potential workaround would be to merge this PR #679
The text was updated successfully, but these errors were encountered: