-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parser works incorrectly with high-precision points #3054
Comments
Your line protocol syntax is incorrect, please read #2696 |
@KiNgMaR Can you please explain what exactly is incorrect? I follow this patter: |
@Advoskr you are providing a Can you retry your writes without providing the time_precision parameter? |
@beckettsean I have retried my tests without time_precision and it gave me nothing, i still face the same problem. Also, i tried less accurate point, ex. |
@beckettsean I missed a thing. It seems that problem also corresponds to incorrect database deletion. My test performs delete database and create database before writes and it works. I also tried to drop database from web UI. Delete works, but data is incorrect (it doesn't wipe data about serie). When i used another database (newly-created) all worked fine (the data is ok). Also, there is no problem with floating point precision. |
@beckettsean thanks for your responses |
@Advoskr I think the write precision works fine with the line protocol, but the syntax is See the "Epoch and Precision" section on https://influxdb.com/docs/v0.9/concepts/reading_and_writing_data.html |
Hi!
I'm new to InfluxDb and perform analysis on how to use this db engine in our project.
I currently face a very disgusting issue: when i try to write Double precision value to Db i get huge amount of columns which i didn't meant. For example, this HTTP request:
results in creating 1274 columns. Query
select * from MeasurementNet10 limit 10
returns following JSON:and so on, i think you don't need full JSON to understand the problem.
So the question is: is this a bug, or a feature and what precision does Influx provide on floating point values?
The text was updated successfully, but these errors were encountered: