Uploaded image for project: 'Java Driver'
  1. Java Driver
  2. JAVA-5838

findOne method in kotlin-corountine not working as expected in terms of batchSize and basicBatch options

    • Type: Icon: Bug Bug
    • Resolution: Unresolved
    • Priority: Icon: Major - P3 Major - P3
    • None
    • Affects Version/s: None
    • Component/s: Kotlin
    • None
    • None
    • Java Drivers
    • None
    • None
    • None
    • None
    • None
    • None

      The Kotlin coroutine driver Flow methods do not implement first rather they rely on the built-in coroutine first* extension methods.

      When working on https://jira.mongodb.org/browse/JAVA-5666, we found findOne works as expected per its requirement everywhere, except for kotlin-corountine, as batchSize = 64 was sent out. So when conflicts with SyncFindIterable's inherited method `first` from SyncMongoIterable returns element instead, as below (in SyncMongoIterable):
       

      override fun first(): T? = runBlocking { delegate.firstOrNull() }

      For this reason, SyncFindIterable's first() method won't hit  the underlying FindPublisher's first() method as in other modules, which would emulate findOne behaviour including batchSize()  and basicBatch options.

            Assignee:
            Unassigned Unassigned
            Reporter:
            nathan.xu@mongodb.com Nathan Xu
            None
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              None
              None
              None
              None