Skip to content

Commit 1d4f8fb

Browse files
authored
yql_s3_settings: pass AllowLocalFiles from protobuf (#7843)
1 parent c3fcb29 commit 1d4f8fb

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

ydb/library/yql/providers/s3/provider/yql_s3_settings.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ void TS3Configuration::Init(const TS3GatewayConfig& config, TIntrusivePtr<TTypeA
7373
RegexpCacheSize = config.HasRegexpCacheSize() ? config.GetRegexpCacheSize() : 100;
7474
AllowConcurrentListings =
7575
config.HasAllowConcurrentListings() ? config.GetAllowConcurrentListings() : false;
76+
AllowLocalFiles =
77+
config.HasAllowLocalFiles() ? config.GetAllowLocalFiles() : false;
7678
GeneratorPathsLimit =
7779
config.HasGeneratorPathsLimit() ? config.GetGeneratorPathsLimit() : 50'000;
7880
MaxListingResultSizePerPhysicalPartition =

ydb/tests/tools/kqprun/configuration/app_config.conf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ QueryServiceConfig {
7474
MaxReadSizePerQuery: 1000000000000
7575
MinDesiredDirectoriesOfFilesPerQuery: 1000
7676
RegexpCacheSize: 100
77+
AllowLocalFiles: true
7778

7879
DefaultSettings {
7980
Name: "AtomicUploadCommit"

0 commit comments

Comments
 (0)