Closed mvysny closed 2 years ago
1280/256=5 which means SQLITE_BUSY. This can happen when the sqlite database is read by Grafana and at the same time it's attempted to be written to by us.
1280/256=5
PRAGMA busy_timeout = 1000; could help?
PRAGMA busy_timeout = 1000;
Seems to be fixed by the PRAGMA statement. Closing as fixed.
Similar issue can be seen in Grafana+sqlite plugin. Filed a bug: https://github.com/fr-ser/grafana-sqlite-datasource/issues/99
1280/256=5
which means SQLITE_BUSY. This can happen when the sqlite database is read by Grafana and at the same time it's attempted to be written to by us.PRAGMA busy_timeout = 1000;
could help?