-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IGNITE-23747 Support timeouts for RO transactions
* Timeouts for RO transactions are supported * Data availability time is used as a default RO transaction timeout * After the timeout expires, an RO transaction gets aborted; we rely on existing cleanup mechanism to close remote cursors of this transaction and unlock its LWM locks * RO transaction is guaranteed to not be aborted automatically until its timeout expires, but it might live longer than its timeout * TxManager API has been revamped to make distinction between implicit and explicit transaction initiation more visible
- Loading branch information
Showing
49 changed files
with
1,108 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
91 changes: 91 additions & 0 deletions
91
modules/api/src/test/java/org/apache/ignite/tx/TransactionOptionsTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.ignite.tx; | ||
|
||
import static org.hamcrest.MatcherAssert.assertThat; | ||
import static org.hamcrest.Matchers.is; | ||
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow; | ||
import static org.junit.jupiter.api.Assertions.assertSame; | ||
import static org.junit.jupiter.api.Assertions.assertThrows; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
class TransactionOptionsTest { | ||
@Test | ||
void readOnlyIsFalseByDefault() { | ||
assertThat(new TransactionOptions().readOnly(), is(false)); | ||
} | ||
|
||
@Test | ||
void readOnlyStatusIsSet() { | ||
var options = new TransactionOptions(); | ||
|
||
options.readOnly(true); | ||
|
||
assertThat(options.readOnly(), is(true)); | ||
} | ||
|
||
@Test | ||
void readOnlySetterReturnsSameObject() { | ||
var options = new TransactionOptions(); | ||
|
||
TransactionOptions afterSetting = options.readOnly(true); | ||
|
||
assertSame(options, afterSetting); | ||
} | ||
|
||
@Test | ||
void timeoutIsZeroByDefault() { | ||
assertThat(new TransactionOptions().timeoutMillis(), is(0L)); | ||
} | ||
|
||
@Test | ||
void timeoutIsSet() { | ||
var options = new TransactionOptions(); | ||
|
||
options.timeoutMillis(3333); | ||
|
||
assertThat(options.timeoutMillis(), is(3333L)); | ||
} | ||
|
||
@Test | ||
void timeoutSetterReturnsSameObject() { | ||
var options = new TransactionOptions(); | ||
|
||
TransactionOptions afterSetting = options.timeoutMillis(3333); | ||
|
||
assertSame(options, afterSetting); | ||
} | ||
|
||
@Test | ||
void positiveTimeoutIsAllowed() { | ||
assertDoesNotThrow(() -> new TransactionOptions().timeoutMillis(0)); | ||
} | ||
|
||
@Test | ||
void zeroTimeoutIsAllowed() { | ||
assertDoesNotThrow(() -> new TransactionOptions().timeoutMillis(0)); | ||
} | ||
|
||
@Test | ||
void negativeTimeoutIsRejected() { | ||
IllegalArgumentException ex = assertThrows(IllegalArgumentException.class, () -> new TransactionOptions().timeoutMillis(-1)); | ||
|
||
assertThat(ex.getMessage(), is("Negative timeoutMillis: -1")); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.