Hi all,
I’m struggeling with persistence in rules, but can’t find the reason why it is failing. In short (as in title): calling maximumSince returns a value, but averageSince doesn’t.
openHAB version: 3.3.0 release (offical docker image), using both MapDB and JDBC (MariaDB).
My item:
Number Balkon_Sensor_Wetter_Luftfeuchtigkeit "Luftfeuchtigkeit" <humidity> (StoreFiveMinutes) {channel="deconz:humiditysensor:homeserver:BalkonMultisensorLuftfeuchtigkeit:humidity"}
My test rule:
rule "Testing average and maximum"
when
Time cron "*/30 * * * * ?"
then
logInfo("myRule", "maximum {}", Balkon_Sensor_Wetter_Luftfeuchtigkeit.maximumSince(now.minusMinutes(10), "jdbc").state)
logInfo("myRule", "average {}", Balkon_Sensor_Wetter_Luftfeuchtigkeit.averageSince(now.minusMinutes(10), "jdbc"))
end
The output:
18:33:00.037 [INFO ] [org.openhab.core.model.script.myRule ] - maximum 38.59
18:33:00.049 [INFO ] [org.openhab.core.model.script.myRule ] - average null
Any idea what I’m doing wrong?
Edit: According to this thread it may be a logging issue, but calling toString() results in:
18:42:30.816 [ERROR] [.internal.handler.ScriptActionHandler] - Script execution of rule with UID 'Testregel-1' failed: cannot invoke method public java.lang.String org.openhab.core.library.types.DecimalType.toString() on null in Testregel
You could check the timestamp of the ‘max since’ result returned, as well. I’m thinking max since might return a value from some earlier time, while no records exist for the designated time period. Just to make sure you see what you expect there.
Please use log:set DEBUG org.openhab.persistence.jdbc.internal.JdbcPersistenceService on the karaf console and show what is actually returned. You can use DEFAULT to disable logging later.
It’s interesting that the timestamps in my setup are local time, while they seem to be UTC in your example. I’m using JDBC with mariadb backend.
That’s the explanation: there are no values returned. In this case the maximum is the current value. But the average needs at least two values to calculate it. The average calculation is integrating over all values, calculating the sum of (value2 + value1)/2 * (timestamp2-timestamp1) and dividing that by now-firstTimestamp. If you have only the current value, this fails.
I already edited my post above: in my setup the dates are stored in local time, not UTC like in your example. But this seems to be an issue with the JDBC add-on, I can’t comment on that.
I changed the timezone of the MariaDB docker container (which was UTC), now it works! Thank you really much!
Still - shouldn’t there be any explanation in the persistence article that if there are no matching values, maximumSince returns current value, while averageSince returns null?