I have the following function:
CREATE OR REPLACE FUNCTION \"Sensor\".\"PersistTelemetry\"(sid character varying, measurement character varying, val numeric, ts c
The log messages indicate that there's no error on the PG end. The transaction sequence numbers (14757-15/16/17
) indicate there are no other queries called in the session, so it smells like some bad behavior on the application-side. Could be that you have auto-commit turned off, and you close the connection without committing. To address that, you would need to add a db.session.commit
Disclosure: I work for EnterpriseDB (EDB)