-
Notifications
You must be signed in to change notification settings - Fork 111
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
Impossible to set precision to micro seconds (>=v1.8.0) #38
Comments
InfluxDB server checks in The client checks by |
InfluxDB API reference says |
* use same verification introduced to InfluxDB server at version 1.8.0 * SetPrecision() now replaces "" by default "ns" * fixes influxdata#38
Same issue here, it actually broke one of my application. Can somebody from the team take a look ? |
@jsternberg @docmerlin May anybody take a look? |
I am also experiencing this issue after an unexpected reboot of our server. Is there any solution for this? |
@TMarietta Do you really need this specific precision? If not, just use ns precision. Nevertheless someone of the InfluxDB team should take a look at this PR. |
No. We tried ms and that seems to work fine for our application. Thanks for following up. |
At least since InfluxDB server v1.8.0 precision in client cannot be set to micro seconds. Using
"u"
, validation fails inNewBatchPoints()
, using"us"
,Write()
fails:In influxdata/influxdb@275b02e a verification rejecting write requests with precision
"us"
was added.The text was updated successfully, but these errors were encountered: