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
Integer blocks that were run length encoded could produce the wrong
value when read back out because the deltas were not zig zag decoded
before scaling the final value. If the deltas were negative, as would
be seen in a counter that decrements by a constant value, the results
would be random with som negative and positive values.
Fixes#7391
Integer blocks that were run length encoded could produce the wrong
value when read back out because the deltas were not zig zag decoded
before scaling the final value. If the deltas were negative, as would
be seen in a counter that decrements by a constant value, the results
would be random with som negative and positive values.
Fixes#7391
In some cases values in base and values that was written are different.
System: influxdb 1.0.0-1, Ubuntu 14.04.3 LTS.
Steps to reproduce:
Use this script
Script constantly writes the same data to influx. The pattern of data is odd, but it causing the problem.
Expected data from gist example.
network,host=host rx=7094i 1474460700
network,host=host rx=4472i 1474460760
network,host=host rx=1850i 1474460820
Actual output of the script:
....
lines count 1849. duration 68
lines count 1853. duration 68
lines count 1857. duration 68
stopping. found bad value -9716
'name': 'network',
'values': [['2016-09-21T12:25:00Z', 'host', 7094],
['2016-09-21T12:26:00Z', 'host', -9716],
['2016-09-21T12:27:00Z', 'host', 12337]]}]}]}
The text was updated successfully, but these errors were encountered: