heesung-sn commented on code in PR #23301:
URL: https://github.com/apache/pulsar/pull/23301#discussion_r1766111225


##########
pulsar-broker-common/src/main/java/org/apache/pulsar/broker/ServiceConfiguration.java:
##########
@@ -2874,6 +2874,25 @@ public double 
getLoadBalancerBandwidthOutResourceWeight() {
     )
     private boolean loadBalancerMultiPhaseBundleUnload = true;
 
+    @FieldContext(
+            dynamic = false,
+            category = CATEGORY_LOAD_BALANCER,
+            doc = "Name of ServiceUnitStateTableView implementation class to 
use"
+    )
+    private String loadManagerServiceUnitStateTableViewClassName =
+            
"org.apache.pulsar.broker.loadbalance.extensions.channel.ServiceUnitStateTableViewImpl";
+
+    @FieldContext(
+            dynamic = true,
+            category = CATEGORY_LOAD_BALANCER,
+            doc = "Specify ServiceUnitTableViewSyncer to sync service 
unit(bundle) states between metadata store and "
+                    + "system topic table views during migration from one to 
the other. One could enable this"
+                    + " syncer before migration and disable it after the 
migration finishes. "
+                    + "It accepts `MetadataStoreToSystemTopicSyncer` or 
`SystemTopicToMetadataStoreSyncer` to "
+                    + "enable it. Null value disables it."
+    )
+    private ServiceUnitTableViewSyncerType 
loadBalancerServiceUnitTableViewSyncer = null;

Review Comment:
   sure. let me update this.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to