Refactor s3 settings (move settings parsing into single place)#64412
Refactor s3 settings (move settings parsing into single place)#64412
Conversation
|
This is an automated comment for commit ef8810a with description of existing statuses. It's updated for the latest CI running ❌ Click here to open a full report in a separate page
Successful checks
|
a504622 to
9a875f9
Compare
9a875f9 to
80f195d
Compare
043e41d to
fd31f8e
Compare
fd31f8e to
56c7301
Compare
f9ea6ee to
73e9719
Compare
6e8ac6b to
f85030f
Compare
f366f29 to
779eaa0
Compare
575fa55 to
a035e4e
Compare
| struct ProxyConfigurationResolver; | ||
|
|
||
| HTTPHeaderEntries getHTTPHeaders(const std::string & config_elem, const Poco::Util::AbstractConfiguration & config); | ||
| namespace S3 |
There was a problem hiding this comment.
I'm very happy to see this structured lists. Huge thank to you!
|
* [GLUTEN-1632][CH]Daily Update Clickhouse Version (20240616) * Fix Build due to ClickHouse/ClickHouse#64412 * Fix UT due to ClickHouse/ClickHouse#64986 * Fix build due to ClickHouse/ClickHouse#60556 * Ignore TPCH Q17 which include avg * Fix 'Invalid Field get from type Decimal64 to type Int64' in debug build. --------- Co-authored-by: kyligence-git <gluten@kyligence.io> Co-authored-by: Chang Chen <baibaichen@gmail.com>
|
|
||
| if (from.no_sign_request.has_value()) | ||
| no_sign_request = from.no_sign_request; | ||
| size_t max_get_burst = isChanged("max_get_burts") ? get("max_get_burst").get<UInt64>() : default_max_get_burst; |
There was a problem hiding this comment.
Noticed the typos while refactoring this (max_get_burts -> max_get_burst, max_put_burts -> max_put_burst).
Aside from the typos, I don't quite see how this is supposed to work. Who could populate RequestSettings::max_get_burts considering the setting is not declared inside this class?
Changelog category (leave one):
CI Settings
NOTE: If your merge the PR with modified CI you MUST KNOW what you are doing
NOTE: Checked options will be applied if set before CI RunConfig/PrepareRunConfig step
This was partially already done by #59767, but not fully.