As per the influx documentation, the integer can store value between -9023372036854775808
and 9023372036854775807
. but when I am trying to insert 8840681366937690434 it is rounding it up to 8840681366937690000. Can I stop this round up ?
I think you must be inserting the value as a float, make sure you instead add it as a integer to avoid any rounding.
1 Like
Yes… This worked. Thanks !