This commit is contained in:
Hongze Cheng 2021-11-09 16:42:06 +08:00
parent 556a46f960
commit a9fccb1b66
1 changed files with 6 additions and 1 deletions

View File

@ -48,27 +48,32 @@ void vnodeOptionsClear(SVnodeOptions *);
struct SVnodeOptions { struct SVnodeOptions {
/** /**
* @brief write buffer size in BYTES * @brief write buffer size in BYTES
*
*/ */
uint64_t wsize; uint64_t wsize;
/** /**
* @brief time to live of tables in this vnode * @brief time to live of tables in this vnode
* in SECONDS * in SECONDS
*
*/ */
uint32_t ttl; uint32_t ttl;
/** /**
* @brief if time-series requests eventual consistency * @brief if time-series requests eventual consistency
*
*/ */
bool isWeak; bool isWeak;
/** /**
* @brief TSDB options * @brief TSDB options
*
*/ */
STsdbOptions tsdbOptions; STsdbOptions tsdbOptions;
/** /**
* @brief META operations * @brief META options
*
*/ */
SMetaOptions metaOptions; SMetaOptions metaOptions;
// STqOptions tqOptions; // TODO // STqOptions tqOptions; // TODO