About the modification of broker load specifying hdfs user name parameter (#12330)

About the modification of broker load specifying hdfs user name parameter
This commit is contained in:
caoliang-web
2022-09-05 19:34:26 +08:00
committed by GitHub
parent a47eb55d7c
commit 0deee72a63
4 changed files with 6 additions and 6 deletions

View File

@ -247,7 +247,7 @@ LOAD LABEL demo.label_20220402
)
with HDFS (
"fs.defaultFS"="hdfs://10.220.147.151:8020",
"hdfs_user"="root"
"hadoop.username"="root"
)
PROPERTIES
(

View File

@ -358,7 +358,7 @@ WITH BROKER broker_name
)
WITH HDFS
(
"username"="user",
"hadoop.username"="user",
"password"="pass"
)
PROPERTIES
@ -385,7 +385,7 @@ WITH BROKER broker_name
)
WITH HDFS
(
"username"="user",
"hadoop.username"="user",
"password"="pass"
)
````

View File

@ -246,7 +246,7 @@ LOAD LABEL demo.label_20220402
)
with HDFS (
"fs.defaultFS"="hdfs://10.220.147.151:8020",
"hdfs_user"="root"
"hadoop.username"="root"
)
PROPERTIES
(

View File

@ -358,7 +358,7 @@ WITH BROKER broker_name
)
WITH HDFS
(
"username"="user",
"hadoop.username"="user",
"password"="pass"
)
PROPERTIES
@ -385,7 +385,7 @@ WITH BROKER broker_name
)
WITH HDFS
(
"username"="user",
"hadoop.username"="user",
"password"="pass"
)
```