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 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 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
3 changes: 3 additions & 0 deletions docs/system_overview/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ 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,

// The read buffer size in bytes used for checksum calculations of a data object at rest.
JustinKyleJames marked this conversation as resolved.
Show resolved Hide resolved
"checksum_read_buffer_size_in_bytes": 1048576
Copy link
Collaborator

Choose a reason for hiding this comment

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

Missing comma.


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

Expand Down
Loading