From a9fccb1b66ce42ddd615b3b193055513738e4718 Mon Sep 17 00:00:00 2001 From: Hongze Cheng Date: Tue, 9 Nov 2021 16:42:06 +0800 Subject: [PATCH] refact --- include/server/vnode/vnode.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/include/server/vnode/vnode.h b/include/server/vnode/vnode.h index 94aefef003..f787b07b00 100644 --- a/include/server/vnode/vnode.h +++ b/include/server/vnode/vnode.h @@ -48,27 +48,32 @@ void vnodeOptionsClear(SVnodeOptions *); struct SVnodeOptions { /** * @brief write buffer size in BYTES + * */ uint64_t wsize; /** * @brief time to live of tables in this vnode * in SECONDS + * */ uint32_t ttl; /** * @brief if time-series requests eventual consistency + * */ bool isWeak; /** * @brief TSDB options + * */ STsdbOptions tsdbOptions; /** - * @brief META operations + * @brief META options + * */ SMetaOptions metaOptions; // STqOptions tqOptions; // TODO -- GitLab