Cherry-Puppy opened a new issue, #9603:
URL: https://github.com/apache/incubator-doris/issues/9603

   ### 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
   
   version 0.15.0
   
   ### What's Wrong?
   
   doris version 0.15.0 :help broker load; 
   18. LOAD WITH HDFS, 带ha的HDFS集群
           LOAD LABEL example_db.label_filter
           (
               DATA INFILE("hdfs://host:port/user/data/*/test.txt")
               INTO TABLE `tbl1`
               COLUMNS TERMINATED BY ","
               (k1,k2,v1,v2)
           ) 
           with HDFS (
               "fs.defaultFS"="hdfs://testFs",
               "hdfs_user"="user"
               "dfs.nameservices"="my_ha",
               "dfs.ha.namenodes.xxx"="my_nn1,my_nn2",
               "dfs.namenode.rpc-address.xxx.my_nn1"="host1:port",
               "dfs.namenode.rpc-address.xxx.my_nn2"="host2:port",
               
"dfs.client.failover.proxy.provider.xxx"="org.apache.hadoop.hdfs.server.namenode.ha.ConfiguredFailoverProxyProvider"
           );
   grammar problems!!!
   
   ### What You Expected?
   
   should be changed to
   LOAD LABEL example_db.label_filter
           (
               DATA INFILE("hdfs://my_ha/user/data/*/test.txt")
               INTO TABLE `tbl1`
               COLUMNS TERMINATED BY ","
               (k1,k2,v1,v2)
           ) 
           with HDFS (
               "fs.defaultFS"="hdfs://testFs",
               "usename"="user",
               "password"="",
               "dfs.nameservices"="my_ha",
               "dfs.ha.namenodes.xxx"="my_nn1,my_nn2",
               "dfs.namenode.rpc-address.xxx.my_nn1"="host1:port",
               "dfs.namenode.rpc-address.xxx.my_nn2"="host2:port",
               
"dfs.client.failover.proxy.provider.xxx"="org.apache.hadoop.hdfs.server.namenode.ha.ConfiguredFailoverProxyProvider"
           );
   
   ### How to Reproduce?
   
   _No response_
   
   ### Anything Else?
   
   there is none left。
   
   ### Are you willing to submit PR?
   
   - [X] 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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to