1
0
Fork 0

create _fishbowl collection with same distribution as other system collections

This commit is contained in:
jsteemann 2018-07-17 20:42:27 +02:00
parent 3991525eea
commit 3c1b607e95
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ function getFishbowlUrl () {
var getFishbowlStorage = function () {
var c = db._collection('_fishbowl');
if (c === null) {
c = db._create('_fishbowl', { isSystem: true });
c = db._create('_fishbowl', { isSystem: true, distributeShardsLike: '_graphs' });
}
return c;