frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

Show HN: ReJot – Database replication framework aimed at developers

https://github.com/rejot-dev/rejot
9•WilcoKruijer•11mo ago
Hi Hacker News! We're Jan & Wilco from ReJot (https://rejot.dev). With ReJot we're building a framework that turns the write-ahead log of your database into an asynchronous communication channel for your services. ReJot enables application developers to define how the database tables they own should be replicated to other databases. Something we wish we had at in our previous job at a large fintech.

There is a gap between building internal (REST) APIs and Kafka (event streaming) to share data between services.

Internal APIs start to break down when you have more than a couple services communicating. Their synchronous nature makes them brittle in a distributed system: failures cascade and latency adds up. Companies operating internal APIs at scale often face challenges like managing implicit schemas and versioning. They also need to write significant amounts of code to implement features like circuit breakers and internal load balancing.

Event streaming addresses these issues by using asynchronous communication, but it also introduces significant drawbacks. Kafka is known for its operational complexity and high cost. Engineers must manage outbox tables, outbox processors, and consumers, which makes the system more difficult to understand and maintain.

ReJot is the middle ground solution that re-uses a database system's write-ahead log as an asynchronous communication channel. The WAL is well-suited to double as an outbox, this has been proven by CDC systems like Debezium. ReJot is a lightweight addition to existing infrastructure, and even re-uses existing (relational) database systems to store messages (temporarily) before sending them to the destination/sink databases.

We're developer focused, as opposed to being infrastructure focused. Much like how developers define the database table schemas they use, we enable developers to say how their data should be published to others in the distributed system. This is done through something we call "Public Schemas", they consist of a schema and a (SQL) query. When an item in the underlying table changes, the query is executed to produce an object conforming to the schema. This data is then forwarded through ReJot, ready to be consumed by a different service using a "Consumer Schema". This is again a simple (SQL) query that contains an INSERT statement. All of this is defined from within the codebase of the application, much like how ORMs or query builders work.

In short, ReJot re-uses your database in two ways: by consuming the WAL, and also by using queries to encapsulate and integrate data. This makes ReJot a good middle-ground between the brittleness of synchronous communication and the complexity of event streaming.

Excited to hear what you think!

Comments

raoulritter•11mo ago
I'm thinking that now with all these agent to agent frameworks this could potentially work for that. If you send off one agent you want them to keep up to date and sync / talk to each-other. Could your solution work for something like A2A by google or similar to enhance the synchronization across the different agents doing their tasks and prevent them from landing in a loop or similar.
WilcoKruijer•11mo ago
I'm not too familiar with how people store the state of AI agents, but I do think there's some opportunity to use ReJot for this use case. Hooking up an agent to ReJot and giving them access to all available Public Schemas could be an interesting way of letting an agent explore and use the data in a distributed system.
jasonthorsness•11mo ago
If the consumers stall, doesn't the WAL have to grow in unbounded fashion? Does it place any backpressure on the writers?
WilcoKruijer•11mo ago
You're right. Since we don't want to put too much pressure on the source database, we do save the (transformed) WAL items in an intermediary database (we call this the event store), so the source can clear its WAL.

This does mean the intermediary database can grow in an unbounded fashion. The use case really determines if this is fine or not. Since our focus right now is on (micro)service communication, we think this is fine in most cases, as the throughput usually is not gigantic.

Since the event store is just a Postgres database, it's easy to set up partitions to only retain data for a certain amount of time. On the near-term roadmap we also have back-fill support which will make it easier to work with shorter retention windows.

Homegrown – An interactive map of every 2025 FBS college football player

https://torch.football/homegrown
1•brockbedard•1m ago•1 comments

Copyright and DMCA Best Practices for Fediverse Operators

https://www.eff.org/deeplinks/2026/04/copyright-and-dmca-best-practices-fediverse-operators
2•Brajeshwar•2m ago•0 comments

The Joy of Folding Bikes

https://blog.korny.info/2026/04/19/the-joy-of-folding-bikes
1•pavel_lishin•3m ago•0 comments

EFF Sues DHS and ICE for Records on Subpoenas Seeking to Unmask Online Critics

https://www.eff.org/press/releases/eff-sues-dhs-and-ice-records-subpoenas-seeking-unmask-online-c...
1•hn_acker•4m ago•0 comments

Twitter API is $100/month. Reddit API is a maze. so we built a free one

https://webmatrices.com/post/twitter-api-is-100-month-reddit-api-is-a-maze-so-we-built-an-mcp-ser...
1•bishwasbh•4m ago•0 comments

Linux application sandboxing – old tech for the future

https://www.dedoimedo.com/computers/linux-sandbox-firejail-xpra.html
1•speckx•6m ago•0 comments

Show HN: Flipbook – scrub through media frame-by-frame

https://flipbook.browserbox.io/
2•keepamovin•7m ago•1 comments

Chrome's New AI Web APIs Are Enabling Hardware Fingerprinting

https://datadome.co/threat-research/how-chromes-new-ai-web-apis-enable-hardware-fingerprinting/
2•azerpas•7m ago•1 comments

Google trend content generation pipeline

https://hyperscale.top/trends.html
1•agharsallah•7m ago•0 comments

Show HN: Quicklog – I used this app to journal for 13 years, now you can too

https://getquicklog.com/
1•ziofill•11m ago•0 comments

German Cabinet Approves IP Address Storage Law to Combat Online Crime

https://www.newsworm.de/news/german-cabinet-approves-ip-address-storage-law-to-combat-online-crime
1•Cider9986•14m ago•0 comments

Apple Mail MCP

https://github.com/s-morgan-jeffries/apple-mail-mcp
3•buibuibui•14m ago•0 comments

SuperMCP: Reddit, Twitter, Trends for AI Tools. Zero API Keys, Just Chrome

https://webmatrices.com/supermcp
1•bishwasbh•15m ago•0 comments

We Gave Claude Opus 4.7 and Kimi K2.6 the Same Workflow Orchestration Spec

https://blog.kilo.ai/p/we-gave-claude-opus-47-and-kimi-k26
2•heymax054•15m ago•0 comments

AI Gives Better Answers Than Google

https://thefinancebuff.com/ai-better-answers-than-google.html
1•kamaraju•15m ago•0 comments

How do developers define their worth when code is written by AI?

https://christianheilmann.com/2026/04/21/how-do-developers-define-their-worth-when-code-is-writte...
1•speckx•16m ago•0 comments

LLM from scratch, part 33 – what I learned from the appendices

https://www.gilesthomas.com/2026/04/llm-from-scratch-33-what-i-learned-from-the-appendices
1•gpjt•16m ago•0 comments

QEMU 11.0 Released with CET Virtualization Support, Native Nitro Enclaves

https://www.phoronix.com/news/QEMU-11.0-Released
1•Brajeshwar•17m ago•0 comments

Ubuntu Rust Coreutils Audit Revealed 113 Issues

https://www.phoronix.com/news/Ubuntu-Rust-Coreutils-Audit
1•mikece•17m ago•0 comments

Grml – Debian based Linux Live system especially for system administrators

https://grml.org/
1•modinfo•18m ago•0 comments

Startups Brag They Spend More Money on AI Than Human Employees

https://www.404media.co/startups-brag-they-spend-more-money-on-ai-than-human-employees/
6•SLHamlet•20m ago•0 comments

No more excuses, it's time to switch to Linux

https://gardinerbryant.com/no-more-excuses-its-time-to-switch-to-linux/
3•abnercoimbre•20m ago•0 comments

Ask HN: In your job with all the AI go-go/execution velocity – are you lonely?

2•abcqwerty9876•21m ago•1 comments

Speeding up agentic workflows with WebSockets in the Responses API

https://openai.com/index/speeding-up-agentic-workflows-with-websockets/
2•xngbuilds•23m ago•0 comments

Moderna starts late-stage trial of bird flu vaccine in US, UK

https://www.reuters.com/legal/litigation/moderna-starts-late-stage-trial-bird-flu-vaccine-us-uk-2...
4•saikatsg•23m ago•0 comments

Humble Raised $24M for a Cabless Truck

https://www.siliconsnark.com/humble-raised-24-million-for-a-cabless-truck-freight-finally-met-its...
3•SaaSasaurus•24m ago•0 comments

Cognitive debt: The hidden risk in AI-driven software development

https://newsletter.getdx.com/p/cognitive-debt-the-hidden-risk-in
3•azhenley•24m ago•0 comments

Alberta Startup Sells No-Tech Tractors for Half Price

https://wheelfront.com/this-alberta-startup-sells-no-tech-tractors-for-half-price/
62•Kaibeezy•24m ago•7 comments

Show HN: We Fixed Code Throughput. Understanding Is Now the Bottleneck

https://blog.jaystuart.dev/stop-paying-your-ai-agent-to-re-learn-your-codebase-every-conversation/
3•Craze0•25m ago•0 comments

World food systems 'pushed to the brink' by extreme heat, UN warns

https://www.theguardian.com/world/2026/apr/22/world-food-systems-extreme-heat-farming-un-report
4•measurablefunc•25m ago•0 comments