-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Increased the GRV client batch size #1311
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
Conversation
…mits related to the number of transactions started in a batch
fdbserver/Knobs.cpp
Outdated
| init( START_TRANSACTION_BATCH_QUEUE_CHECK_INTERVAL, 0.001 ); | ||
| init( START_TRANSACTION_MAX_TRANSACTIONS_TO_START, 10000 ); | ||
| init( START_TRANSACTION_MAX_BUDGET_SIZE, 20 ); // Currently set to match CLIENT_KNOBS->MAX_BATCH_SIZE | ||
| init( START_TRANSACTION_MAX_TRANSACTIONS_TO_START, 500000 ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why was MAX_TRANSACTIONS_TO_START increased?
fdbserver/Knobs.cpp
Outdated
| init( START_TRANSACTION_MAX_TRANSACTIONS_TO_START, 10000 ); | ||
| init( START_TRANSACTION_MAX_BUDGET_SIZE, 20 ); // Currently set to match CLIENT_KNOBS->MAX_BATCH_SIZE | ||
| init( START_TRANSACTION_MAX_TRANSACTIONS_TO_START, 500000 ); | ||
| init( START_TRANSACTION_MAX_BUDGET_SIZE, 1000 ); // Currently set to match CLIENT_KNOBS->MAX_BATCH_SIZE |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A budget of 1000 is pretty big. I can understand why that might be beneficial when batch sizes are 1000, but I wonder if this could also sometimes lead to trouble.
…ough, and then pay back what was over the limit in the next update
Increased the GRV client batch size
Increased the GRV client batch size
Increased the GRV client batch size
No description provided.