forked from apache/pulsar
-
Notifications
You must be signed in to change notification settings - Fork 0
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
[ci-run][fix][flaky-test]PerformanceTransactionTest.testConsumeTxnMessage #13
Closed
Conversation
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
…pache#17798) * docs: Trino -> PrestoSQL Signed-off-by: tison <[email protected]> * Trino -> PrestoSQL for sql-rest-api Signed-off-by: tison <[email protected]> * Trino -> PrestoSQL for sql-deployment-configurations Signed-off-by: tison <[email protected]> * Trino -> PrestoSQL for sql-getting-started Signed-off-by: tison <[email protected]> * add caveat Signed-off-by: tison <[email protected]> Signed-off-by: tison <[email protected]>
We no longer sync this folder and it's reasonable to keep the truth on the pulsar-site repo. This refers to apache#17817.
This enables GitHub hyperlinks in IDEA for commits containing PR information
* Make BookieId work with PulsarRegistrationDriver * Switch to MetadataCache * checkstyle
* add missing files for 2.1.1-incubating * add missing files for 2.2.0 and 2.2.1 * add missing files for 2.3.0, 2.3.1 and 2.3.2 * add missing files for 2.4.0, 2.4.1, and 2.4.2 * add missing files for 2.5.1 and 2.5.2 * preview fix
4 tasks
poorbarcode
changed the title
Flaky/test consume txn message
[ci-run][fix][flaky-test]PerformanceTransactionTest.testConsumeTxnMessage
Sep 26, 2022
poorbarcode
force-pushed
the
flaky/testConsumeTxnMessage
branch
from
September 26, 2022 16:50
6027e10
to
3e7d1d9
Compare
poorbarcode
force-pushed
the
flaky/testConsumeTxnMessage
branch
from
September 26, 2022 17:14
3e7d1d9
to
7b934dc
Compare
congbobo184
pushed a commit
to apache/pulsar
that referenced
this pull request
Sep 29, 2022
…7837) Fixes: #14109 ### Motivation The expected execution flow for this test is: 1. send 505 messages 2. commit 10 transactions, every transaction ack 50 messages 3. receive the last 5 messages in the last transaction, wait for transaction timeout 4. confirm that the last 5 messages can be consumed by new consumer <strong>(High light)</strong> The default value for transaction TTL is 10 seconds, and the default value for `Awaitility.await` is also 10 seconds, so this test is not stable. Note: This is a guess cause, the problem is not reproduced locally. But after transaction TTL is set to 11s, the probability of the problem occurring is 100%. ### Modifications Fix flaky test - set transaction TTL to 5s Other changes - define a name for the task thread - acknowledge the last 5 messages ### Matching PR in forked repository PR in forked repository: - poorbarcode#13
poorbarcode
pushed a commit
that referenced
this pull request
Nov 27, 2022
…ons boot (#13) (apache#12667) (cherry picked from commit 515a69f)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
relate to: