This repository has been archived by the owner on Nov 18, 2024. It is now read-only.
How many DB could subscribe from one Kernel and Stream? #275
Little-Wallace
started this conversation in
General
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As I know, there may be many DB instance will execute on one kernel. But the interface
new_update_writer
ofKernel
does not supplystream_name
. It means that, if there are multipleStream
processing updates in the cluster, the db subscribe from theKernel
can not tell the order of updates between multiple Stream.This is a consensus problem. I think it is enough for every engine process to subscribe only one
Stream
. Of course, it can consume part of the updates in thisStream
. If you need to store the data from multipleStream
, you can keep multiple engine in one process. There is my suggestion forKernal
:Beta Was this translation helpful? Give feedback.
All reactions