Files
backstage/.changeset/slow-gorillas-thank.md
T
Patrik Oldsberg 5c728ee642 changesets: changesets for new events backend bus
Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
2024-09-18 10:47:36 +02:00

684 B

@backstage/plugin-events-backend
@backstage/plugin-events-backend
patch

The events backend now has its own built-in event bus for distributing events across multiple backend instances. It exposes a new HTTP API under /bus/v1/ for publishing and reading events from the bus, as well as its own storage and notification mechanism for events.

The backing event store for the bus only supports scaled deployment if PostgreSQL is used as the DBMS. If SQLite or MySQL is used, the event bus will fall back to an in-memory store that does not support multiple backend instances.

The default EventsService implementation from @backstage/plugin-events-node has also been updated to use the new events bus.