Skip to content

enhance default value in configuration  #4246

Closed
@HarrisChu

Description

@HarrisChu

should enhance default value in configuration, so user would change less items if using in production.

e.g.

--rocksdb_block_cache=4096
--rocksdb_db_options={"max_subcompactions":"4","max_background_jobs":"4"}
# storage
DEFINE_int32(reader_handlers, 32, "Total reader handlers");
DEFINE_int32(num_worker_threads, 32, "Number of workers");

# graph
DEFINE_int32(num_worker_threads, 0, "Number of threads to execute user queries");

  if (FLAGS_num_worker_threads == 0) {
    FLAGS_num_worker_threads = std::thread::hardware_concurrency();
  }
DEFINE_bool(enable_partitioned_index_filter, false, "True for partitioned index filters");

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Type

No type

Projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions