Uploaded image for project: 'C# Driver'
  1. C# Driver
  2. CSHARP-1899

Indexs on fields in an array of subdocuments

    • Type: Icon: New Feature New Feature
    • Resolution: Won't Do
    • Priority: Icon: Minor - P4 Minor - P4
    • None
    • Affects Version/s: None
    • Component/s: Builders
    • Hide

      1. What would you like to communicate to the user about this feature?
      2. Would you like the user to see examples of the syntax and/or executable code and its output?
      3. Which versions of the driver/connector does this apply to?

      Show
      1. What would you like to communicate to the user about this feature? 2. Would you like the user to see examples of the syntax and/or executable code and its output? 3. Which versions of the driver/connector does this apply to?

      I have this query:

      	var cursor = groupCollection
      					.Find(
      						teamsQueryBuilder.ElemMatch(g => g.Teams, teamQueryBuilder.Eq(t => t.TeamId, teamId))
      					);
      
      	cursor.Options.Modifiers = new BsonDocument("$explain", true);
      	var result = cursor.Project(new BsonDocument()).FirstOrDefault();
      

      So, I created an index like this:

                  groupCollection.Indexes
                      .CreateOne(Builders<Group>.IndexKeys
                          .Ascending(g => g.Teams[-1].TeamId));
      
              {
                      "v" : 1,
                      "name" : "teams.$.teamId_1",
                      "key" : {
                              "teams.$.teamId" : 1
                      },
                      "ns" : "spochdb_dev.organization.teamgroups"
              }
      

      When I ran the query, I got the following explain:

      {
      	"cursor" : "BasicCursor",
      	"isMultiKey" : false,
      	"n" : 1,
      	"nscannedObjects" : 1,
      	"nscanned" : 1,
      	"nscannedObjectsAllPlans" : 1,
      	"nscannedAllPlans" : 1,
      	"scanAndOrder" : false,
      	"indexOnly" : false,
      	"nYields" : 0,
      	"nChunkSkips" : 0,
      	"millis" : 0,
      	"indexBounds" : {},
      	"allPlans" : [{
      			"cursor" : "BasicCursor",
      			"n" : 1,
      			"nscannedObjects" : 1,
      			"nscanned" : 1,
      			"indexBounds" : {}
      		}
      	],
      	"server" : "DESKTOP-J8M6V6N:27017"
      }
      

      But, if I change the index creation code to this:

      	groupCollection.Indexes
      		.CreateOne(Builders<Group>.IndexKeys
      			.Ascending("teams.teamId"));
      
              {
                      "v" : 1,
                      "name" : "teams.teamId_1",
                      "key" : {
                              "teams.teamId" : 1
                      },
                      "ns" : "spochdb_dev.organization.teamgroups"
              }
      

      and run the query again, I get the following explain:

      { {
      		"cursor" : "BtreeCursor teams.teamId_1",
      		"isMultiKey" : true,
      		"n" : 1,
      		"nscannedObjects" : 1,
      		"nscanned" : 1,
      		"nscannedObjectsAllPlans" : 1,
      		"nscannedAllPlans" : 1,
      		"scanAndOrder" : false,
      		"indexOnly" : false,
      		"nYields" : 0,
      		"nChunkSkips" : 0,
      		"millis" : 0,
      		"indexBounds" : {
      			"teams.teamId" : [[ObjectId("5881760396839d0e94fdf5a5"), ObjectId("5881760396839d0e94fdf5a5")]]
      		},
      		"allPlans" : [{
      				"cursor" : "BtreeCursor teams.teamId_1",
      				"n" : 1,
      				"nscannedObjects" : 1,
      				"nscanned" : 1,
      				"indexBounds" : {
      					"teams.teamId" : [[ObjectId("5881760396839d0e94fdf5a5"), ObjectId("5881760396839d0e94fdf5a5")]]
      				}
      			}
      		],
      		"oldPlan" : {
      			"cursor" : "BtreeCursor teams.teamId_1",
      			"indexBounds" : {
      				"teams.teamId" : [[ObjectId("5881760396839d0e94fdf5a5"), ObjectId("5881760396839d0e94fdf5a5")]]
      			}
      		},
      		"server" : "DESKTOP-J8M6V6N:27017"
      	}
      }
      

      We're using databse version v2.4.14 (git version 05bebf9ab15511a71bfbded684bb226014c0a553) at the moment, if that makes a difference.

      If it doesn't make a difference, why is the driver generating unusable indexes?

            Assignee:
            Unassigned Unassigned
            Reporter:
            jf_splyza John Fricker
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: