-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple pulsar clusters use the same bookkeeper cluster ? #5935
Comments
Thanks @SunDapeng1 for open this issue. currently But, Seems in current code, of PulsarClusterMetadataSetup, it is using /ledgers for bookies by default? In your deployment, are you using the localzk as: zkhost:2181/pulsar ? maybe just change it back to zkhost:2181 would solve this issue? |
Thank you for your reply. Maybe I didn't describe it clearly. What I want to express is that if the bk metadata is in |
@SunDapeng1 , as we discussed, the main issue is make bookie service (/ledgers) configurable. This may involves some change like |
@jiazhai How is this issue going? |
…#5985) ### Motivation Fixes #5935 Support multi pulsar clusters to use the specified bookkeeper cluster by pointing `BookKeeper Client` to the zookeeper connection string of bookkeeper cluster. ### Modifications - Add a config `bookkeeperServiceUri` to discover bookkeeper cluster metadata store. - Use metadata service uri to init bookkeeper client.
…apache#5985) ### Motivation Fixes apache#5935 Support multi pulsar clusters to use the specified bookkeeper cluster by pointing `BookKeeper Client` to the zookeeper connection string of bookkeeper cluster. ### Modifications - Add a config `bookkeeperServiceUri` to discover bookkeeper cluster metadata store. - Use metadata service uri to init bookkeeper client.
Can multiple pulsar clusters use the same bookkeeper cluster? If I had deployed the bk separately in advance and the metadata was stored under
/ledgers
, how would I configure the pulsar so that every pulsar recognizes/ledgers
?(According to my test: pulsar initializes metadata to
/pulsar
, then the pulasr cluster can only recognize/pulsar/ledger
to store metadata of bk)The text was updated successfully, but these errors were encountered: