forked from apache/pulsar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Transaction Coordinator] Bootstrap pulsar system namespace and creat…
…e TC assign topic. (apache#5515) ### Motivation Introduce pulsar system namespace and init transaction coordinator assign topic when init pulsar cluster. Broker will bootstrap the system namespace if broker enable transaction coordinator. ### Verifying this change Added new unit tests for system namespace Bootstrap
- Loading branch information
1 parent
89a9aaa
commit f4d954d
Showing
13 changed files
with
303 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
100 changes: 100 additions & 0 deletions
100
pulsar-broker/src/main/java/org/apache/pulsar/PulsarTransactionCoordinatorMetadataSetup.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.pulsar; | ||
|
||
import com.beust.jcommander.JCommander; | ||
import com.beust.jcommander.Parameter; | ||
import org.apache.pulsar.common.naming.NamespaceName; | ||
import org.apache.pulsar.common.naming.TopicName; | ||
import org.apache.zookeeper.ZooKeeper; | ||
|
||
/** | ||
* Setup the transaction coordinator metadata for a cluster, the setup will create pulsar/system namespace and create | ||
* partitioned topic for transaction coordinator assign | ||
*/ | ||
public class PulsarTransactionCoordinatorMetadataSetup { | ||
|
||
private static class Arguments { | ||
|
||
@Parameter(names = { "-c", "--cluster" }, description = "Cluster name", required = true) | ||
private String cluster; | ||
|
||
@Parameter(names = { "-cs", | ||
"--configuration-store" }, description = "Configuration Store connection string", required = true) | ||
private String configurationStore; | ||
|
||
@Parameter(names = { | ||
"--zookeeper-session-timeout-ms" | ||
}, description = "Local zookeeper session timeout ms") | ||
private int zkSessionTimeoutMillis = 30000; | ||
|
||
@Parameter(names = { | ||
"--initial-num-transaction-coordinators" | ||
}, description = "Num transaction coordinators will assigned in cluster") | ||
private int numTransactionCoordinators = 16; | ||
|
||
@Parameter(names = { "-h", "--help" }, description = "Show this help message") | ||
private boolean help = false; | ||
|
||
} | ||
|
||
public static void main(String[] args) throws Exception { | ||
Arguments arguments = new Arguments(); | ||
JCommander jcommander = new JCommander(); | ||
try { | ||
jcommander.addObject(arguments); | ||
jcommander.parse(args); | ||
if (arguments.help) { | ||
jcommander.usage(); | ||
return; | ||
} | ||
} catch (Exception e) { | ||
jcommander.usage(); | ||
throw e; | ||
} | ||
|
||
if (arguments.configurationStore == null) { | ||
System.err.println("Configuration store address argument is required (--configuration-store)"); | ||
jcommander.usage(); | ||
System.exit(1); | ||
} | ||
|
||
if (arguments.numTransactionCoordinators <= 0) { | ||
System.err.println("Number of transaction coordinators must greater than 0"); | ||
System.exit(1); | ||
} | ||
|
||
ZooKeeper configStoreZk = PulsarClusterMetadataSetup | ||
.initZk(arguments.configurationStore, arguments.zkSessionTimeoutMillis); | ||
|
||
// Create system tenant | ||
PulsarClusterMetadataSetup | ||
.createTenantIfAbsent(configStoreZk, NamespaceName.SYSTEM_NAMESPACE.getTenant(), arguments.cluster); | ||
|
||
// Create system namespace | ||
PulsarClusterMetadataSetup.createNamespaceIfAbsent(configStoreZk, NamespaceName.SYSTEM_NAMESPACE, | ||
arguments.cluster); | ||
|
||
// Create transaction coordinator assign partitioned topic | ||
PulsarClusterMetadataSetup.createPartitionedTopic(configStoreZk, TopicName.TRANSACTION_COORDINATOR_ASSIGN, | ||
arguments.numTransactionCoordinators); | ||
|
||
System.out.println("Transaction coordinator metadata setup success"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.