Default shard-journal-recovery-log-batch-size to 1
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / yang / cluster-admin.yang
index 940741b720c7d1e15bd6865f26585219cc2de51b..2d81db7117421ded2c4b5d662a74570c33063773 100644 (file)
@@ -21,14 +21,43 @@ module cluster-admin {
         }
     }
 
+    grouping shard-operation-result {
+        leaf shard-name {
+            type string;
+        }
+
+        leaf data-store-type {
+            type data-store-type;
+        }
+
+        leaf succeeded {
+            type boolean;
+        }
+
+        leaf error-message {
+            type string;
+        }
+    }
+
+    grouping shard-result-output {
+        list shard-result {
+            key "shard-name data-store-type";
+            uses shard-operation-result;
+
+            description "The list of results, one per shard";
+        }
+    }
+    
     rpc add-shard-replica {
         input {
             leaf shard-name {
+                mandatory true;
                 type string;
                 description "The name of the shard for which to create a replica.";
             }
-            
+
             leaf data-store-type {
+                mandatory true;
                 type data-store-type;
                 description "The type of the data store to which the replica belongs";
             }
@@ -44,16 +73,19 @@ module cluster-admin {
     rpc remove-shard-replica {
         input {
             leaf shard-name {
+                mandatory true;
                 type string;
                 description "The name of the shard for which to remove the replica.";
             }
 
             leaf member-name {
+                mandatory true;
                 type string;
                 description "The cluster member from which the shard replica should be removed";
             }
 
             leaf data-store-type {
+                mandatory true;
                 type data-store-type;
                 description "The type of the data store to which the replica belongs";
             }
@@ -64,11 +96,27 @@ module cluster-admin {
     }
 
     rpc add-replicas-for-all-shards {
+        output {
+            uses shard-result-output;
+        }
+
         description "Adds replicas on this node for all currently defined shards. This is equivalent to issuing
             an add-shard-replica RPC for all shards.";
     }
 
     rpc remove-all-shard-replicas {
+        input {
+            leaf member-name {
+                mandatory true;
+                type string;
+                description "The cluster member from which the shard replicas should be removed";
+            }
+        }
+        
+        output {
+            uses shard-result-output;
+        }
+        
         description "Removes replicas for all shards on this node. This is equivalent to issuing
             a remove-shard-replica for all shards and essentially removes this node from a cluster.";
     }