This is an automated email from the ASF dual-hosted git repository. roryqi pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git
The following commit(s) were added to refs/heads/master by this push:
new 6e18b3e9e [#2209][FOLLOWUP] improvement(docs): Add documents for the
two bufferSize configs. (#2213)
6e18b3e9e is described below
commit 6e18b3e9eba60416527cf8e2f866ab33f221ae8e
Author: leewish <[email protected]>
AuthorDate: Tue Oct 22 20:34:36 2024 +0800
[#2209][FOLLOWUP] improvement(docs): Add documents for the two bufferSize
configs. (#2213)
### What changes were proposed in this pull request?
Add documents for the two bufferSize configs in server_guide.md.
### Why are the changes needed?
Fix: #2209
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
Tested locally.
Co-authored-by: wenlongwlli <[email protected]>
---
docs/server_guide.md | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/docs/server_guide.md b/docs/server_guide.md
index b8002aced..6f9250d44 100644
--- a/docs/server_guide.md
+++ b/docs/server_guide.md
@@ -116,6 +116,10 @@ This document will introduce how to deploy Uniffle shuffle
servers.
| rss.server.storage.audit.log.enabled | false
| When set to true, for
auditing purposes, the server will log audit records for every disk write and
delete operation. Each file write is logged, while delete operations are
specific to application ID/shuffle ID, removing all associated files and
recording the deletion of the entire application ID or shuffle ID. For a write
operation, it includes the size o [...]
| rss.server.rpc.audit.log.enabled | true
| When set to true, for
auditing purposes, the server will log audit records for every rpc request
operation.
[...]
| rss.server.rpc.audit.log.excludeList | appHeartbeat
| Exclude record rpc audit
operation list, separated by ','.
[...]
+| rss.storage.localfile.write.dataBufferSize | 8K
| The size of the buffer
used to cache data written for LOCALFILE.
[...]
+| rss.storage.localfile.write.indexBufferSize | 8K
| The size of the buffer
used to cache index written for LOCALFILE.
[...]
+| rss.storage.hdfs.write.dataBufferSize | 8K
| The size of the buffer
used to cache data written for HDFS.
[...]
+| rss.storage.hdfs.write.indexBufferSize | 8K
| The size of the buffer
used to cache index written for HDFS.
[...]
### Advanced Configurations
| Property Name | Default | Description
|
