event-store-symfony-bundle
event-store-symfony-bundle copied to clipboard
Event Store Symfony Bundle
I'm trying to enable SingleStreamStrategy to fix performance issues in projections (see https://github.com/proophsoftware/es-emergency-call/issues/5 for details). For now I'm unable to get it working. EventStore still makes one stream per aggregate...
In production, `bin/console event-store:projection:run` command may be executed during a long time, we should be able to kill it after a given time in the same way *Symfony Messenger* consumers...
Hey there, When I try to install the vendor through Composer to my Symfony 4.2 project: ```bash composer require prooph/event-store-symfony-bundle ``` Then it throws an error due to the services...
In this excerpt I believe the `prooph_event_store.projection_managers` was supposed to contain the projection managers names, but currently they're prepended with `prooph_event_store`: https://github.com/prooph/event-store-symfony-bundle/blob/5f0aeca45ae79fecd02416f3165fd062131aa7de/src/DependencyInjection/ProophEventStoreExtension.php#L64-L80 That parameter is only used on the `ProjectionNamesCommand`,...
I just encountered an issue where one of my projection was in an invalid state after being interrupted during previous run. The state of the projection was not saved to...
- [ ] [Add projections via configuration](https://github.com/prooph/event-store-symfony-bundle/pull/11) - [ ] How to reuse doctrine connection for PdoEventStore - [ ] How to set up bus-bridge ## Example bus bridge from...
We should think about adding a recipe for the bundle to the [recipes contrib repo](https://github.com/symfony/recipes-contrib)
Currently playing around with the Symfony DataCollector. To get "real" debugging, would it be an option to extend the event-store with a logger? (could be nulllogger by default, so no...
As discussed on Gitter: At the moment the event-store implementation to be used needs to be configured by the users as a "Userland Service" Better: Extend `Configuration` class with the...
``` your_snapshot_plugin: class: Prooph\Snapshotter\SnapshotPlugin factory: [Acme\EventStoreSnapshotPluginFactory, createPlugin] arguments: ['@prooph_service_bus.your_command_bus'] tags: - { name: prooph_event_store.your_event_store.plugin } ``` From gitter: (@SandroKeil) @itcraftsmanpl You can register the snapshotter as a plugin https://github.com/prooph/service-bus-symfony-bundle/blob/master/doc/getting_started.md