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
{{ message }}
This repository has been archived by the owner on Aug 23, 2023. It is now read-only.
When sending metrics to MetricTank using kafka-mdm with certain msgpack clients, one may get the error
kafka-mdm decode error, skipping message. msgp: attempted to decode type "uint" with method for "int"
This is because it is common practice in many msgpack clients to use int and uint interchangeably (for example in msgpack-python positives are encoded as uint and negatives as int).
When sending metrics to
MetricTank
usingkafka-mdm
with certain msgpack clients, one may get the errorThis is because it is common practice in many
msgpack
clients to useint
anduint
interchangeably (for example inmsgpack-python
positives are encoded asuint
and negatives asint
).Fortunately, this issue was seems also to be fixed in newer versions of
tinylib/msgp
so only an update is needed.The text was updated successfully, but these errors were encountered: