Home
last modified time | relevance | path

Searched refs:max_parallel_ops (Results 1 – 7 of 7) sorted by relevance

/dports/databases/tiledb/TileDB-2.5.2/test/src/
H A Dunit-gcs.cc227 const uint64_t max_parallel_ops = 1; variable
229 config.set("vfs.gcs.max_parallel_ops", std::to_string(max_parallel_ops));
234 const uint64_t write_cache_max_size = max_parallel_ops * multi_part_size;
312 const uint64_t max_parallel_ops = 1; variable
314 config.set("vfs.gcs.max_parallel_ops", std::to_string(max_parallel_ops));
319 const uint64_t write_cache_max_size = max_parallel_ops * multi_part_size;
390 const uint64_t max_parallel_ops = 4; variable
392 config.set("vfs.gcs.max_parallel_ops", std::to_string(max_parallel_ops));
397 const uint64_t write_cache_max_size = max_parallel_ops * multi_part_size;
475 const uint64_t max_parallel_ops = 4; variable
[all …]
H A Dunit-azure.cc252 const uint64_t max_parallel_ops = 2; variable
255 config.set("vfs.azure.max_parallel_ops", std::to_string(max_parallel_ops));
264 max_parallel_ops * block_list_block_size;
342 const uint64_t max_parallel_ops = 2; variable
345 config.set("vfs.azure.max_parallel_ops", std::to_string(max_parallel_ops));
354 max_parallel_ops * block_list_block_size;
/dports/databases/tiledb/TileDB-2.5.2/tiledb/sm/filesystem/
H A Dwin.cc442 uint64_t max_parallel_ops = 0; in write() local
444 "vfs.file.max_parallel_ops", &max_parallel_ops, &found)); in write()
472 std::max(buffer_size / min_parallel_size, uint64_t(1)), max_parallel_ops); in write()
H A Dposix.cc524 uint64_t max_parallel_ops = 0; in write() local
529 "vfs.file.max_parallel_ops", &max_parallel_ops, &found)); in write()
557 std::max(buffer_size / min_parallel_size, uint64_t(1)), max_parallel_ops); in write()
H A Dvfs.h730 Status max_parallel_ops(const URI& uri, uint64_t* ops) const;
H A Dvfs.cc684 Status VFS::max_parallel_ops(const URI& uri, uint64_t* ops) const { in max_parallel_ops() function in tiledb::sm::VFS
1408 RETURN_NOT_OK(max_parallel_ops(uri, &max_ops)); in read()
/dports/databases/tiledb/TileDB-2.5.2/
H A DHISTORY.md1393 * Added `vfs.{s3,file}.max_parallel_ops` config parameters.