Uploaded image for project: 'Core Server'
  1. Core Server
  2. SERVER-9205

MongoS does not re-write $in queries which results in all terms in $in array being sent to all shards

    • Type: Icon: Improvement Improvement
    • Resolution: Duplicate
    • Priority: Icon: Major - P3 Major - P3
    • None
    • Affects Version/s: None
    • Component/s: Sharding
    • Labels:
      None

      In sharded environment, a query like
      {_id : {$in : [100, 200, 300, 400, 500, 600...]}}
      needs to be re-written by mongos by first resolving each _id value to the shard based on shard key (provided the shard key can be deduced from the query) and then sending corresponding sub-qery to the right shard.
      Example, if 100, 300, 500 belong to shard1 and 200, 400, 600 belong to shard2 MongoS needs to make exactly 2 queries:
      {_id : {$in : [100, 300, 500]}}
      to shard1
      and
      {_id : {$in : [200, 400, 600]}}
      to shard2.

            Assignee:
            Unassigned Unassigned
            Reporter:
            antoine Antoine Girbal
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: