You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can't say if this is a bug because I don't really know the intent of the code. It seems that _bulk is being used in order to send multiple events to ES.
One thing I noticed is that the endpoint used is not _bulk for the configured index but at the ES app root. The index endpoint is preferred: /{index}/_bulk or {index}/{type}/_bulk instead of /_bulk
\r\n is being used in the payload which is not allowed except for delimiting records.
It could be that a recent ES version changed the format but the docs don't specify a required version. The payload seems all wrong for the bulk API.
The text was updated successfully, but these errors were encountered:
I can't say if this is a bug because I don't really know the intent of the code. It seems that _bulk is being used in order to send multiple events to ES.
One thing I noticed is that the endpoint used is not _bulk for the configured index but at the ES app root. The index endpoint is preferred: /{index}/_bulk or {index}/{type}/_bulk instead of /_bulk
\r\n is being used in the payload which is not allowed except for delimiting records.
It could be that a recent ES version changed the format but the docs don't specify a required version. The payload seems all wrong for the bulk API.
The text was updated successfully, but these errors were encountered: