You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "DnOberon (via GitHub)" <gi...@apache.org> on 2023/09/23 15:48:44 UTC

[GitHub] [arrow-rs] DnOberon opened a new issue, #4853: object_store Azure Government Cloud functionality?

DnOberon opened a new issue, #4853:
URL: https://github.com/apache/arrow-rs/issues/4853

   **Which part is this question about**
   object_store
   
   **Describe your question**
   Need to figure out how we can make object_store work with Azure government cloud, if at all.
   
   
   


-- 
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: github-unsubscribe@arrow.apache.org.apache.org

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


[GitHub] [arrow-rs] DnOberon commented on issue #4853: object_store Azure Government Cloud functionality?

Posted by "DnOberon (via GitHub)" <gi...@apache.org>.
DnOberon commented on issue #4853:
URL: https://github.com/apache/arrow-rs/issues/4853#issuecomment-1732397933

   Awesome. Really helps us out, thank you.
   
   On Sat, Sep 23, 2023 at 1:52 PM Raphael Taylor-Davies <
   ***@***.***> wrote:
   
   > As soon as another maintainer has reviewed it, likely a day or so
   >
   > —
   > Reply to this email directly, view it on GitHub
   > <https://github.com/apache/arrow-rs/issues/4853#issuecomment-1732397124>,
   > or unsubscribe
   > <https://github.com/notifications/unsubscribe-auth/AAFS4N2AH2HJQIF55YW5EXLX344YFANCNFSM6AAAAAA5EI2VIE>
   > .
   > You are receiving this because you authored the thread.Message ID:
   > ***@***.***>
   >
   


-- 
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: github-unsubscribe@arrow.apache.org

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


[GitHub] [arrow-rs] tustvold commented on issue #4853: object_store Azure Government Cloud functionality?

Posted by "tustvold (via GitHub)" <gi...@apache.org>.
tustvold commented on issue #4853:
URL: https://github.com/apache/arrow-rs/issues/4853#issuecomment-1732397124

   As soon as another maintainer has reviewed it, likely a day or so


-- 
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: github-unsubscribe@arrow.apache.org

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


[GitHub] [arrow-rs] tustvold closed issue #4853: object_store Azure Government Cloud functionality?

Posted by "tustvold (via GitHub)" <gi...@apache.org>.
tustvold closed issue #4853: object_store Azure Government Cloud functionality?
URL: https://github.com/apache/arrow-rs/issues/4853


-- 
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: github-unsubscribe@arrow.apache.org

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


Re: [I] object_store Azure Government Cloud functionality? [arrow-rs]

Posted by "tustvold (via GitHub)" <gi...@apache.org>.
tustvold commented on issue #4853:
URL: https://github.com/apache/arrow-rs/issues/4853#issuecomment-1768075253

   `label_issue.py` automatically added labels {'object-store'} from #4854


-- 
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: github-unsubscribe@arrow.apache.org

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


[GitHub] [arrow-rs] DnOberon commented on issue #4853: object_store Azure Government Cloud functionality?

Posted by "DnOberon (via GitHub)" <gi...@apache.org>.
DnOberon commented on issue #4853:
URL: https://github.com/apache/arrow-rs/issues/4853#issuecomment-1732355101

   It should be roughly the same API yes - how do you override the endpoint? I must be missing something in the docs


-- 
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: github-unsubscribe@arrow.apache.org

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


[GitHub] [arrow-rs] tustvold commented on issue #4853: object_store Azure Government Cloud functionality?

Posted by "tustvold (via GitHub)" <gi...@apache.org>.
tustvold commented on issue #4853:
URL: https://github.com/apache/arrow-rs/issues/4853#issuecomment-1732361076

   My mistake, I thought we already exposed this. Could you try out https://github.com/apache/arrow-rs/pull/4854 and report back. Should be something like
   
   ```
   let store = MicrosoftAzureBuilder::new()
           .with_account("") // removed for security
           .with_access_key("") // removed for security
           .with_container_name("") // removed for security
           .with_endpoint("https://blob.core.usgovcloudapi.net")
           .build()
           .unwrap();
   ```
   
   Although it might be 
   
   ```
   let store = MicrosoftAzureBuilder::new()
           .with_account("") // removed for security
           .with_access_key("") // removed for security
           .with_container_name("") // removed for security
           .with_endpoint("https://<ACCOUNT>.blob.core.usgovcloudapi.net")
           .build()
           .unwrap();
   ```
   
   I couldn't find docs for the government cloud functionality so not sure which it will be :sweat_smile: 


-- 
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: github-unsubscribe@arrow.apache.org

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


[GitHub] [arrow-rs] tustvold commented on issue #4853: object_store Azure Government Cloud functionality?

Posted by "tustvold (via GitHub)" <gi...@apache.org>.
tustvold commented on issue #4853:
URL: https://github.com/apache/arrow-rs/issues/4853#issuecomment-1732354222

   I'm afraid I'm not familiar with Azure Government Cloud but presuming it talks the same APIs it should just be a case of overriding the endpoint??


-- 
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: github-unsubscribe@arrow.apache.org

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


[GitHub] [arrow-rs] DnOberon commented on issue #4853: object_store Azure Government Cloud functionality?

Posted by "DnOberon (via GitHub)" <gi...@apache.org>.
DnOberon commented on issue #4853:
URL: https://github.com/apache/arrow-rs/issues/4853#issuecomment-1732388283

   @tustvold  this works perfectly! When can we get it merged in? :D


-- 
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: github-unsubscribe@arrow.apache.org

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