I've set explicit timeouts for client and it is working fine now.

    auto s3Options = arrow::fs::S3Options::FromAccessKey(accessKey,
secretKey);

    s3Options.connect_timeout = 30.0;
    s3Options.request_timeout = 60.0;
    s3Options.region          = "us-east-1"s;

On Tue, Jun 13, 2023 at 2:53 AM Bryce Mecum <[email protected]> wrote:

> Do you still get the timeout if you build a standalone program that
> just uses Arrow C++? It might give us some more information if you run
> your code with S3's log level turned up. So instead of using
> EnsureS3Initialized, initialize S3 manually like,
>
> S3GlobalOptions options;
> options.log_level = S3LogLevel::Debug;
> InitializeS3(options);
>

Reply via email to