Skip to content

[DE-832] added skipFastLockRound paramter to StreamTransactionOptions #574

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 1 commit into from
Sep 5, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public final class StreamTransactionOptions {
private Boolean allowImplicit;
@JsonIgnore
private Boolean allowDirtyRead;
private Boolean skipFastLockRound;

public StreamTransactionOptions() {
super();
Expand Down Expand Up @@ -148,4 +149,25 @@ public StreamTransactionOptions allowDirtyRead(final Boolean allowDirtyRead) {
return this;
}

public Boolean getSkipFastLockRound() {
return skipFastLockRound;
}

/**
* @param skipFastLockRound Whether to disable fast locking for write operations. Skipping the fast lock round can
* be faster overall if there are many concurrent Stream Transactions queued that all try
* to lock the same collection exclusively. It avoids deadlocking and retrying which can
* occur with the fast locking by guaranteeing a deterministic locking order at the expense
* of each actual locking operation taking longer.
* Fast locking should not be skipped for read-only Stream Transactions because it degrades
* performance if there are no concurrent transactions that use exclusive locks on the same
* collection.
* Default: {@code false}
* @return options
* @since ArangoDB 3.12.0
*/
public StreamTransactionOptions skipFastLockRound(final Boolean skipFastLockRound) {
this.skipFastLockRound = skipFastLockRound;
return this;
}
}