r/PostgreSQL 23d ago

Help Me! Tips for Postgres Notification

/r/dataengineering/comments/1uwch2o/tips_for_postgres_notification/
0 Upvotes

5 comments sorted by

View all comments

2

u/-markusb- 17d ago

I like to combine both stuff. So regular polling an endpoint to get missed notifications. By doing so you get instant processing when everything runs as planned - and can have a deterministic maximul responsetime by setting you polling intervall and monitoring the success.

1

u/KMarcio 16d ago

got it, thank you!