diff options
author | mokhotskii <mokhotskii@ydb.tech> | 2022-07-12 16:03:51 +0300 |
---|---|---|
committer | mokhotskii <mokhotskii@ydb.tech> | 2022-07-12 16:03:51 +0300 |
commit | 333180ae363efddee661d8f17c96baee771b79e2 (patch) | |
tree | 32285d068d93d2ab24d5ee2ce609ce4728f0cf52 | |
parent | 75c170827c1cb55af373fa50878657734a06329f (diff) | |
download | ydb-333180ae363efddee661d8f17c96baee771b79e2.tar.gz |
Set enable_proto_source_id_info: true by default
Set enable_proto_source_id_info: true by default
-rw-r--r-- | ydb/core/protos/pqconfig.proto | 2 | ||||
-rw-r--r-- | ydb/tests/library/harness/kikimr_config.py | 1 | ||||
-rw-r--r-- | ydb/tests/library/harness/resources/default_yaml.yml | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/ydb/core/protos/pqconfig.proto b/ydb/core/protos/pqconfig.proto index 0e528014696..feb024e9a2b 100644 --- a/ydb/core/protos/pqconfig.proto +++ b/ydb/core/protos/pqconfig.proto @@ -127,7 +127,7 @@ message TPQConfig { optional NKikimrNodeLimits.TNodeLimitsConfig.TPersQueueNodeConfig PersQueueNodeConfig = 36; - optional bool EnableProtoSourceIdInfo = 37 [default = false]; + optional bool EnableProtoSourceIdInfo = 37 [default = true]; optional string Database = 38; diff --git a/ydb/tests/library/harness/kikimr_config.py b/ydb/tests/library/harness/kikimr_config.py index 02f92a9c449..61a31d019fe 100644 --- a/ydb/tests/library/harness/kikimr_config.py +++ b/ydb/tests/library/harness/kikimr_config.py @@ -207,6 +207,7 @@ class KikimrConfigGenerator(object): self.yaml_config["feature_flags"]["enable_public_api_external_blobs"] = enable_public_api_external_blobs self.yaml_config["feature_flags"]["enable_mvcc"] = "VALUE_FALSE" if disable_mvcc else "VALUE_TRUE" self.yaml_config['pqconfig']['enabled'] = enable_pq + self.yaml_config['pqconfig']['enable_proto_source_id_info'] = True # NOTE(shmel1k@): KIKIMR-14221 if use_legacy_pq: self.yaml_config['pqconfig']['topics_are_first_class_citizen'] = False diff --git a/ydb/tests/library/harness/resources/default_yaml.yml b/ydb/tests/library/harness/resources/default_yaml.yml index aba91b93a56..e5f04de35af 100644 --- a/ydb/tests/library/harness/resources/default_yaml.yml +++ b/ydb/tests/library/harness/resources/default_yaml.yml @@ -183,6 +183,7 @@ pqconfig: topics_are_first_class_citizen: {ydb_pq_topics_are_first_class_citizen} check_acl: false require_credentials_in_new_protocol: false + enable_proto_source_id_info: true cluster_table_path: "{ydb_pq_cluster_table_path}" version_table_path: "{ydb_pq_version_table_path}" root: "{ydb_pq_root}" |