Skip to content
Merged
Changes from 1 commit
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
16 changes: 16 additions & 0 deletions hadoop-hdds/docs/content/feature/multi-raft-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,22 @@ Ratis handles concurrent logs per node.
The Ratis pipelines will be distributed accordingly.
- Be cautious with very high pipeline counts due to memory/CPU overhead.

## Advanced Ratis Configuration

Any Ratis configuration properties can be set using a corresponding prefix.
The following table shows the prefixes in each Ozone component.

| Ozone Components | Configuration Prefixes |
|---------------------------------|-------------------------|
| Ozone Manager (OM) | `ozone.om.ha` |
| Storage Container Manager (SCM) | `ozone.scm.ha` |
| Recon | `ozone.recon.scmconfig` |
| Datanode | `hdds.ratis` |
| Ozone Client | `hdds.ratis` |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please add an example. For example: hdds.ratis.raft.server.log.appender.buffer.byte-limit is for raft.server.log.appender.buffer.byte-limit in ozone client.

Copy link
Contributor Author

@szetszwo szetszwo Jan 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for reviewing this! Just pushed a commit to add the example from #8668 (comment)


See also [Apache Ratis configuration
documentation](https://github.com/apache/ratis/blob/ratis-3.2.1/ratis-docs/src/site/markdown/configurations.md).

## Limitations
- Global configuration: cannot set per-node limits
- Requires restart after changing storage dirs
Expand Down