-
Notifications
You must be signed in to change notification settings - Fork 133
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
Cannot write nulls to the database #159
Comments
Currently, that's intended: you simply cannot store null values. (I've stumbled upon this myself, see influxdata/influxdb#6150). For the moment, I recommend using something If you really need this in several places and projects, we could discuss an |
It's more that I actively want to overwrite existing values with nulls.
Some values that come into the database are invalid data on analysis, and
I'm looking for a way to remove them or to mark them as invalid.
|
I see. Maybe it's easier to store raw and analyzed data in different measurements (that is what I do)? |
I have that (of sorts), but it would still require recalculation of the whole (quite large) derived measurement when the algorithm changes for any one of the fields. But if InfluxDB doesn't allow for it, there's nothing much the ruby interface can do. |
Indeed. Maybe influxdata/influxdb#6150 is too broad and you should to file a different issue. |
If I try to pass a point like this to write_points, I get an error (the payload generator generates
GPS.city=
)The text was updated successfully, but these errors were encountered: