Alexey Zimarev
Alexey Zimarev
The `ResolvedEvent.Event` property is not nullable, so we assume that the property value is never null. However, a catch-up subscription to a projected stream (i.e. category stream) with links to...
Catch-up subscriptions have the ability to tweak the client operation options: ```csharp public Task SubscribeToStreamAsync( ... Action? configureOperationOptions = null, ... { EventStoreClientOperationOptions operationOptions = this.Settings.OperationOptions.Clone(); if (configureOperationOptions != null)...
Projection output streams should not be replicated as the projection might've been migrated manually and produce the conflicting stream. Also, ESDB is not happy when someone writes to the result...
For continuous replication (online backup or testing the cloud on prod data), it would be better to use a catch-up subscription, which runs continuously, rather than end to the end...
The HTTP transform is fast enough to cope with a single writer, or even concurrence writers if it is hosted close to the replicator.
Add a config map for a self-signed certificate CA Add the certificate CA load if provided
The restart after reading to the end of `$all` is configurable in code, but not in the configuration. It would be nice to provide users with the ability to read...
When generating CRDs code for .NET the generated code has no import for the correct `KubernetesResource` base class, as well as using the `CrdsResourceType` attribute, which is nowhere to be...
Check this https://github.com/EventStore/EventStore/issues/4272#issuecomment-2195486815 > After disabling readinessProbe, it works. So seems when EVENTSTORE_RUN_PROJECTIONS is set to All the readinessProbe is never executed (maybe the endpoint /health/live is waiting for something...