infuxdb 2.2具有' m'数字之后
我注意到我在infuxdb 2.2中的某些价值具有附加的“ m”字符。有没有办法阻止这种情况发生?我将我的价值作为浮子写入数据库。在我的数据集中看似随机的值似乎会发生这种情况。但是,当输入新数据时,具有“ M”的人将其保留。没有“ M”的值似乎永远不会获得“ M”。
我正在使用Python 3 InfluxDB客户端将数据写入数据库。这是作为批量写入数据库的行。
此图片从左到右显示PackV,PackC和Packr。
这是查询设置。上图中的所有三个都相同。
I have noticed that some of my values in InfluxDB 2.2 have an 'm' character appended to their value. Is there a way to stop this from happening? I am writing my values as floats to the database. This seems to occur for seemingly random values in my dataset. But, the ones that have an 'm' keep it as new data is entered. The values that don't have an 'm' don't seem to ever gain the 'm'.
I am using the python 3 InfluxDB client to write data to the database. Here are the lines that are being written to the database as a batch.
This picture is showing packV, packC, and packR from left to right.
Here is the query setup. It is the same for all three in the above picture.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
m
是milli
的SI符号,意思是1E-3
。例如,0.023736322531476617
将在InfluxDB的UI中显示为237M
。m
is the SI symbol ofmilli
, which means1e-3
. For example,0.023736322531476617
will be displayed as23.7m
in the UI of influxdb.