Message DB: Event Store and Message Store for PostgreSQL
blog.eventide-project.org
Message DB: Event Store and Message Store for PostgreSQL
1–10 of 104 posts
Re: Message DB: Event Store and Message Store for PostgreSQL
#2Re: Message DB: Event Store and Message Store for PostgreSQL
#3Building on top of generic Postgres using a simple service is pretty neat but without the extra client libraries it’s hard to see a bright future.
The npm module doesn’t look like it actually does anything besides unzip and run the dB setup code at the moment so it’s definitely early days for them. But with a few basic client libraries that can actually do the work of publishing and subscribing to messages, this will be a pretty neat tool.
I’m going to have to watch how this develops.
Re: Message DB: Event Store and Message Store for PostgreSQL
#4Re: Message DB: Event Store and Message Store for PostgreSQL
#5Re: Message DB: Event Store and Message Store for PostgreSQL
#6Re: Message DB: Event Store and Message Store for PostgreSQL
#7On behalf of a technology team, looking to incorporate a messaging platform to our landscape: I am curious to understand the motivation behind implementing a messaging system on top of a database technology. There are robust offerings both for small scale and large throughput systems. What are the benefits of this project over other implementations(RabbitMQ, Kafka, Celery, ActiveMQ, ZeroMQ, SNS/SQS)?
Atomic changes (rollback can undo any unprocessed messages)
Fewer moving parts, if you already need a DB
Easily query state of queues and messages with famailar SQL
Re: Message DB: Event Store and Message Store for PostgreSQL
#8In Elixir-land, there is https://github.com/commanded/eventstore (which AFAICT is closely tied to the Commanded CQRS/RS framework https://github.com/commanded/commanded)
Re: Message DB: Event Store and Message Store for PostgreSQL
#9Re: Message DB: Event Store and Message Store for PostgreSQL
#10Looks interesting but needs a few more language libraries to demonstrate broader utility outside of just Ruby projects. Building on top of generic Postgres using a simple service is pretty neat but without the extra client libraries it’s hard to see a bright future. The npm module doesn’t look like it actually does anything besides unzip and run the dB setup code at the moment so it’s definitely early days for them.…