diff --git a/lib/logstorage/values_encoder.go b/lib/logstorage/values_encoder.go index 691e636bd..659849c7a 100644 --- a/lib/logstorage/values_encoder.go +++ b/lib/logstorage/values_encoder.go @@ -1129,6 +1129,7 @@ func (vd *valuesDict) unmarshal(src []byte) ([]byte, error) { } src = tail + // Do not use bytesutil.InternBytes(data) here, since it works slower than the string(data) in prod v := string(data) vd.values = append(vd.values, v) }