This is an automated email from the ASF dual-hosted git repository.
alexey pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git
The following commit(s) were added to refs/heads/master by this push:
new ade1b3c [master] 'runtime' tag for --table_locations_ttl_ms
ade1b3c is described below
commit ade1b3c3848592cb702fb5f83f2a7fdb0f97b777
Author: Alexey Serbin <[email protected]>
AuthorDate: Mon May 11 08:33:17 2020 -0700
[master] 'runtime' tag for --table_locations_ttl_ms
This patchs adds the 'runtime' tag for the --table_locations_ttl_ms flag.
De facto, the flag had runtime behavior already.
Change-Id: Ie4bdc02b553a438327af12199170a79466a8e866
Reviewed-on: http://gerrit.cloudera.org:8080/15900
Tested-by: Alexey Serbin <[email protected]>
Reviewed-by: Bankim Bhavsar <[email protected]>
---
src/kudu/master/catalog_manager.cc | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/kudu/master/catalog_manager.cc
b/src/kudu/master/catalog_manager.cc
index 428bf43..e035b39 100644
--- a/src/kudu/master/catalog_manager.cc
+++ b/src/kudu/master/catalog_manager.cc
@@ -232,6 +232,7 @@ DEFINE_int32(table_locations_ttl_ms, 5 * 60 * 1000, // 5
minutes
"New range partitions may not be visible to existing client
instances "
"until after waiting for the ttl period.");
TAG_FLAG(table_locations_ttl_ms, advanced);
+TAG_FLAG(table_locations_ttl_ms, runtime);
DEFINE_bool(catalog_manager_fail_ts_rpcs, false,
"Whether all master->TS async calls should fail. Only for
testing!");