8000 Enforce stricter transaction limits by graetzer · Pull Request #9740 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Enforce stricter transaction limits #9740

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

Merged
merged 7 commits into from
Aug 20, 2019
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
Prev Previous commit
Next Next commit
Update Manager.h
  • Loading branch information
graetzer authored Aug 19, 2019
commit f6ae7695fa80100c75a1c3b0b2d20faf89202918
4 changes: 2 additions & 2 deletions arangod/Transaction/Manager.h
619E
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ struct Options;
class Manager final {
static constexpr size_t numBuckets = 16;
static constexpr double idleTTL = 10.0; // 10 seconds
static constexpr double idleTTLDBServer = 3 * 60.0; // 6 minutes
static constexpr double tombstoneTTL = 10.0 * 60.0; // 6 minutes
static constexpr double idleTTLDBServer = 3 * 60.0; // 3 minutes
static constexpr double tombstoneTTL = 10.0 * 60.0; // 10 minutes
static constexpr size_t maxTransactionSize = 128 * 1024 * 1024; // 128 MiB

enum class MetaType : uint8_t {
Expand Down
0