abyssnlp commented on PR #107:
URL: https://github.com/apache/hudi-rs/pull/107#issuecomment-2283195868

   @xushiyan I verified it for 3 scenarios and it works as expected.
   - `HudiDataSource` with AWS S3 (`AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY` 
, `AWS_DEFAULT_REGION` in the env vars)
   - `HudiDataSource` with local FS
   - `HudiDataSource` with minio (requires the AWS env var `AWS_ENDPOINT` and 
`ALLOW_HTTP`)
   ```rust
   let hudi = HudiDataSource::new_with_options(
           "s3://test-bucket/v6_nonpartitioned",
           vec![
               ("allow_http", "true"),
           ],
       )
       .await?;
   ``` 


-- 
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]

Reply via email to