I’m trying to copy the events from one eventstore server to another. I’m doing this this via the node client, by subscribing to the $all projection, and filtering the events I need, and then writing them as they come in.
I’m doing this on a very powerful EC2 instance.
The speed is less than desirable. I tried batching in groups of 500, but that made it worse.
What’s the fastest way of copying events from one server to another? (note: I just want my own events, so I’m not interesting in wholesale copying the DB files from one to another)