You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@iceberg.apache.org by GitBox <gi...@apache.org> on 2022/09/15 14:48:21 UTC

[GitHub] [iceberg] XBaith opened a new issue, #5769: Why region is not set in AwsClientFactories

XBaith opened a new issue, #5769:
URL: https://github.com/apache/iceberg/issues/5769

   ### Query engine
   
   Java API
   
   ### Question
   
   In `AwsClientFactories`, the region is not set in the `s3()` and `glue()` functions. This causes some exceptions when using the Java API. So is it necessary to append the region in the relevant builder?
   ```
   public GlueClient glue() {
     return GlueClient.builder().httpClientBuilder(configureHttpClientBuilder(httpClientType)).build();
   }
   ```
   
   ```
   public S3Client s3() {
     return S3Client.builder()
         .httpClientBuilder(configureHttpClientBuilder(httpClientType))
         .applyMutation(builder -> configureEndpoint(builder, s3Endpoint))
         .serviceConfiguration(s3Configuration(s3PathStyleAccess, s3UseArnRegionEnabled))
         .credentialsProvider(credentialsProvider(s3AccessKeyId, s3SecretAccessKey, s3SessionToken))
         .build();
   }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@iceberg.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@iceberg.apache.org
For additional commands, e-mail: issues-help@iceberg.apache.org


[GitHub] [iceberg] github-actions[bot] commented on issue #5769: Why is region not set in AwsClientFactories

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] commented on issue #5769:
URL: https://github.com/apache/iceberg/issues/5769#issuecomment-1498316225

   This issue has been closed because it has not received any activity in the last 14 days since being marked as 'stale'


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@iceberg.apache.org
For additional commands, e-mail: issues-help@iceberg.apache.org


[GitHub] [iceberg] github-actions[bot] closed issue #5769: Why is region not set in AwsClientFactories

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] closed issue #5769: Why is region not set in AwsClientFactories
URL: https://github.com/apache/iceberg/issues/5769


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@iceberg.apache.org
For additional commands, e-mail: issues-help@iceberg.apache.org


[GitHub] [iceberg] amogh-jahagirdar commented on issue #5769: Why is region not set in AwsClientFactories

Posted by GitBox <gi...@apache.org>.
amogh-jahagirdar commented on issue #5769:
URL: https://github.com/apache/iceberg/issues/5769#issuecomment-1250521912

   The exposed way currently is for allowing an endpoint override (which can be used for essentially setting another region) for each of these, the default aws client factory and assume role client factories leverage those. For example, check out https://github.com/apache/iceberg/blob/master/aws/src/main/java/org/apache/iceberg/aws/AwsProperties.java#L152.
   
   I do agree though it would be nice to have a simpler interface for just setting region. For that, I think we can follow up on this [PR](https://github.com/apache/iceberg/pull/5046/files). cc: @dungdm93 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@iceberg.apache.org
For additional commands, e-mail: issues-help@iceberg.apache.org


[GitHub] [iceberg] github-actions[bot] commented on issue #5769: Why is region not set in AwsClientFactories

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] commented on issue #5769:
URL: https://github.com/apache/iceberg/issues/5769#issuecomment-1475042090

   This issue has been automatically marked as stale because it has been open for 180 days with no activity. It will be closed in next 14 days if no further activity occurs. To permanently prevent this issue from being considered stale, add the label 'not-stale', but commenting on the issue is preferred when possible.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@iceberg.apache.org
For additional commands, e-mail: issues-help@iceberg.apache.org