troychiu opened a new issue, #5273:
URL: https://github.com/apache/arrow-rs/issues/5273
**Which part is this question about**
Object store
**Describe your question**
I would like to use object_store to communicate with my local object store
(which is a minio object store)
I initialize the client like this
```Rust
let s3 = AmazonS3Builder::new()
.with_endpoint("http://localhost:30002")
.with_region("us-east-1") // Dummy region for local testing
.with_bucket_name("my-bucket")
.with_access_key_id("minio")
.with_secret_access_key("miniostorage")
.build()
.expect("error creating s3");
```
However, when I call get like `let result = self.store.get(&path).await;` I
got error `(http://localhost:30002/my-bucket/32M.txt): URL scheme is not
allowed`.
I am wondering if there is any example about using local endpoint that I can
refer to.
Thank you!
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]