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
Buffer: Fix error about compressing already compressed ES
When setting `compress gzip` of buffer, and it tries to process
CompressedMessagePackEventStream, the following error occurs.
[error]: xxx unexpected error on reading data
host="xxx" port=xxx error_class=ArgumentError
error="unknown keyword: :packer"
This is caused by the signature unmatch in
c6c6c03.
A possible use case is a two-stage transfer.
Forwarder1(out_forward) -> Forwarder2(in_forward, out_forward) ->
Aggregator(in_forward)
In this case, Forwarder2 should process the data of
`CompressedMessagePackEventStream` as is (i.e. without
decompressing) and re-transfer the data to Aggregator.
Signed-off-by: Daijiro Fukuda <[email protected]>
0 commit comments