westgatepark opened a new issue #8155:
URL: https://github.com/apache/incubator-doris/issues/8155


   ### Search before asking
   
   - [X] I had searched in the 
[issues](https://github.com/apache/incubator-doris/issues?q=is%3Aissue) and 
found no similar issues.
   
   
   ### Version
   
   0.15.1-rc09
   
   ### What's Wrong?
   
     使用broker load 装载s3数据时,报错:ERROR 1064 (HY000): errCode = 2, detailMessage = 
Invalid export path. please use valid 'HDFS://', 'AFS://' or 'BOS://' path.
   模版参考的show broker load 中的:
           LOAD LABEL example_db.label11
           (
           DATA INFILE("s3a://my_bucket/input/file")
           INTO TABLE `my_table`
           FORMAT AS "parquet"
           (k1, k2, k3)
           )
           WITH BROKER my_s3a_broker
           (
           "fs.s3a.access.key" = "xxxxxxxxxxxxxxxxxxxxxxxxxx",
           "fs.s3a.secret.key" = "yyyyyyyyyyyyyyyyyyyy",
           "fs.s3a.endpoint" = "s3.amazonaws.com"
           );
     可以正常通过s3sdk装载数据:
         LOAD LABEL load_label
         (
         ...
         )
         WITH S3
         (
         ..
         );
   
   但是这样就没法指定节点去执行装载任务,因为be做了资源隔离,而s3 sdk装载任务不受隔离限制。
   
   ### What You Expected?
   
   期望当开启资源隔离时,根据 用户来分配执行 s3 sdk load 所占用的资源。
   或者使s3 broker load 正常运行,这样可以根据broker name 来映射对应的资源组。
   
   ### How to Reproduce?
   
   _No response_
   
   ### Anything Else?
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [ ] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
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: commits-unsubscr...@doris.apache.org

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



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to