Skip to content

Commit 4ec0da2

Browse files
authored
Merge branch 'apache:master' into master
2 parents 7e41481 + 43dc913 commit 4ec0da2

File tree

1,383 files changed

+22419
-5112
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,383 files changed

+22419
-5112
lines changed

auto_correct_format.py

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import os
2+
import sys
3+
import subprocess
4+
5+
def list_files(directory):
6+
"""Recursively traverse the directory and print all .md and .mdx file names, then run autocorrect"""
7+
for root, _, files in os.walk(directory):
8+
for file in files:
9+
if file.endswith(('.md', '.mdx')):
10+
file_path = os.path.join(root, file)
11+
print(file_path)
12+
subprocess.run(["autocorrect", "--fix", file_path], check=True)
13+
14+
if __name__ == "__main__":
15+
if len(sys.argv) != 2:
16+
print("Usage: python script.py <directory_path>")
17+
sys.exit(1)
18+
19+
dir_path = sys.argv[1]
20+
if os.path.isdir(dir_path):
21+
list_files(dir_path)
22+
else:
23+
print("The entered path is invalid. Please enter a valid directory path.")
24+

docs/admin-manual/auth/authentication-and-authorization.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Doris supports the following password policies to assist users in better passwor
7373

7474
1. `PASSWORD_HISTORY`
7575

76-
Determines whether a user can reuse a historical password when resetting their current password. For example, `PASSWORD_HISTORY 10` means the last 10 passwords cannot be reused as a new password. Setting `PASSWORD_HISTORY DEFAULT` will use the value from the global variable `password_history`. A setting of 0 disables this feature. The default is 0.
76+
Determines whether a user can reuse a historical password when resetting their current password. For example, `PASSWORD_HISTORY 10` means the last 10 passwords cannot be reused as a new password. Setting `PASSWORD_HISTORY DEFAULT` will use the value from the global variable `PASSWORD_HISTORY`. A setting of 0 disables this feature. The default is 0.
7777

7878
Examples:
7979

@@ -308,7 +308,7 @@ Please refer to [Authorization Scheme Based on Apache Ranger](./ranger.md).
308308

309309
3. SET PASSWORD
310310

311-
- Users with ADMIN privileges or GLOBAL level GRANT privileges can set passwords for non-ROOT users.
311+
- Users with ADMIN privileges or GLOBAL level GRANT privileges can set passwords for non-root users.
312312
- Ordinary users can set the password for their corresponding User Identity. Their corresponding User Identity can be viewed with the `SELECT CURRENT_USER()` command.
313313
- ROOT users can change their own password.
314314

docs/admin-manual/auth/authentication/federation.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
---
23
{
34
"title": "Federated Authentication",
@@ -115,7 +116,7 @@ Assuming `jack` also belongs to LDAP groups `doris_qa` and `doris_pm`; and Doris
115116

116117
> Note:
117118
>
118-
> Which group a user belongs to is unrelated to the organizational structure of the LDAP tree. The user2 in the example does not necessarily belong to group2.
119+
> The group a user belongs to is unrelated to the organizational structure of the LDAP tree. User2 in the example does not necessarily belong to group2.
119120

120121
### LDAP Example
121122
#### Modify Doris Configuration
@@ -147,7 +148,7 @@ To avoid frequent access to the LDAP service, Doris caches LDAP information in m
147148
148149
- How to determine which roles an LDAP user has in Doris?
149150
150-
Log in to Doris using the LDAP user and execute `show grants;` to view the roles of the current user. Among them, ldapDefaultRole is the default role that each LDAP user has in Doris.
151+
Log in to Doris using the LDAP user and execute `show grants;` to view the roles of the current user. `ldapDefaultRole` is the default role that each LDAP user has in Doris.
151152
152153
- Why does an LDAP user have fewer roles in Doris than expected?
153154

docs/admin-manual/auth/ldap.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ LDAP group authorization, is to map the group in LDAP to the Role in Doris, if t
3434

3535
## Noun Interpretation
3636

37-
* LDAP: Lightweight directory access protocol that enables centralized management of account passwords.
37+
* LDAP: Lightweight Directory Access Protocol that enables centralized management of account passwords.
3838
* Privilege: Permissions act on nodes, databases or tables. Different permissions represent different permission to operate.
3939
* Role: Doris can create custom named roles. A role can be thought of as a collection of permissions.
4040

@@ -81,7 +81,7 @@ and the LDAP administrator password needs to be set using sql statements.
8181
LDAP administrator account "Distinguished Name". When a user logs into Doris using LDAP authentication, Doris will bind the administrator account to search for user information in LDAP.
8282

8383
* ldap_user_basedn = ou=people,dc=domain,dc=com
84-
Doris base dn when searching for user information in LDAP,For example, only user2 in the above example is allowed to log in to Doris, which is configured as ou=ou2, dc=example, dc=com. If user1, user2, and user3 in the above example are allowed to log in to Doris, which is configured as dc=example, dc=com
84+
Doris base DN(Distinguished Name) when searching for user information in LDAP,For example, only user2 in the above example is allowed to log in to Doris, which is configured as ou=ou2, dc=example, dc=com. If user1, user2, and user3 in the above example are allowed to log in to Doris, which is configured as dc=example, dc=com
8585

8686
* ldap_user_filter = (&(uid={login}))
8787

@@ -106,7 +106,7 @@ set ldap_admin_password = password('ldap_admin_password');
106106
#### MySQL Client
107107
Client-side LDAP authentication requires the mysql client-side explicit authentication plugin to be enabled. Logging into Doris using the command line enables the mysql explicit authentication plugin in one of two ways.
108108

109-
* Set the environment variable LIBMYSQL_ENABLE_CLEARTEXT_PLUGIN to value 1.
109+
* Set the environment variable `LIBMYSQL_ENABLE_CLEARTEXT_PLUGIN` to value 1.
110110
For example, in a linux or max environment you can use the command:
111111
```shell
112112
echo "export LIBMYSQL_ENABLE_CLEARTEXT_PLUGIN=1" >> ~/.bash_profile && source ~/.bash_profile

docs/admin-manual/auth/ranger.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ In version 2.1.0, Doris supports unified permission management by integrating Ap
7070

7171
The service address port can be viewed in the `ranger.service.http.port` configuration item of the `ranger-admin-site.xml` configuration file.
7272

73-
If the execution is successful, the service definition in Json format will be returned, such as:
73+
If the execution is successful, the service definition in JSON format will be returned, such as:
7474

7575
```
7676
{
@@ -243,40 +243,40 @@ Afterwards, you can see the created service in the Apache Doris plug-in on the S
243243
2. Using the `admin` user in Doris, create a Catalog named `hive`.
244244
3. Create `user1` in Ranger.
245245
246-
#### Global Priv
246+
#### Global Privileges
247247
Equivalent to Doris' internal authorization statement `grant select_priv on *.*.* to user1`;
248248
- The global option can be found in the dropdown menu of the same level in the catalog
249249
- Only `*` can be entered in the input box
250250
251251
![global](/images/ranger/global.png)
252252
253-
#### Catalog Priv
253+
#### Catalog Privileges
254254
Equivalent to Doris' internal authorization statement `grant select_priv on hive.*.* to user1`;
255255
256256
![catalog](/images/ranger/catalog.png)
257257
258-
#### Database Priv
258+
#### Database Privileges
259259
Equivalent to Doris' internal authorization statement `grant select_priv on hive.tpch.* to user1`;
260260
261261
![database](/images/ranger/database.png)
262262
263-
#### Table Priv
263+
#### Table Privileges
264264
Equivalent to Doris' internal authorization statement `grant select_priv on hive.tpch.user to user1`;
265265
266266
![table](/images/ranger/table.png)
267267
268-
#### Column Priv
268+
#### Column Privileges
269269
Equivalent to Doris' internal authorization statement `grant select_priv(name,age) on hive.tpch.user to user1`;
270270
271271
![column](/images/ranger/column.png)
272272
273-
#### Resource Priv
273+
#### Resource Privileges
274274
Equivalent to Doris' internal authorization statement `grant usage_priv on resource 'resource1' to user1`;
275275
- The resource option can be found in the dropdown menu of the same level in the catalog
276276
277277
![resource](/images/ranger/resource.png)
278278
279-
#### Workload Group Priv
279+
#### Workload Group Privileges
280280
Equivalent to Doris' internal authorization statement `grant usage_priv on workload group 'group1' to user1`;
281281
- The workload group option can be found in the dropdown menu of the same level in the catalog
282282

docs/admin-manual/auth/user-privilege.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ under the License.
2626

2727
# Authority Management
2828

29-
Doris's new privilege management system refers to Mysql's privilege management mechanism, achieves table-level fine-grained privilege control, role-based privilege access control, and supports whitelist mechanism.
29+
Doris's new privilege management system refers to MySQL's privilege management mechanism, achieves table-level fine-grained privilege control, role-based privilege access control, and supports whitelist mechanism.
3030

3131
## Noun Interpretation
3232

3333
1. user_identity
3434

35-
In a permission system, a user is identified as a User Identity. User ID consists of two parts: username and userhost. Username is a user name, which is composed of English upper and lower case. Userhost represents the IP from which the user link comes. User_identity is presented as username@'userhost', representing the username from userhost.
35+
In a permission system, a user is identified as a User Identity. User ID consists of two parts: username and userhost. Username is a user name, which is composed of English uppercase and lowercase. Userhost represents the IP from which the user link comes. User_identity is presented as username@'userhost', representing the username from userhost.
3636

3737
Another expression of user_identity is username@['domain'], where domain is the domain name, which can be resolved into a set of IPS by DNS . The final expression is a set of username@'userhost', so we use username@'userhost'to represent it.
3838

@@ -42,7 +42,7 @@ Doris's new privilege management system refers to Mysql's privilege management m
4242

4343
3. Role
4444

45-
Doris can create custom named roles. Roles can be seen as a set of permissions. When a newly created user can be assigned a role, the role's permissions are automatically granted. Subsequent changes in the role's permissions will also be reflected in all user permissions that belong to the role.
45+
Doris can create custom named roles. Roles can be seen as a set of permissions. When a newly created role can be assigned to a user, the role's permissions are automatically granted. Subsequent changes in the role's permissions will also be reflected in all user permissions that belong to the role.
4646

4747
4. user_property
4848

@@ -172,7 +172,7 @@ The workload group has only one level:
172172

173173
## ADMIN /GRANT
174174

175-
ADMIN_PRIV and GRANT_PRIV have the authority of **"grant authority"** at the same time, which is more special. The operations related to these two privileges are described here one by one.
175+
ADMIN_PRIV and GRANT_PRIV have the authority of **"grant authority"** at the same time, which is more special. The operations related to these two privileges are described here individually.
176176

177177
1. CREATE USER
178178

@@ -247,7 +247,7 @@ ADMIN_PRIV and GRANT_PRIV have the authority of **"grant authority"** at the sam
247247

248248
5. Forget passwords
249249

250-
If you forget your password and cannot log in to Doris, you can add `skip_localhost_auth_check` in fe config and restart FE so that logging to Doris without a password in localhost.
250+
If you forget your password and cannot log in to Doris, you can add `skip_localhost_auth_check` in fe config and restart FE so that login to Doris without a password in localhost.
251251

252252
`skip_localhost_auth_check = true`
253253

@@ -267,7 +267,7 @@ ADMIN_PRIV and GRANT_PRIV have the authority of **"grant authority"** at the sam
267267

268268
All privileges are given to a `current_user`, and the real user has all the privileges of the corresponding `current_user`.
269269
270-
`SELECT session_user()` is supported , which is having same behaviour as user() function.
270+
`SELECT session_user()` is supported , which is having same behavior as user() function.
271271

272272
10. Password Validation
273273

@@ -289,7 +289,7 @@ Here are some usage scenarios of Doris privilege system.
289289

290290
3. Blacklist
291291

292-
Doris itself does not support blacklist, only whitelist, but we can simulate blacklist in some way. Suppose you first create a user named `user@'192.%'`, which allows users from `192.*` to login. At this time, if you want to prohibit users from `192.168.10.1` from logging in, you can create another user with `cmy@'192.168.10.1'` and set a new password. Since `192.168.10.1` has a higher priority than `192.%`, user can no longer login by using the old password from `192.168.10.1`.
292+
Doris itself does not support blacklist, only whitelist, but we can simulate blacklist in some way. Suppose you first create a user named `user@'192.%'`, which allows users from `192.*` to login. At this time, if you want to prohibit users from `192.168.10.1` from logging in, you can create another user with `user@'192.168.10.1'` and set a new password. Since `192.168.10.1` has a higher priority than `192.%`, user can no longer login by using the old password from `192.168.10.1`.
293293

294294
## More help
295295

docs/admin-manual/cluster-management/elastic-expansion.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ fe/bin/start_fe.sh --helper <leader_fe_host>:<edit_log_port> --daemon
6666
ALTER SYSTEM ADD FOLLOWER "<follower_host>:<edit_log_port>";
6767
```
6868

69-
* Register the node as a Observer FE:
69+
* Register the node as an Observer FE:
7070

7171
```sql
7272
ALTER SYSTEM ADD OBSERVER "<observer_host>:<edit_log_port>";

docs/admin-manual/cluster-management/fqdn.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,14 @@ under the License.
2828

2929
This article introduces how to enable the use of Apache Doris based on FQDN (Fully Qualified Domain Name). FQDN is the complete domain name of a specific computer or host on the Internet.
3030

31-
After Doris supports FQDN, communication between nodes is entirely based on FQDN. When adding various types of nodes, the FQDN should be directly specified. For example, the command to add a BE node is' ALTER SYSTEM ADD BACKEND "be_host:heartbeat_service_port",
32-
33-
'be_host' was previously the IP address of the BE node. After starting the FQDN, be_host should specify the FQDN of the BE node.
31+
After Doris supports FQDN, communication between nodes is entirely based on FQDN. When adding various types of nodes, the FQDN should be directly specified. For example, the command to add a BE node is' ALTER SYSTEM ADD BACKEND "be_host:heartbeat_service_port", 'be_host' was previously the IP address of the BE node. After starting the FQDN, be_host should specify the FQDN of the BE node.
3432

3533
## Preconditions
3634

3735
1. fe.conf file set `enable_fqdn_mode = true`.
3836
2. All machines in the cluster must be configured with a host name.
3937
3. The IP address and FQDN corresponding to other machines in the cluster must be specified in the '/etc/hosts' file for each machine in the cluster.
40-
4. /The etc/hosts file cannot have duplicate IP addresses.
38+
4. The /etc/hosts file cannot have duplicate IP addresses.
4139

4240
## Best Practices
4341

@@ -54,7 +52,7 @@ After Doris supports FQDN, communication between nodes is entirely based on FQDN
5452
172.22.0.5 be2
5553
172.22.0.6 be3
5654
```
57-
4. Verification: It can 'ping fe2' on FE1, and can resolve the correct IP address and ping it, indicating that the network environment is available.
55+
4. Verification: you can 'ping fe2' on FE1, and can resolve the correct IP address and ping it, indicating that the network environment is available.
5856
5. fe.conf settings for each FE node ` enable_ fqdn_ mode = true`.
5957
6. Refer to[Standard deployment](../../../versioned_docs/version-2.1/install/deploy-manually/integrated-storage-compute-deploy-manually)
6058
7. Select several machines to deploy broker on six machines as needed, and execute `ALTER SYSTEM ADD BROKER broker_name "fe1:8000","be1:8000",...;`.

docs/admin-manual/cluster-management/load-balancing.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ Here is the main content of the configuration file `proxysql.cnf`:
285285
datadir="/var/lib/proxysql" #Data directory
286286
admin_variables=
287287
{
288-
admin_credentials="admin:admin" # Admin databse username and password.
288+
admin_credentials="admin:admin" # Admin database username and password.
289289
mysql_ifaces="0.0.0.0:6032" # Admin database port, used for connecting admin database of ProxySQL
290290
}
291291
mysql_variables=
@@ -480,7 +480,7 @@ ProxySQL > save mysql servers to disk;
480480
Query OK, 0 rows affected (0.348 sec)
481481
```
482482
483-
Verify monitoring results.
483+
Verification monitoring results.
484484
485485
The metrics of the ProxySQL monitoring module are all saved in the `monitor.log` table.
486486

0 commit comments

Comments
 (0)