-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Kafka input for filebeat (#30277)
The Kafka input was broken and had 2 issues: A serialization error on filebeat output: Looks like the ack function was put in the `reader.Message.Meta` map by mistake in 20d6038 `Meta` is a `MapStr` type that does not support function values, therefore fails to serialize itself when requested later on output. `ack` was not called for incoming messages: The ack function was never used because it was supposed to be a part of the `beat.Event.Private` and it was not put in there. (cherry picked from commit c2f51de)
- Loading branch information
Showing
3 changed files
with
52 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters