Remove prefix shard leftovers
[controller.git] / opendaylight / md-sal / samples / clustering-test-app / model / src / main / yang / odl-mdsal-lowlevel-control.yang
1 module odl-mdsal-lowlevel-control {
2
3     yang-version 1;
4     namespace "tag:opendaylight.org,2017:controller:yang:lowlevel:control";
5     prefix ll;
6
7     import odl-mdsal-lowlevel-common {
8         revision-date "2017-02-15";
9         prefix llc;
10     }
11
12     organization "OpenDaylight";
13     contact "Vratko Polak <vrpolak@cisco.com>";
14     description "Control RPCs used to dynamically register, unregister, start or stop
15         the operations under test, which are defined in odl-mdsal-lowlevel-target (llt).
16         Control RPCs are backed by an implementation upon feature instalation.
17         Their registration shall only affect the local member,
18         but their invocation can interact with Entity Ownership or Singleton.
19
20         The 'mdsal' in the module name refers to the component which defines most APIs
21         accessed by the agent implementation. The intent is to test clustering behavior,
22         but most RPCs do not access APIs from clustering component of Controller project.
23
24         TODO: Unify grammar: present or future tense, or imperative mood.";
25
26     revision "2017-02-15" {
27         description "Initial revision for Carbon clustering testing.";
28     }
29
30     rpc register-constant {
31         description "Upon receiving this, the member has to create llt:get-constant
32             implementation (global RPC). If the registration fails for any reason,
33             propagate the corresponding error.";
34         input {
35             uses llc:constant-grouping;
36         }
37         // No output.
38     }
39
40     rpc unregister-constant {
41         description "Upon receiving this, the member has to unregister
42             any llt:get-constant implementations it has registered.
43             If no implementation has been registered, do nothing.";
44         // No input.
45         // No output.
46     }
47
48     rpc register-bound-constant {
49         description "Upon receiving this, the member has to create and register
50             a bound llt:get-contexted-constant implementation (routed RPC).
51             If the registration fails for any reason, propagate the corresponding error.";
52         input {
53             uses llc:context-grouping;
54             uses llc:constant-grouping;
55         }
56         // No output.
57     }
58
59     rpc unregister-bound-constant {
60         description "Upon receiving this, the member has to unregister
61             any llt:get-contexted-constant implementations bound to the context.
62             If no bound implementation for the context has been registered, do nothing.";
63         input {
64             uses llc:context-grouping;
65         }
66         // No output.
67     }
68
69     rpc register-singleton-constant {
70         description "Upon receiving this, the member checks whether it has already registered
71             a singleton application, and fails if yes. If no, the member creates
72             an application implementation based on the given constant
73             and registers the implementation as a singleton application.
74             If the registration fails for any reason, propagate the corresponding error.
75             If the application is instantiated, it creates and registers
76             a llt:get-singleton-constant implementation, which returns the given costant.
77             When the application instance is closed, it unregisters that
78             llt:get-singleton-constant implementation.";
79         input {
80             uses llc:constant-grouping;
81         }
82         // No output.
83     }
84
85     rpc unregister-singleton-constant {
86         description "Upon receiving this, the member checks whether it has currently registered
87             a singleton application, and fails if no. If yes, the member shall unregister
88             the application, presumably causing application instantiation on other member,
89             and closing of the local application instance (unregistering llt:get-singleton-constant).
90             If the unregistration fails for any reason, propagate the corresponding error.";
91         // No input.
92         // No output.
93     }
94
95     rpc register-flapping-singleton {
96         description "Upon receiving this, the member checks whether it has already created
97             a 'flapping' application implementation and 'active' flag is set, and fails if yes.
98             If no, the member (creates a flapping application implementation,)
99             sets the active flag, initializes local variable flap-count to 0,
100             and registers the implementation as a singleton application.
101             If the registration fails for any reason, propagate the corresponding error.
102             If the application is instantiated, it immediatelly un-registers itself.
103             When the application instance is closed, it increments flap-count
104             and if active flag is set, re-registers the application implementation as a singleton.
105             If either un-registration or re-registration fails, 'active' flag is unset,
106             flap-count is set to negative of its previous value (minus one in case of un-registration)
107             to signal a failure has happened.";
108         // No input.
109         // No output.
110     }
111
112     rpc unregister-flapping-singleton {
113         description "Upon receiving this, the member checks whether it has created
114             a flapping application, and fails if no. If yes, the member shall
115             set the active flag to false and return the current flap-count value.";
116         // No input.
117         output {
118             leaf flap-count {
119                 description "Number of successful re-registrations. If negative,
120                     (minus) cycle number when a failure occured.";
121                 mandatory true;
122                 type int64;
123             }
124         }
125     }
126
127     rpc start-publish-notifications {
128         description "Upon receiving this, the member checks whether it is already in the middle of publishing,
129             for this id, and fails if yes. If no, the member shall clear any state tracking data possibly present
130             from the previous call wth this id, and start publishing llt:id-sequence
131             notifications with the given id and sequence numbers increasing from 1.
132             The RPC shall return immediatelly before the first notification is published.
133             The publishing task stops on first error of after the given time.";
134         input {
135             uses llc:id-grouping;
136             leaf seconds {
137                 description "This RPC has to work (roughly) this long.";
138                 mandatory true;
139                 type uint32;
140             }
141             leaf notifications-per-second {
142                 description "An upper limit of publishes per second this RPC shall try to achieve.";
143                 mandatory true;
144                 type uint32;
145             }
146         }
147         // No output.
148     }
149
150     rpc check-publish-notifications {
151         description "Upon receiving this, the member shall immediatelly return
152             the current tracking data related to the current (or previous) task
153             started by start-publish-notifications with this id.";
154         input {
155             uses llc:id-grouping;
156         }
157         output {
158             leaf active {
159                 description "True if a publishing task for this id is running, false otherwise.";
160                 mandatory true;
161                 type boolean;
162             }
163             leaf publish-count {
164                 description "How many notifications were published for this id since last start.
165                     If there was no start-publish-notifications call for this id, this leaf is absent.";
166                 mandatory false;
167                 type int64;
168             }
169             leaf last-error {
170                 description "If no task has been started by start-publish-notifications for this id,
171                     or if the last such call has not encountered an error, this leaf is absent.
172                     Otherwise it contains a string message from the last error, including stacktrace if possible.";
173                 mandatory false;
174                 type string;
175             }
176         }
177     }
178
179     rpc subscribe-ynl {
180         description "Upon receiving this, the member checks whether it has already subscribed
181             a yang listener for the given id, and fails if yes.
182             If no, the member subscribes a Yang notification listener to listen for
183             llt:id-sequence notifications. The member also creates a local variable
184             (called local-number) for the sequence number and initialize that to 0.
185             Also three local counters are initialized to 0: all-not, id-not, err-not.
186             Upon receiving any id-sequence notification, all-not is incremented.
187             Each id-sequence notification of matching id shall increment id-not.
188             If local-number was one less than the sequence number (from a notification matching id),
189             increment local-number, else increment err-not.";
190         input {
191             uses llc:id-grouping;
192         }
193         // No output.
194     }
195
196     rpc unsubscribe-ynl {
197         description "Upon receiving this, the member checks whether it has currently subscribed
198             a yang listener for the given id, and fails if no. If yes, the member
199             shall unsubscribe the listener and return values of the local variables.";
200         input {
201             uses llc:id-grouping;
202         }
203         output {
204             leaf all-not {
205                 description "Number of received id-sequence notifications of any id.";
206                 mandatory true;
207                 type int64;
208             }
209             leaf id-not {
210                 description "Number of received id-sequence notifications of matching id
211                     and any sequence number.";
212                 mandatory true;
213                 type int64;
214             }
215             leaf err-not {
216                 description "Number of received id-sequence notifications of matching id,
217                     but out-of-order sequence number.";
218                 mandatory true;
219                 type int64;
220             }
221             leaf local-number {
222                 description "Value of the local number, should be equal to
223                     the sequence number of the last compatible id-sequence notification received.";
224                 mandatory true;
225                 type int64;
226             }
227         }
228     }
229
230     grouping transactions-params {
231         leaf seconds {
232             description "This RPC has to work (roughly) this long.";
233             mandatory true;
234             type uint32;
235         }
236         leaf transactions-per-second {
237             description "An upper limit of transactions per second this RPC shall try to achieve.";
238             mandatory true;
239             type uint32;
240         }
241     }
242
243     grouping transactions-result {
244         leaf all-tx {
245             description "Number of all transactions executed.";
246             type int64;
247             mandatory true;
248         }
249         leaf insert-tx {
250             description "Number of transactions that inserted data.";
251             type int64;
252             mandatory true;
253         }
254         leaf delete-tx {
255             description "Number of transactions that deleted data.";
256             type int64;
257             mandatory true;
258         }
259     }
260
261     rpc write-transactions {
262         description "Upon receiving this, the member shall make sure the outer list item
263             of llt:id-ints exists for the given id, and then start creating (one by one)
264             and submitting transactions to randomly add or delete items on the inner list for that id.
265             The randomness should avoid creating conflicting writes (at least for non-chained
266             transactions). The recommended way is to require the random number
267             has low significant bits different than the past ~100k numbers.
268             To ensure balanced number of deletes, the first write can create
269             a random set of numbers. Other writes shall be one per number.
270             The writes shall use the old API, transaction (chains) created directly on datastore
271             (as opposed to DOMDataTreeProducer).
272             .get with a timeout on currently earliest non-complete Future (from .submit)
273             shall be used as the primary wait method to throttle the submission rate.
274             This RPC shall not return until all transactions are confirmed successful,
275             or an exception is raised (the exception should propagate to restconf response).
276             OptimisticLockException is always considered an error.";
277         input {
278             uses llc:id-grouping;
279             uses transactions-params;
280             leaf chained-transactions {
281                 description "If true, write transactions shall be created on a transaction chain,
282                     (created at start of the RPC call, and deleted at at its end).
283                     If false, write transactions shall be created separately.";
284                 mandatory true;
285                 type boolean;
286             }
287         }
288         output {
289             uses transactions-result;
290         }
291     }
292
293     rpc remove-shard-replica {
294         description "A specialised copy of cluster-admin:remove-shard-replica.
295
296             FIXME: Is this really needed for prefix shards, or even module shards
297                 (or is the cluster-admin RPC sufficient)?";
298         input {
299             leaf shard-name {
300                 description "The name of the config shard for which
301                     to remove the replica on the current member.";
302                 mandatory true;
303                 type string;
304             }
305         // No output.
306         }
307     }
308
309     rpc add-shard-replica {
310         description "A specialised copy of cluster-admin:add-shard-replica.
311
312             FIXME: Is this really needed for prefix shards, or even module shards
313                 (or is the cluster-admin RPC sufficient)?";
314         input {
315             leaf shard-name {
316                 description "The name of the config shard for which
317                     to add the replica on the current member.";
318                 mandatory true;
319                 type string;
320             }
321         // No output.
322         }
323     }
324
325     rpc is-client-aborted {
326         description "Return state of cds-access-client.
327
328             FIXME: Is an input needed?";
329         output {
330             leaf aborted {
331                 description "True if the local client is aborted (or unreachable), false otherwise.";
332                 mandatory true;
333                 type boolean;
334             }
335         }
336     }
337
338     rpc subscribe-dtcl {
339         description "Upon receiving this, the member checks whether it has already subscribed
340             and fails if yes. If no, the member subscribes a Data Tree Change Listener
341             to listen for changes on whole llt:id-ints. The first notification received is stored immediately.
342             Every notification received after the first one has the data(getDataBefore()) compared with the
343             last stored notification(called local copy), if they match the local copy is overwritten with
344             this notifications data(getDataAfter()). If they don't match the new notification is ignored.";
345         // No input.
346         // No output.
347     }
348
349     rpc unsubscribe-dtcl {
350         description "Upon receiving this, the member checks whether it has currently subscribed
351             a Data Tree Change Listener for llt:id-ints changes, and fails if no. If yes, the member
352             shall unsubscribe the listener, read state of id-ints, compare that
353             to the local copy, and return whether the local copy is the same.";
354         // No input.
355         output {
356             leaf copy-matches {
357                 type boolean;
358                 mandatory true;
359                 description "True if and only if the read id-ints is equal to the local copy.";
360             }
361         }
362     }
363
364     rpc subscribe-ddtl {
365         description "Upon receiving this, the member checks whether it has already subscribed
366             and fails if yes. If no, the member subscribes a DOMDataTreeListener
367             to listen for changes on whole llt:id-ints, and stores
368             the state from the initial notification to a local variable (called the local copy).
369             Each Data Tree Change from further notifications shall be applied
370             to the local copy if it is compatible
371             (the old state from notification is equal to the local copy state).
372             If a notification is not compatible, it shall be ignored.";
373         // No input.
374         // No output.
375     }
376
377     rpc unsubscribe-ddtl {
378         description "Upon receiving this, the member checks whether it has currently subscribed
379             a DOMDataTreeListener for llt:id-ints changes, and fails if no. If yes, the member
380             shall unsubscribe the listener, read state of id-ints (by briefly subscribing
381             and ubsubscribing again), compare that to the local copy,
382             and return whether the local copy is the same.";
383         // No input.
384         output {
385             leaf copy-matches {
386                 description "True if and only if the read id-ints is equal to the local copy.";
387                 mandatory true;
388                 type boolean;
389             }
390         }
391     }
392
393     // The following calls are not required for Carbon testing.
394
395     rpc register-default-constant {
396         description "Upon receiving this, the member has to create and register
397             a default llt:get-contexted-constant implementation (routed RPC).
398             If the registration fails for any reason, propagate the corresponding error.";
399         input {
400             uses llc:constant-grouping;
401         }
402         // No output.
403     }
404
405     rpc unregister-default-constant {
406         description "Upon receiving this, the member has to unregister
407             any llt:get-contexted-constant default implementations it has registered.
408             If no default implementation has been registered, do nothing.";
409         // No input.
410         // No output.
411     }
412
413     rpc shutdown-shard-replica {
414         description "Upon receiving this, the member will try to gracefully shutdown local configuration
415             data store module-based shard replica.";
416         input {
417             leaf shard-name {
418                 type string;
419                 description "The name of the configuration data store module-based shard to be shutdown
420                     gracefully.";
421             }
422         }
423     }
424 }