Blk_update_request error when trying to write to Postgres

Hi there!

This is definetly a new one, here’s some tips for debugging this.

  • You mentioned health checks are fine for the app, can you verify health checks for your DB too? Is the disk full?
  • Can you double check your nodejs app is using your postgres? Sometimes node apps have a fallback to SQLite so if that’s the case you’re actually writing to the node app file system instead of PG. Try to connect to your postgres directly and see if data was written there.
  • The second logs block you sent seems like a NodeJS file system error (looking at readFileSync) so doesn’t seem postgres related, can you try verifying another endpoint of your app that it wasn’t just that specific endpoint that errored?

Hope these might help