We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The line protocol in InfluxDB 2 adds support for unsigned integers (suffix 'u'). V2 compatibility write API in InfluxDB 1.8 doesn't handle this.
Steps to reproduce: curl -v -XPOST "localhost:8086/api/v2/write?bucket=test" --data-raw "test f=3u"
curl -v -XPOST "localhost:8086/api/v2/write?bucket=test" --data-raw "test f=3u"
Expected behavior: No error
Actual behavior:
< HTTP/1.1 400 Bad Request < Content-Type: application/json < Request-Id: a4c703d5-808b-11ea-8007-d66d6d2aa003 < X-Influxdb-Build: OSS < X-Influxdb-Error: unable to parse 'test f=3u': invalid number < X-Influxdb-Version: 1.8.0 < X-Request-Id: a4c703d5-808b-11ea-8007-d66d6d2aa003 < Date: Fri, 17 Apr 2020 09:13:04 GMT < Content-Length: 56 < {"error":"unable to parse 'test f=3u': invalid number"} * Connection #0 to host localhost left intact
Environment info:
The text was updated successfully, but these errors were encountered:
see also vectordotdev/vector#2868
Sorry, something went wrong.
No branches or pull requests
The line protocol in InfluxDB 2 adds support for unsigned integers (suffix 'u'). V2 compatibility write API in InfluxDB 1.8 doesn't handle this.
Steps to reproduce:
curl -v -XPOST "localhost:8086/api/v2/write?bucket=test" --data-raw "test f=3u"
Expected behavior:
No error
Actual behavior:
Environment info:
The text was updated successfully, but these errors were encountered: