diff options
author | Yash Ranjan <ranjany@vmware.com> | 2021-10-28 09:07:11 +0200 |
---|---|---|
committer | Christian Hopps <chopps@labn.net> | 2023-03-22 03:08:32 +0100 |
commit | 74335ceb2753cc73afe2854b20640018431acc19 (patch) | |
tree | 0ff2afc2aacd7078131086fd6051321725b5cd94 /mgmtd/mgmt_defines.h | |
parent | mgmtd: Add MGMT Backend Interface Framework (diff) | |
download | frr-74335ceb2753cc73afe2854b20640018431acc19.tar.xz frr-74335ceb2753cc73afe2854b20640018431acc19.zip |
mgmtd: Add MGMT Transaction Framework
This commit introduces the MGMT Transaction framework that takes
management requests from one (or more) frontend client sessions,
translates them into transactions and drives them to completion
in co-oridination with one (or more) backend client daemons
involved in the request.
This commit includes the following functionalities in the changeset:
1. Introduces the actual Transaction module. Commands added related to
transaction are:
a. show mgmt transaction all
2. Adds support for commit rollback feature which stores upto the 10
commit buffers. Each commit has a commit-id which can be used to
rollback to the exact configuration state.
Commands supported for this feature are:
a. show mgmt commit-history
b. mgmt rollback commit-id COMMIT_ID
3. Add hidden commands to enable record various performance metrics:
a. mgmt performance-measurement
b. mgmt reset-statistic
Co-authored-by: Pushpasis Sarkar <pushpasis@gmail.com>
Co-authored-by: Abhinay Ramesh <rabhinay@vmware.com>
Co-authored-by: Ujwal P <ujwalp@vmware.com>
Signed-off-by: Yash Ranjan <ranjany@vmware.com>
Diffstat (limited to 'mgmtd/mgmt_defines.h')
-rw-r--r-- | mgmtd/mgmt_defines.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mgmtd/mgmt_defines.h b/mgmtd/mgmt_defines.h index 2af8f3f55..ee2f376f4 100644 --- a/mgmtd/mgmt_defines.h +++ b/mgmtd/mgmt_defines.h @@ -20,6 +20,7 @@ #define MGMTD_MAX_NUM_XPATH_REG 128 #define MGMTD_MAX_NUM_DATA_REQ_IN_BATCH 32 +#define MGMTD_MAX_NUM_DATA_REPLY_IN_BATCH 8 enum mgmt_result { MGMTD_SUCCESS = 0, @@ -54,4 +55,6 @@ enum mgmt_be_event { #define MGMTD_TXN_ID_NONE 0 +#define MGMTD_TXN_BATCH_ID_NONE 0 + #endif /* _FRR_MGMTD_DEFINES_H */ |