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

[7947] Updated docs for checksum_read_buffer_size_in_bytes in server_… #285

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions docs/getting_started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ Below you'll find examples showing what the input file might contain for a [Cata
},
"server_config": {
"advanced_settings": {
"checksum_read_buffer_size_in_bytes": 1048576,
JustinKyleJames marked this conversation as resolved.
Show resolved Hide resolved
"default_log_rotation_in_days": 5,
"default_number_of_transfer_threads": 4,
"default_temporary_password_lifetime_in_seconds": 120,
Expand Down Expand Up @@ -420,6 +421,7 @@ Below you'll find examples showing what the input file might contain for a [Cata
},
"server_config": {
"advanced_settings": {
"checksum_read_buffer_size_in_bytes": 1048576,
"default_log_rotation_in_days": 5,
"default_number_of_transfer_threads": 4,
"default_temporary_password_lifetime_in_seconds": 120,
Expand Down
4 changes: 4 additions & 0 deletions docs/system_overview/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ This file defines the behavior of the server Agent that answers individual reque
// Changing this value requires a server restart in order to take effect.
"agent_factory_watcher_sleep_time_in_seconds": 5,

// (Optional)
// The buffer size used for reading a replica during checksum calculations.
"checksum_read_buffer_size_in_bytes": 1048576,

// The number of threads used for parallel transfers.
"default_number_of_transfer_threads": 4,

Expand Down
Loading