Add direct in-memory journal threshold
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / jmx / mbeans / DatastoreConfigurationMXBean.java
index 6b81792a57ca86de622df194c6c090bdd98f189b..2d800c3d96c88bc70c310c83fb2036ea3d834776 100644 (file)
@@ -28,12 +28,16 @@ public interface DatastoreConfigurationMXBean {
 
     int getShardSnapshotDataThresholdPercentage();
 
+    int getShardSnapshotDataThreshold();
+
     long getShardSnapshotBatchCount();
 
     long getShardTransactionCommitTimeoutInSeconds();
 
     int getShardTransactionCommitQueueCapacity();
 
+    long getShardCommitQueueExpiryTimeoutInSeconds();
+
     long getShardInitializationTimeoutInSeconds();
 
     long getShardLeaderElectionTimeoutInSeconds();
@@ -42,11 +46,19 @@ public interface DatastoreConfigurationMXBean {
 
     long getTransactionCreationInitialRateLimit();
 
+    boolean getTransactionContextDebugEnabled();
+
+    @Deprecated(forRemoval = true)
     int getMaxShardDataChangeExecutorPoolSize();
 
+    @Deprecated(forRemoval = true)
     int getMaxShardDataChangeExecutorQueueSize();
 
+    @Deprecated(forRemoval = true)
     int getMaxShardDataChangeListenerQueueSize();
 
+    @Deprecated(forRemoval = true)
     int getMaxShardDataStoreExecutorQueueSize();
+
+    int getMaximumMessageSliceSize();
 }