Viewing profile — ciminelli
ciminelli
HN member- Joined
- Wed, Sep 14, 2022, 12:30 AM UTC
- HN karma
- 20
- Public activity
- 11 items
- HN profile
- View on Hacker News ↗
About ciminelli
No profile information was provided.
Recent public activity
-
comment
Comment #38464232
[dead]
- story
- story
-
comment
Comment #35098073
How would you want to actually look at the database diff? Just a summary view of rows that were changed given a certain time period?
-
comment
Comment #35085650
We were looking at tooling for snapshotting production data for testing purposes, that use case is interesting to have the diff view based on changes happening from application act…
-
story
Show HN: Safe Data Changes in PostgreSQL
Hi HN, we're excited to share our open source tool with the community! We previously posted here with the tagline “real-time events for Postgres” [0]. But after feedback from early…
-
comment
Comment #34873771
The trigger will break the message out into chunks of <8k bytes and send them as separate messages with a unique ID and then an EOF once the message is complete. Planning on releas…
-
comment
Comment #34873704
We're working on and looking into a few different solutions right now: 1. Split the payload into chunks of 8k bytes and send them as separate messages to the server (in progress, w…
-
comment
Comment #34838218
No extensions are required since we're using LISTEN/NOTIFY in the triggers! We haven't tested full backwards compatibility with older versions but are planning on doing that soon.
-
comment
Comment #34838177
Yes and great question, right now we are limited to 8000 bytes but are working on an update to handle large payloads via chunking—stay tuned!
-
story
Show HN: Trigger Webhooks from Postgres
We just released a small open-source tool which enables you to fire HTTP requests from Postgres triggers. One of the things we’re using it for now is to send Slack messages when a …