I’m trying to do this:
Meteor.users.update({}, {
$set: {
someField: 20,
},
}, {
multi: true,
});
Works fine in development with a small user collection, but doesn’t update in production with hundreds of thousands of users.
Anyone else run into this issue? It may be Mongo specific.