You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by GitBox <gi...@apache.org> on 2022/05/17 03:07:49 UTC

[GitHub] [incubator-doris] Cherry-Puppy opened a new issue, #9603: [Bug] doris version 0.15.0 help broker load command demo bug

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

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


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


[GitHub] [incubator-doris] dataalive commented on issue #9603: [Bug] doris version 0.15.0 help broker load command demo bug

Posted by GitBox <gi...@apache.org>.
dataalive commented on issue #9603:
URL: https://github.com/apache/incubator-doris/issues/9603#issuecomment-1133919130

   the latest doc has fixed the comma that left on 'hdfs_user'
   
   but change ```hdfs_user``` to `username` is not correct. 
   
   with broker we use `username` and `password`
   with hdfs we use `hdfs_user`


-- 
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-unsubscribe@doris.apache.org

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


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