weizuo93 commented on a change in pull request #5452: URL: https://github.com/apache/incubator-doris/pull/5452#discussion_r607462640
########## File path: be/src/common/config.h ########## @@ -348,6 +348,14 @@ CONF_mInt32(streaming_load_rpc_max_alive_time_sec, "1200"); CONF_Int32(tablet_writer_open_rpc_timeout_sec, "60"); // You can ignore brpc error '[E1011]The server is overcrowded' when writing data. CONF_mBool(tablet_writer_ignore_eovercrowded, "false"); +// batch size of stream load record reported to FE +CONF_mInt32(stream_load_record_batch_size, "50"); +// expire time of stream load record in rocksdb. +CONF_Int32(stream_load_record_expire_time_secs, "28800"); +// time interval to clean expired stream load records +CONF_mInt64(clean_stream_load_record_interval_secs, "1800"); +// the storage path of stream load record rocksdb +CONF_String(stream_load_record_path, ""); Review comment: > If default `stream_load_record_path` is `""`, then the default rocksdb dir is > `/stream_load`, so there will be error when BE starts: > `rocks db open failed, reason:IO error: While mkdir if missing: /stream_load: Permission denied` > Maybe `${DORIS_HOME}/` ? That's reasonable. Thank you. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org