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•9mo 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•9mo 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•9mo 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•9mo ago
If the consumers stall, doesn't the WAL have to grow in unbounded fashion? Does it place any backpressure on the writers?
WilcoKruijer•9mo 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.

Neural Thickets

https://thickets.mit.edu/
1•jasondavies•31s ago•0 comments

Papers: A minimal AI/ML research reader

https://github.com/daneb/papers
1•danebalia•45s ago•1 comments

Show HN: Monet – Claude Code Multisession Management

https://www.monetworkspace.com/
1•jeffrwells•2m ago•0 comments

Lies I was Told About Collaborative Editing, Part 2: Why we don't use Yjs

https://www.moment.dev/blog/lies-i-was-told-pt-2
1•litacho1•2m ago•0 comments

Microsoft Copilot Health Centralizes Personal Medical Records

https://reclaimthenet.org/microsoft-copilot-health-centralizes-personal-medical-records
2•uyzstvqs•2m ago•0 comments

What Happened at FOSDEM 2026

https://www.i-programmer.info/news/99-professional/18729-what-happened-at-fosdem-2026.html
1•aquastorm•3m ago•0 comments

'We don't need Ukraine's help' – Trump rebuffs Zelensky's drone defense offer

https://kyivindependent.com/trump-ukraine-drone-defenses/
1•inaros•3m ago•0 comments

APIfy: Generate production-ready REST APIs from plain language

https://github.com/jetywolf/APIfy
1•jetywolf•4m ago•1 comments

Amazon Will Use Cerebras' Giant Chips to Help Run AI Models

https://www.bloomberg.com/news/articles/2026-03-13/amazon-will-use-cerebras-giant-chips-to-help-r...
2•inaros•5m ago•0 comments

Ask HN: What's your biggest pain point when joining a new developer team?

2•KevStatic•9m ago•1 comments

Show HN: Tiny macOS app that adds a facecam bubble to screen recordings

https://github.com/backnotprop/CamBubble
2•ramoz•10m ago•0 comments

Atoms, Travis Kalanick's new company

https://atoms.co/vision
3•sethbannon•10m ago•0 comments

Atoms

https://atoms.co/
3•sethbannon•11m ago•0 comments

How to Bring Starter Homes Back from Extinction

https://www.bloomberg.com/opinion/articles/2026-03-13/how-to-bring-starter-homes-back-from-extinc...
2•toomuchtodo•11m ago•0 comments

Stanford researchers report first recording of a blue whale's heart rate (2019)

https://news.stanford.edu/stories/2019/11/first-ever-recording-blue-whales-heart-rate
2•eatonphil•12m ago•0 comments

It Took Me 30 Years to Solve This VFX Problem – Green Screen Problem [video]

https://www.youtube.com/watch?v=3Ploi723hg4
2•yincrash•12m ago•0 comments

Lessons for software developers from 1970s mainframe programming

https://web.archive.org/web/20171025203854/https://insights.hpe.com/articles/4-lessons-for-modern...
2•ohjeez•13m ago•0 comments

Elon Musk says xAI must be 'rebuilt' as co-founder exodus continues

https://www.cnbc.com/2026/03/13/elon-musk-xai-co-founders-spacex-ipo.html
4•inaros•13m ago•0 comments

Practical dependency tracking for Python function calls

https://amakelov.github.io/mandala/blog/02_deps/
2•KerrickStaley•15m ago•0 comments

A calmer interface for a product in motion

https://linear.app/now/behind-the-latest-design-refresh
2•tjwds•16m ago•0 comments

Sigma's New Rice Company Is Less About Rice and More About Aizu

https://petapixel.com/2026/03/12/sigmas-new-rice-company-is-less-about-rice-and-more-about-aizu/
1•lastofthemojito•20m ago•0 comments

ICE agents reveal daily arrest quotas and surveillance app in court testimony

https://www.theguardian.com/us-news/2026/mar/13/ice-agent-court-testimony-oregon
5•mitchbob•20m ago•0 comments

Everything's Casino

https://www.joanwestenberg.com/everythings-casino/
2•alcazar•22m ago•0 comments

Yet another Valve lawsuit on loot boxes

https://www.windowscentral.com/gaming/pc-gaming/steams-valve-responds-to-lawsuit-from-new-york-at...
2•s3r3nity•23m ago•0 comments

Account regional namespaces for Amazon S3 general purpose buckets

https://aws.amazon.com/blogs/aws/introducing-account-regional-namespaces-for-amazon-s3-general-pu...
2•timoth•26m ago•1 comments

How we built a prompt optimization agent

https://www.extend.ai/resources/how-we-built-composer
3•kbyatnal•30m ago•0 comments

The Great AI Silicon Shortage

https://newsletter.semianalysis.com/p/the-great-ai-silicon-shortage
5•akyuu•31m ago•0 comments

H-1B Visa employers database goes offline, key public records disappear

https://timesofindia.indiatimes.com/technology/tech-news/h-1b-visa-employers-database-goes-offlin...
3•alexfromapex•32m ago•1 comments

AMUX – Tmux and Tailscale powered offline-first agent multiplexer

https://amux.io/
2•Beefin•34m ago•0 comments

Digg Is Gone Again

https://digg.com/
6•hammerbrostime•34m ago•4 comments