Add improved Bulk Write API for Java Reactive Driver#1583
Merged
vbabanin merged 31 commits intomongodb:JAVA-4586_bulk-writefrom Jan 2, 2025
Merged
Add improved Bulk Write API for Java Reactive Driver#1583vbabanin merged 31 commits intomongodb:JAVA-4586_bulk-writefrom
vbabanin merged 31 commits intomongodb:JAVA-4586_bulk-writefrom
Conversation
- Created and documented the new Reactive Bulk Write API - Enabled unified and prose tests for reactive Bulk Write API JAVA-5530
JAVA-5530
JAVA-5530
JAVA-5530
vbabanin
commented
Dec 14, 2024
| org.junit.jupiter.api.Assumptions.assumeTrue(java.lang.Boolean.parseBoolean(toString()), "BULK-TODO implement") | ||
| TODO("BULK-TODO implement") | ||
| org.junit.jupiter.api.Assumptions.assumeTrue( | ||
| java.lang.Boolean.parseBoolean(toString()), "BULK-TODO Kotlin implement") |
Member
Author
There was a problem hiding this comment.
I have updated the naming to specifically ignore Kotlin tests in the UnifiedTestRunner to ensure that only these tests are skipped on assumption errors until the Kotlin API is implemented.
JAVA-5530
JAVA-5530
JAVA-5530
stIncMale
requested changes
Dec 16, 2024
…st.java Co-authored-by: Valentin Kovalenko <[email protected]>
…st.java Co-authored-by: Valentin Kovalenko <[email protected]>
Co-authored-by: Valentin Kovalenko <[email protected]>
…lient/MongoCluster.java Co-authored-by: Valentin Kovalenko <[email protected]>
…java Co-authored-by: Valentin Kovalenko <[email protected]>
Co-authored-by: Valentin Kovalenko <[email protected]>
Remove redundant methods. JAVA-5530
JAVA-5530
stIncMale
requested changes
Dec 17, 2024
| * </ul> | ||
| * | ||
| * @throws MongoException When a {@linkplain ClientBulkWriteException#getError() top-level error} happens. | ||
| * @throws MongoException When a {@linkplain ClientBulkWriteException#getCause() top-level error} happens. |
Member
There was a problem hiding this comment.
Thank you! I missed this when I refactored out ClientBulkWriteException.getError.
JAVA-5530
stIncMale
requested changes
Dec 17, 2024
…WriteOperation.java Co-authored-by: Valentin Kovalenko <[email protected]>
…WriteOperation.java Co-authored-by: Valentin Kovalenko <[email protected]>
…or.java Co-authored-by: Valentin Kovalenko <[email protected]>
…WriteOperation.java Co-authored-by: Valentin Kovalenko <[email protected]>
…WriteOperation.java Co-authored-by: Valentin Kovalenko <[email protected]>
…WriteOperation.java Co-authored-by: Valentin Kovalenko <[email protected]>
…WriteOperation.java Co-authored-by: Valentin Kovalenko <[email protected]>
- Remove redundunt checks. - Rename test methods. JAVA-5530
JAVA-5530
JAVA-5530
JAVA-5530
stIncMale
reviewed
Dec 20, 2024
Co-authored-by: Valentin Kovalenko <[email protected]>
stIncMale
approved these changes
Dec 20, 2024
Member
stIncMale
left a comment
There was a problem hiding this comment.
Thank you 👍 Though something is suspicious with the test failures - there seem to be too many of them.
Member
Author
|
Thank you for the great suggestions, @stIncMale! The structure of the async code now aligns more closely with the sync code. Regarding the tests, the Azure tests failed due to network connectivity issues. After rerunning, they are consistently green. |
This file contains hidden or 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
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.
JAVA-5530