Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOC] Changes to Hive Metastore-based distributed locking in the Concurrency control doc. #12717

Merged
merged 1 commit into from
Jan 27, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions website/docs/concurrency_control.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,21 @@ Following are the basic configs required to setup this lock provider:

`The HiveMetastore URI's are picked up from the hadoop configuration file loaded during runtime.`

:::note
Zookeeper is required for HMS lock provider. Users can set the zookeeper configs for Hive using Hudi

```properties
hoodie.write.lock.zookeeper.url
hoodie.write.lock.zookeeper.port
```
or via Hive config for Hive Metastore (HMS)

```properties
hive.zookeeper.quorum
hive.zookeeper.client.port
```
:::

#### Amazon DynamoDB based
```
hoodie.write.lock.provider=org.apache.hudi.aws.transaction.lock.DynamoDBBasedLockProvider
Expand Down
Loading