Hi,
When querying the database, Influx changes the formatting of field values depending on the magnitude of the value: if the value is less than one million it is displayed as a standard floating point number; once the value hits one million, it is displayed using scientific notation.
For example:
SELECT max_eImport,max_eExport,avg_Pac,avg_VAac FROM usagemeter WHERE __devhash='F09A5F58294B2072C9425310E1BF166C' AND time >= '2017-04-09 22:00:00' limit 10
name: usagemeter
time max_eImport max_eExport avg_Pac avg_VAac
---- ----------- ----------- ------- --------
2017-04-09T22:00:00Z 999847.168 385.6 -34656.68999999999 -37979.73333333333
2017-04-09T22:30:00Z 999869.12 385.6 -43978.59666666666 -46754.95
2017-04-09T23:00:00Z 999886.72 385.6 -36101.23333333332 -39262.423333333325
2017-04-09T23:30:00Z 999928.32 385.6 -83579.21666666666 -85375.02666666667
2017-04-10T00:00:00Z 999979.072 385.6 -105082.14033333334 -106872.97666666665
2017-04-10T00:30:00Z 1.000030016e+06 385.6 -100663.81033333334 -102459.67666666667
2017-04-10T01:00:00Z 1.000049984e+06 385.6 -38315.16333333333 -41279.11
2017-04-10T01:30:00Z 1.0000672e+06 385.6 -34808.713333333326 -37985.78666666667
2017-04-10T02:00:00Z 1.000098816e+06 385.6 -64623.396551724145 -66798.20689655172
2017-04-10T02:30:00Z 1.000129472e+06 385.6 -60940.920000000006 -63015.34999999999
There appear to be enough significant digits in the field value to make the use of scientific notation unnecessary.
Is this threshold configurable?
(Note that it doesn’t matter if the output format is “column”, “csv” or “json”, the numeric formatting is always the same.)
Thanks
Jeremy Begg