Yandex Cloud
  • Сервисы
  • Решения
  • Почему Yandex Cloud
  • Сообщество
  • Тарифы
  • Документация
  • Связаться с нами
Подключиться
Language / Region
© 2022 ООО «Яндекс.Облако»
Yandex Managed Service for MongoDB
  • Начало работы
  • Пошаговые инструкции
    • Все инструкции
    • Информация об имеющихся кластерах
    • Создание кластера
    • Подключение к базе данных
    • Остановка и запуск кластера
    • Изменение настроек кластера и базы данных
    • Переключение первичной реплики
    • Обновление версии MongoDB
    • Управление базами данных
    • Управление хостами кластера
    • Управление пользователями БД
    • Управление резервными копиями
    • Управление шардами
    • Удаление кластера
    • Мониторинг состояния кластера и хостов
    • Диагностика производительности
    • Инструменты для анализа производительности
  • Практические руководства
    • Шардирование коллекций
    • Миграция данных в Managed Service for MongoDB
    • Перенос коллекций из MongoDB в Managed Service for MongoDB
    • Анализ производительности и оптимизация
  • Концепции
    • Взаимосвязь ресурсов сервиса
    • Классы хостов
      • Действующие классы хостов
      • Архив
        • До 1 июня 2020 года
      • Использование устаревших классов хостов
    • Сеть в Managed Service for MongoDB
    • Квоты и лимиты
    • Хранилище в Managed Service for MongoDB
    • Резервные копии
    • Репликация
    • Шардирование
    • Пользователи и роли
    • Техническое обслуживание
    • Поддерживаемые клиенты
    • Настройки MongoDB
  • Управление доступом
  • Правила тарификации
    • Действующие правила
    • Архив
      • До 1 января 2019 года
      • С 1 января до 1 марта 2019 года
      • С 1 марта 2019 года до 1 февраля 2020 года
  • Справочник API
    • Аутентификация в API
    • gRPC (англ.)
      • Overview
      • BackupService
      • ClusterService
      • DatabaseService
      • ResourcePresetService
      • UserService
      • OperationService
    • REST (англ.)
      • Overview
      • Backup
        • Overview
        • delete
        • get
        • list
      • Cluster
        • Overview
        • addHosts
        • addShard
        • backup
        • create
        • delete
        • deleteHosts
        • deleteShard
        • enableSharding
        • get
        • getShard
        • list
        • listBackups
        • listHosts
        • listLogs
        • listOperations
        • listShards
        • move
        • rescheduleMaintenance
        • resetupHosts
        • restartHosts
        • restore
        • start
        • stepdownHosts
        • stop
        • streamLogs
        • update
      • Database
        • Overview
        • create
        • delete
        • get
        • list
      • ResourcePreset
        • Overview
        • get
        • list
      • User
        • Overview
        • create
        • delete
        • get
        • grantPermission
        • list
        • revokePermission
        • update
      • Operation
        • Overview
        • get
  • История изменений
  • Вопросы и ответы
    • Общие вопросы
    • Вопросы о MongoDB
    • Все вопросы на одной странице
  1. Справочник API
  2. REST (англ.)
  3. Cluster
  4. list

Method list

Статья создана
Yandex.Cloud
,
улучшена
amatol
  • HTTP request
  • Query parameters
  • Response

Retrieves the list of MongoDB Cluster resources that belong
to the specified folder.

HTTP request

GET https://mdb.api.cloud.yandex.net/managed-mongodb/v1/clusters

Query parameters

Parameter Description
folderId Required. ID of the folder to list MongoDB clusters in. To get the folder ID, use a list request. The maximum string length in characters is 50.
pageSize The maximum value is 1000.
pageToken Page token. To get the next page of results, set pageToken to the nextPageToken returned by a previous list request. The maximum string length in characters is 100.
filter A filter expression that filters resources listed in the response. The expression must specify: 1. The field name. Currently you can only use filtering with the Cluster.name field. 2. An = operator. 3. The value in double quotes ("). Must be 1-63 characters long and match the regular expression [a-zA-Z0-9_-]+. The maximum string length in characters is 1000.

Response

HTTP Code: 200 - OK

{
  "clusters": [
    {
      "id": "string",
      "folderId": "string",
      "createdAt": "string",
      "name": "string",
      "description": "string",
      "labels": "object",
      "environment": "string",
      "monitoring": [
        {
          "name": "string",
          "description": "string",
          "link": "string"
        }
      ],
      "config": {
        "version": "string",
        "featureCompatibilityVersion": "string",
        "backupWindowStart": {
          "hours": "integer",
          "minutes": "integer",
          "seconds": "integer",
          "nanos": "integer"
        },
        "backupRetainPeriodDays": "integer",
        "access": {
          "dataLens": true,
          "dataTransfer": true
        },

        // `clusters[].config` includes only one of the fields `mongodb_3_6`, `mongodb_4_0`, `mongodb_4_2`, `mongodb_4_4`, `mongodb_5_0`, `mongodb_4_4Enterprise`, `mongodb_5_0Enterprise`
        "mongodb_3_6": {
          "mongod": {
            "config": {
              "effectiveConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    },
                    "collectionConfig": {
                      "blockCompressor": "string"
                    }
                  },
                  "journal": {
                    "enabled": true,
                    "commitInterval": "integer"
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    },
                    "collectionConfig": {
                      "blockCompressor": "string"
                    }
                  },
                  "journal": {
                    "enabled": true,
                    "commitInterval": "integer"
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    },
                    "collectionConfig": {
                      "blockCompressor": "string"
                    }
                  },
                  "journal": {
                    "enabled": true,
                    "commitInterval": "integer"
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          },
          "mongocfg": {
            "config": {
              "effectiveConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          },
          "mongos": {
            "config": {
              "effectiveConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          },
          "mongoinfra": {
            "configMongos": {
              "effectiveConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "configMongocfg": {
              "effectiveConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          }
        },
        "mongodb_4_0": {
          "mongod": {
            "config": {
              "effectiveConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    },
                    "collectionConfig": {
                      "blockCompressor": "string"
                    }
                  },
                  "journal": {
                    "commitInterval": "integer"
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    },
                    "collectionConfig": {
                      "blockCompressor": "string"
                    }
                  },
                  "journal": {
                    "commitInterval": "integer"
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    },
                    "collectionConfig": {
                      "blockCompressor": "string"
                    }
                  },
                  "journal": {
                    "commitInterval": "integer"
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          },
          "mongocfg": {
            "config": {
              "effectiveConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          },
          "mongos": {
            "config": {
              "effectiveConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          },
          "mongoinfra": {
            "configMongos": {
              "effectiveConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "configMongocfg": {
              "effectiveConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          }
        },
        "mongodb_4_2": {
          "mongod": {
            "config": {
              "effectiveConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    },
                    "collectionConfig": {
                      "blockCompressor": "string"
                    }
                  },
                  "journal": {
                    "commitInterval": "integer"
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    },
                    "collectionConfig": {
                      "blockCompressor": "string"
                    }
                  },
                  "journal": {
                    "commitInterval": "integer"
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    },
                    "collectionConfig": {
                      "blockCompressor": "string"
                    }
                  },
                  "journal": {
                    "commitInterval": "integer"
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          },
          "mongocfg": {
            "config": {
              "effectiveConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          },
          "mongos": {
            "config": {
              "effectiveConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          },
          "mongoinfra": {
            "configMongos": {
              "effectiveConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "configMongocfg": {
              "effectiveConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          }
        },
        "mongodb_4_4": {
          "mongod": {
            "config": {
              "effectiveConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    },
                    "collectionConfig": {
                      "blockCompressor": "string"
                    }
                  },
                  "journal": {
                    "commitInterval": "integer"
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    },
                    "collectionConfig": {
                      "blockCompressor": "string"
                    }
                  },
                  "journal": {
                    "commitInterval": "integer"
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    },
                    "collectionConfig": {
                      "blockCompressor": "string"
                    }
                  },
                  "journal": {
                    "commitInterval": "integer"
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          },
          "mongocfg": {
            "config": {
              "effectiveConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          },
          "mongos": {
            "config": {
              "effectiveConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          },
          "mongoinfra": {
            "configMongos": {
              "effectiveConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "configMongocfg": {
              "effectiveConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          }
        },
        "mongodb_5_0": {
          "mongod": {
            "config": {
              "effectiveConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    },
                    "collectionConfig": {
                      "blockCompressor": "string"
                    }
                  },
                  "journal": {
                    "commitInterval": "integer"
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    },
                    "collectionConfig": {
                      "blockCompressor": "string"
                    }
                  },
                  "journal": {
                    "commitInterval": "integer"
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    },
                    "collectionConfig": {
                      "blockCompressor": "string"
                    }
                  },
                  "journal": {
                    "commitInterval": "integer"
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          },
          "mongocfg": {
            "config": {
              "effectiveConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          },
          "mongos": {
            "config": {
              "effectiveConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          },
          "mongoinfra": {
            "configMongos": {
              "effectiveConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "configMongocfg": {
              "effectiveConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          }
        },
        "mongodb_4_4Enterprise": {
          "mongod": {
            "config": {
              "effectiveConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    },
                    "collectionConfig": {
                      "blockCompressor": "string"
                    }
                  },
                  "journal": {
                    "commitInterval": "integer"
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                },
                "security": {
                  "enableEncryption": true,
                  "kmip": {
                    "serverName": "string",
                    "port": "integer",
                    "serverCa": "string",
                    "clientCertificate": "string",
                    "keyIdentifier": "string"
                  }
                },
                "auditLog": {
                  "filter": "string"
                },
                "setParameter": {
                  "auditAuthorizationSuccess": true
                }
              },
              "userConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    },
                    "collectionConfig": {
                      "blockCompressor": "string"
                    }
                  },
                  "journal": {
                    "commitInterval": "integer"
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                },
                "security": {
                  "enableEncryption": true,
                  "kmip": {
                    "serverName": "string",
                    "port": "integer",
                    "serverCa": "string",
                    "clientCertificate": "string",
                    "keyIdentifier": "string"
                  }
                },
                "auditLog": {
                  "filter": "string"
                },
                "setParameter": {
                  "auditAuthorizationSuccess": true
                }
              },
              "defaultConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    },
                    "collectionConfig": {
                      "blockCompressor": "string"
                    }
                  },
                  "journal": {
                    "commitInterval": "integer"
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                },
                "security": {
                  "enableEncryption": true,
                  "kmip": {
                    "serverName": "string",
                    "port": "integer",
                    "serverCa": "string",
                    "clientCertificate": "string",
                    "keyIdentifier": "string"
                  }
                },
                "auditLog": {
                  "filter": "string"
                },
                "setParameter": {
                  "auditAuthorizationSuccess": true
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          },
          "mongocfg": {
            "config": {
              "effectiveConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          },
          "mongos": {
            "config": {
              "effectiveConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          },
          "mongoinfra": {
            "configMongos": {
              "effectiveConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "configMongocfg": {
              "effectiveConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          }
        },
        "mongodb_5_0Enterprise": {
          "mongod": {
            "config": {
              "effectiveConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    },
                    "collectionConfig": {
                      "blockCompressor": "string"
                    }
                  },
                  "journal": {
                    "commitInterval": "integer"
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                },
                "security": {
                  "enableEncryption": true,
                  "kmip": {
                    "serverName": "string",
                    "port": "integer",
                    "serverCa": "string",
                    "clientCertificate": "string",
                    "keyIdentifier": "string"
                  }
                },
                "auditLog": {
                  "filter": "string",
                  "runtimeConfiguration": true
                },
                "setParameter": {
                  "auditAuthorizationSuccess": true
                }
              },
              "userConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    },
                    "collectionConfig": {
                      "blockCompressor": "string"
                    }
                  },
                  "journal": {
                    "commitInterval": "integer"
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                },
                "security": {
                  "enableEncryption": true,
                  "kmip": {
                    "serverName": "string",
                    "port": "integer",
                    "serverCa": "string",
                    "clientCertificate": "string",
                    "keyIdentifier": "string"
                  }
                },
                "auditLog": {
                  "filter": "string",
                  "runtimeConfiguration": true
                },
                "setParameter": {
                  "auditAuthorizationSuccess": true
                }
              },
              "defaultConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    },
                    "collectionConfig": {
                      "blockCompressor": "string"
                    }
                  },
                  "journal": {
                    "commitInterval": "integer"
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                },
                "security": {
                  "enableEncryption": true,
                  "kmip": {
                    "serverName": "string",
                    "port": "integer",
                    "serverCa": "string",
                    "clientCertificate": "string",
                    "keyIdentifier": "string"
                  }
                },
                "auditLog": {
                  "filter": "string",
                  "runtimeConfiguration": true
                },
                "setParameter": {
                  "auditAuthorizationSuccess": true
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          },
          "mongocfg": {
            "config": {
              "effectiveConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          },
          "mongos": {
            "config": {
              "effectiveConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          },
          "mongoinfra": {
            "configMongos": {
              "effectiveConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "configMongocfg": {
              "effectiveConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "userConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              },
              "defaultConfig": {
                "storage": {
                  "wiredTiger": {
                    "engineConfig": {
                      "cacheSizeGb": "number"
                    }
                  }
                },
                "operationProfiling": {
                  "mode": "string",
                  "slowOpThreshold": "integer"
                },
                "net": {
                  "maxIncomingConnections": "integer"
                }
              }
            },
            "resources": {
              "resourcePresetId": "string",
              "diskSize": "string",
              "diskTypeId": "string"
            }
          }
        },
        // end of the list of possible fields`clusters[].config`

      },
      "networkId": "string",
      "health": "string",
      "status": "string",
      "sharded": true,
      "maintenanceWindow": {

        // `clusters[].maintenanceWindow` includes only one of the fields `anytime`, `weeklyMaintenanceWindow`
        "anytime": {},
        "weeklyMaintenanceWindow": {
          "day": "string",
          "hour": "string"
        },
        // end of the list of possible fields`clusters[].maintenanceWindow`

      },
      "plannedOperation": {
        "info": "string",
        "delayedUntil": "string"
      },
      "securityGroupIds": [
        "string"
      ],
      "deletionProtection": true
    }
  ],
  "nextPageToken": "string"
}
Field Description
clusters[] object

A managed MongoDB cluster. For more information, see the documentation.

clusters[].
id
string

ID of the MongoDB cluster. This ID is assigned by MDB at creation time.

clusters[].
folderId
string

ID of the folder that the MongoDB cluster belongs to.

clusters[].
createdAt
string (date-time)

Creation timestamp in RFC3339 text format.

String in RFC3339 text format.

clusters[].
name
string

Name of the MongoDB cluster. The name is unique within the folder. 1-63 characters long.

clusters[].
description
string

Description of the MongoDB cluster. 0-256 characters long.

clusters[].
labels
object

Custom labels for the MongoDB cluster as key:value pairs. Maximum 64 per resource.

clusters[].
environment
string

Deployment environment of the MongoDB cluster.

  • PRODUCTION: Stable environment with a conservative update policy: only hotfixes are applied during regular maintenance.
  • PRESTABLE: Environment with more aggressive update policy: new versions are rolled out irrespective of backward compatibility.
clusters[].
monitoring[]
object

Monitoring system.

clusters[].
monitoring[].
name
string

Name of the monitoring system.

clusters[].
monitoring[].
description
string

Description of the monitoring system.

clusters[].
monitoring[].
link
string

Link to the monitoring system charts for the MongoDB cluster.

clusters[].
config
object

Configuration of the MongoDB cluster.

clusters[].
config.
version
string

Version of MongoDB server software. Possible values: 3.6, 4.0, 4.2, 4.4, 4.4-enterprise, 5.0, 5.0-enterprise.

clusters[].
config.
featureCompatibilityVersion
string

MongoDB feature compatibility version. See usage details in MongoDB documentation.

Possible values:

  • 3.6 - persist data compatibility for version 3.6. After setting this option the data will not be compatible with 3.4 or lower.
  • 4.0 - persist data compatibility for version 4.0. After setting this option the data will not be compatible with 3.6 or lower.
  • 4.2 - persist data compatibility for version 4.2. After setting this option the data will not be compatible with 4.0 or lower.
  • 4.4 - persist data compatibility for version 4.4. After setting this option the data will not be compatible with 4.2 or lower.
  • 5.0 - persist data compatibility for version 5.0. After setting this option the data will not be compatible with 5.0 or lower.
clusters[].
config.
backupWindowStart
object
Time to start the daily backup, in the UTC timezone.

Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and google.protobuf.Timestamp.

clusters[].
config.
backupWindowStart.
hours
integer (int32)

Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.

clusters[].
config.
backupWindowStart.
minutes
integer (int32)

Minutes of hour of day. Must be from 0 to 59.

clusters[].
config.
backupWindowStart.
seconds
integer (int32)

Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.

clusters[].
config.
backupWindowStart.
nanos
integer (int32)

Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.

clusters[].
config.
backupRetainPeriodDays
integer (int64)

Retain period of automatically created backup in days

clusters[].
config.
access
object
Access policy to DB
clusters[].
config.
access.
dataLens
boolean (boolean)

Allow access for DataLens

clusters[].
config.
access.
dataTransfer
boolean (boolean)

Allow access for DataTransfer.

clusters[].
config.
mongodb_3_6
object
Configuration and resource allocation for a MongoDB 3.6 cluster.
clusters[].config includes only one of the fields mongodb_3_6, mongodb_4_0, mongodb_4_2, mongodb_4_4, mongodb_5_0, mongodb_4_4Enterprise, mongodb_5_0Enterprise

clusters[].
config.
mongodb_3_6.
mongod
object

Configuration and resource allocation for mongod in a MongoDB 3.6 cluster.

clusters[].
config.
mongodb_3_6.
mongod.
config
object

Configuration for a mongod 3.6 hosts.

clusters[].
config.
mongodb_3_6.
mongod.
config.
effectiveConfig
object

Effective mongod settings for a MongoDB 3.6 cluster (a combination of settings defined in userConfig and defaultConfig).

Configuration of a mongod daemon. Supported options are a limited subset of all options described in MongoDB documentation.

clusters[].
config.
mongodb_3_6.
mongod.
config.
effectiveConfig.
storage
object

storage section of mongod configuration.

clusters[].
config.
mongodb_3_6.
mongod.
config.
effectiveConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_3_6.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_3_6.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_3_6.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
collectionConfig
object

Collection configuration for WiredTiger.

clusters[].
config.
mongodb_3_6.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
collectionConfig.
blockCompressor
string

Default type of compression to use for collection data.

  • NONE: No compression.
  • SNAPPY: The Snappy compression.
  • ZLIB: The zlib compression.
clusters[].
config.
mongodb_3_6.
mongod.
config.
effectiveConfig.
storage.
journal
object

Configuration of the MongoDB journal.

clusters[].
config.
mongodb_3_6.
mongod.
config.
effectiveConfig.
storage.
journal.
enabled
boolean (boolean)

Whether the journal is enabled or disabled. Possible values:

  • true (default) - the journal is enabled.
  • false - the journal is disabled.
clusters[].
config.
mongodb_3_6.
mongod.
config.
effectiveConfig.
storage.
journal.
commitInterval
integer (int64)

Commit interval between journal operations, in milliseconds. Default: 100.

Acceptable values are 1 to 500, inclusive.

clusters[].
config.
mongodb_3_6.
mongod.
config.
effectiveConfig.
operationProfiling
object

operationProfiling section of mongod configuration.

clusters[].
config.
mongodb_3_6.
mongod.
config.
effectiveConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_3_6.
mongod.
config.
effectiveConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode.

Value must be greater than 0.

clusters[].
config.
mongodb_3_6.
mongod.
config.
effectiveConfig.
net
object

net section of mongod configuration.

clusters[].
config.
mongodb_3_6.
mongod.
config.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongod will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_3_6.
mongod.
config.
userConfig
object

User-defined mongod settings for a MongoDB 3.6 cluster.

Configuration of a mongod daemon. Supported options are a limited subset of all options described in MongoDB documentation.

clusters[].
config.
mongodb_3_6.
mongod.
config.
userConfig.
storage
object

storage section of mongod configuration.

clusters[].
config.
mongodb_3_6.
mongod.
config.
userConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_3_6.
mongod.
config.
userConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_3_6.
mongod.
config.
userConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_3_6.
mongod.
config.
userConfig.
storage.
wiredTiger.
collectionConfig
object

Collection configuration for WiredTiger.

clusters[].
config.
mongodb_3_6.
mongod.
config.
userConfig.
storage.
wiredTiger.
collectionConfig.
blockCompressor
string

Default type of compression to use for collection data.

  • NONE: No compression.
  • SNAPPY: The Snappy compression.
  • ZLIB: The zlib compression.
clusters[].
config.
mongodb_3_6.
mongod.
config.
userConfig.
storage.
journal
object

Configuration of the MongoDB journal.

clusters[].
config.
mongodb_3_6.
mongod.
config.
userConfig.
storage.
journal.
enabled
boolean (boolean)

Whether the journal is enabled or disabled. Possible values:

  • true (default) - the journal is enabled.
  • false - the journal is disabled.
clusters[].
config.
mongodb_3_6.
mongod.
config.
userConfig.
storage.
journal.
commitInterval
integer (int64)

Commit interval between journal operations, in milliseconds. Default: 100.

Acceptable values are 1 to 500, inclusive.

clusters[].
config.
mongodb_3_6.
mongod.
config.
userConfig.
operationProfiling
object

operationProfiling section of mongod configuration.

clusters[].
config.
mongodb_3_6.
mongod.
config.
userConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_3_6.
mongod.
config.
userConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode.

Value must be greater than 0.

clusters[].
config.
mongodb_3_6.
mongod.
config.
userConfig.
net
object

net section of mongod configuration.

clusters[].
config.
mongodb_3_6.
mongod.
config.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongod will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_3_6.
mongod.
config.
defaultConfig
object

Default mongod configuration for a MongoDB 3.6 cluster.

Configuration of a mongod daemon. Supported options are a limited subset of all options described in MongoDB documentation.

clusters[].
config.
mongodb_3_6.
mongod.
config.
defaultConfig.
storage
object

storage section of mongod configuration.

clusters[].
config.
mongodb_3_6.
mongod.
config.
defaultConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_3_6.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_3_6.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_3_6.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
collectionConfig
object

Collection configuration for WiredTiger.

clusters[].
config.
mongodb_3_6.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
collectionConfig.
blockCompressor
string

Default type of compression to use for collection data.

  • NONE: No compression.
  • SNAPPY: The Snappy compression.
  • ZLIB: The zlib compression.
clusters[].
config.
mongodb_3_6.
mongod.
config.
defaultConfig.
storage.
journal
object

Configuration of the MongoDB journal.

clusters[].
config.
mongodb_3_6.
mongod.
config.
defaultConfig.
storage.
journal.
enabled
boolean (boolean)

Whether the journal is enabled or disabled. Possible values:

  • true (default) - the journal is enabled.
  • false - the journal is disabled.
clusters[].
config.
mongodb_3_6.
mongod.
config.
defaultConfig.
storage.
journal.
commitInterval
integer (int64)

Commit interval between journal operations, in milliseconds. Default: 100.

Acceptable values are 1 to 500, inclusive.

clusters[].
config.
mongodb_3_6.
mongod.
config.
defaultConfig.
operationProfiling
object

operationProfiling section of mongod configuration.

clusters[].
config.
mongodb_3_6.
mongod.
config.
defaultConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_3_6.
mongod.
config.
defaultConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode.

Value must be greater than 0.

clusters[].
config.
mongodb_3_6.
mongod.
config.
defaultConfig.
net
object

net section of mongod configuration.

clusters[].
config.
mongodb_3_6.
mongod.
config.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongod will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_3_6.
mongod.
resources
object

Resources allocated to MongoDB hosts.

clusters[].
config.
mongodb_3_6.
mongod.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_3_6.
mongod.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_3_6.
mongod.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_3_6.
mongocfg
object

Configuration and resource allocation for mongocfg in a MongoDB 3.6 cluster.

clusters[].
config.
mongodb_3_6.
mongocfg.
config
object
clusters[].
config.
mongodb_3_6.
mongocfg.
config.
effectiveConfig
object

Effective mongocfg settings for a MongoDB 3.6 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
effectiveConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
effectiveConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
effectiveConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
effectiveConfig.
operationProfiling.
mode
string

Operation profiling level. For details, see MongoDB documentation.

  • OFF: The profiler is off and does not collect any data. This is the default profiler level.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_3_6.
mongocfg.
config.
effectiveConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
effectiveConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of incoming connections.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
userConfig
object

User-defined mongocfg settings for a MongoDB 3.6 cluster.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
userConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
userConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
userConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
userConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
userConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
userConfig.
operationProfiling.
mode
string

Operation profiling level. For details, see MongoDB documentation.

  • OFF: The profiler is off and does not collect any data. This is the default profiler level.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_3_6.
mongocfg.
config.
userConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
userConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of incoming connections.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
defaultConfig
object

Default mongocfg configuration for a MongoDB 3.6 cluster.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
defaultConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
defaultConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
defaultConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
defaultConfig.
operationProfiling.
mode
string

Operation profiling level. For details, see MongoDB documentation.

  • OFF: The profiler is off and does not collect any data. This is the default profiler level.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_3_6.
mongocfg.
config.
defaultConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
defaultConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_3_6.
mongocfg.
config.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of incoming connections.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_3_6.
mongocfg.
resources
object

Resources allocated to mongocfg hosts.

clusters[].
config.
mongodb_3_6.
mongocfg.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_3_6.
mongocfg.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_3_6.
mongocfg.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_3_6.
mongos
object

Configuration and resource allocation for mongos in a MongoDB 3.6 cluster.

clusters[].
config.
mongodb_3_6.
mongos.
config
object
clusters[].
config.
mongodb_3_6.
mongos.
config.
effectiveConfig
object

Effective settings for a MongoDB 3.6 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_3_6.
mongos.
config.
effectiveConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_3_6.
mongos.
config.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of incoming connections.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_3_6.
mongos.
config.
userConfig
object

User-defined settings for a MongoDB 3.6 cluster.

clusters[].
config.
mongodb_3_6.
mongos.
config.
userConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_3_6.
mongos.
config.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of incoming connections.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_3_6.
mongos.
config.
defaultConfig
object

Default configuration for a MongoDB 3.6 cluster.

clusters[].
config.
mongodb_3_6.
mongos.
config.
defaultConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_3_6.
mongos.
config.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of incoming connections.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_3_6.
mongos.
resources
object

Resources allocated to mongocfg hosts.

clusters[].
config.
mongodb_3_6.
mongos.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_3_6.
mongos.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_3_6.
mongos.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_3_6.
mongoinfra
object

Configuration and resource allocation for mongoinfra (mongos+mongocfg) in a MongoDB 3.6 cluster.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongos
object
clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongos.
effectiveConfig
object

Effective settings for a MongoDB 3.6 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongos.
effectiveConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongos.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of incoming connections.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongos.
userConfig
object

User-defined settings for a MongoDB 3.6 cluster.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongos.
userConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongos.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of incoming connections.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongos.
defaultConfig
object

Default configuration for a MongoDB 3.6 cluster.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongos.
defaultConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongos.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of incoming connections.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg
object
clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
effectiveConfig
object

Effective mongocfg settings for a MongoDB 3.6 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
effectiveConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
effectiveConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
effectiveConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
effectiveConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
effectiveConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
effectiveConfig.
operationProfiling.
mode
string

Operation profiling level. For details, see MongoDB documentation.

  • OFF: The profiler is off and does not collect any data. This is the default profiler level.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
effectiveConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
effectiveConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of incoming connections.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
userConfig
object

User-defined mongocfg settings for a MongoDB 3.6 cluster.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
userConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
userConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
userConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
userConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
userConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
userConfig.
operationProfiling.
mode
string

Operation profiling level. For details, see MongoDB documentation.

  • OFF: The profiler is off and does not collect any data. This is the default profiler level.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
userConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
userConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of incoming connections.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
defaultConfig
object

Default mongocfg configuration for a MongoDB 3.6 cluster.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
defaultConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
defaultConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
defaultConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
defaultConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
defaultConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
defaultConfig.
operationProfiling.
mode
string

Operation profiling level. For details, see MongoDB documentation.

  • OFF: The profiler is off and does not collect any data. This is the default profiler level.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
defaultConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
defaultConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_3_6.
mongoinfra.
configMongocfg.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of incoming connections.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_3_6.
mongoinfra.
resources
object

Resources allocated to mongoinfra (mongos+mongocfg) hosts.

clusters[].
config.
mongodb_3_6.
mongoinfra.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_3_6.
mongoinfra.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_3_6.
mongoinfra.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_4_0
object
Configuration and resource allocation for a MongoDB 4.0 cluster.
clusters[].config includes only one of the fields mongodb_3_6, mongodb_4_0, mongodb_4_2, mongodb_4_4, mongodb_5_0, mongodb_4_4Enterprise, mongodb_5_0Enterprise

clusters[].
config.
mongodb_4_0.
mongod
object

Configuration and resource allocation for mongod in a MongoDB 4.0 cluster.

clusters[].
config.
mongodb_4_0.
mongod.
config
object

Configuration for mongod 4.0 hosts.

clusters[].
config.
mongodb_4_0.
mongod.
config.
effectiveConfig
object

Effective mongod settings for a MongoDB 4.0 cluster (a combination of settings defined in userConfig and defaultConfig).

Configuration of a mongod daemon. Supported options are a limited subset of all options described in MongoDB documentation.

clusters[].
config.
mongodb_4_0.
mongod.
config.
effectiveConfig.
storage
object

storage section of mongod configuration.

clusters[].
config.
mongodb_4_0.
mongod.
config.
effectiveConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_0.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_0.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_0.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
collectionConfig
object

Collection configuration for WiredTiger.

clusters[].
config.
mongodb_4_0.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
collectionConfig.
blockCompressor
string

Default type of compression to use for collection data.

  • NONE: No compression.
  • SNAPPY: The Snappy compression.
  • ZLIB: The zlib compression.
clusters[].
config.
mongodb_4_0.
mongod.
config.
effectiveConfig.
storage.
journal
object

Configuration of the MongoDB journal.

clusters[].
config.
mongodb_4_0.
mongod.
config.
effectiveConfig.
storage.
journal.
commitInterval
integer (int64)

Commit interval between journal operations, in milliseconds. Default: 100.

Acceptable values are 1 to 500, inclusive.

clusters[].
config.
mongodb_4_0.
mongod.
config.
effectiveConfig.
operationProfiling
object

operationProfiling section of mongod configuration.

clusters[].
config.
mongodb_4_0.
mongod.
config.
effectiveConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_0.
mongod.
config.
effectiveConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode.

Value must be greater than 0.

clusters[].
config.
mongodb_4_0.
mongod.
config.
effectiveConfig.
net
object

net section of mongod configuration.

clusters[].
config.
mongodb_4_0.
mongod.
config.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongod will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_0.
mongod.
config.
userConfig
object

User-defined mongod settings for a MongoDB 4.0 cluster.

Configuration of a mongod daemon. Supported options are a limited subset of all options described in MongoDB documentation.

clusters[].
config.
mongodb_4_0.
mongod.
config.
userConfig.
storage
object

storage section of mongod configuration.

clusters[].
config.
mongodb_4_0.
mongod.
config.
userConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_0.
mongod.
config.
userConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_0.
mongod.
config.
userConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_0.
mongod.
config.
userConfig.
storage.
wiredTiger.
collectionConfig
object

Collection configuration for WiredTiger.

clusters[].
config.
mongodb_4_0.
mongod.
config.
userConfig.
storage.
wiredTiger.
collectionConfig.
blockCompressor
string

Default type of compression to use for collection data.

  • NONE: No compression.
  • SNAPPY: The Snappy compression.
  • ZLIB: The zlib compression.
clusters[].
config.
mongodb_4_0.
mongod.
config.
userConfig.
storage.
journal
object

Configuration of the MongoDB journal.

clusters[].
config.
mongodb_4_0.
mongod.
config.
userConfig.
storage.
journal.
commitInterval
integer (int64)

Commit interval between journal operations, in milliseconds. Default: 100.

Acceptable values are 1 to 500, inclusive.

clusters[].
config.
mongodb_4_0.
mongod.
config.
userConfig.
operationProfiling
object

operationProfiling section of mongod configuration.

clusters[].
config.
mongodb_4_0.
mongod.
config.
userConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_0.
mongod.
config.
userConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode.

Value must be greater than 0.

clusters[].
config.
mongodb_4_0.
mongod.
config.
userConfig.
net
object

net section of mongod configuration.

clusters[].
config.
mongodb_4_0.
mongod.
config.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongod will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_0.
mongod.
config.
defaultConfig
object

Default mongod configuration for a MongoDB 4.0 cluster.

Configuration of a mongod daemon. Supported options are a limited subset of all options described in MongoDB documentation.

clusters[].
config.
mongodb_4_0.
mongod.
config.
defaultConfig.
storage
object

storage section of mongod configuration.

clusters[].
config.
mongodb_4_0.
mongod.
config.
defaultConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_0.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_0.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_0.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
collectionConfig
object

Collection configuration for WiredTiger.

clusters[].
config.
mongodb_4_0.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
collectionConfig.
blockCompressor
string

Default type of compression to use for collection data.

  • NONE: No compression.
  • SNAPPY: The Snappy compression.
  • ZLIB: The zlib compression.
clusters[].
config.
mongodb_4_0.
mongod.
config.
defaultConfig.
storage.
journal
object

Configuration of the MongoDB journal.

clusters[].
config.
mongodb_4_0.
mongod.
config.
defaultConfig.
storage.
journal.
commitInterval
integer (int64)

Commit interval between journal operations, in milliseconds. Default: 100.

Acceptable values are 1 to 500, inclusive.

clusters[].
config.
mongodb_4_0.
mongod.
config.
defaultConfig.
operationProfiling
object

operationProfiling section of mongod configuration.

clusters[].
config.
mongodb_4_0.
mongod.
config.
defaultConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_0.
mongod.
config.
defaultConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode.

Value must be greater than 0.

clusters[].
config.
mongodb_4_0.
mongod.
config.
defaultConfig.
net
object

net section of mongod configuration.

clusters[].
config.
mongodb_4_0.
mongod.
config.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongod will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_0.
mongod.
resources
object

Resources allocated to mongod hosts.

clusters[].
config.
mongodb_4_0.
mongod.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_4_0.
mongod.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_4_0.
mongod.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_4_0.
mongocfg
object

Configuration and resource allocation for mongocfg in a MongoDB 4.0 cluster.

clusters[].
config.
mongodb_4_0.
mongocfg.
config
object

Configuration for mongocfg 4.0 hosts.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
effectiveConfig
object

Effective mongocfg settings for a MongoDB 4.0 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
effectiveConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
effectiveConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
effectiveConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
effectiveConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_0.
mongocfg.
config.
effectiveConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
effectiveConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
userConfig
object

User-defined mongocfg settings for a MongoDB 4.0 cluster.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
userConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
userConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
userConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
userConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
userConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
userConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_0.
mongocfg.
config.
userConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
userConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
defaultConfig
object

Default mongocfg configuration for a MongoDB 4.0 cluster.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
defaultConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
defaultConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
defaultConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
defaultConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_0.
mongocfg.
config.
defaultConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
defaultConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_0.
mongocfg.
config.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_0.
mongocfg.
resources
object

Resources allocated to mongocfg hosts.

clusters[].
config.
mongodb_4_0.
mongocfg.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_4_0.
mongocfg.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_4_0.
mongocfg.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_4_0.
mongos
object

Configuration and resource allocation for mongos in a MongoDB 4.0 cluster.

clusters[].
config.
mongodb_4_0.
mongos.
config
object

Configuration for mongos 4.0 hosts.

clusters[].
config.
mongodb_4_0.
mongos.
config.
effectiveConfig
object

Effective mongos settings for a MongoDB 4.0 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_4_0.
mongos.
config.
effectiveConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_0.
mongos.
config.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_0.
mongos.
config.
userConfig
object

User-defined mongos settings for a MongoDB 4.0 cluster.

clusters[].
config.
mongodb_4_0.
mongos.
config.
userConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_0.
mongos.
config.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_0.
mongos.
config.
defaultConfig
object

Default mongos configuration for a MongoDB 4.0 cluster.

clusters[].
config.
mongodb_4_0.
mongos.
config.
defaultConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_0.
mongos.
config.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_0.
mongos.
resources
object

Resources allocated to mongos hosts.

clusters[].
config.
mongodb_4_0.
mongos.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_4_0.
mongos.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_4_0.
mongos.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_4_0.
mongoinfra
object

Configuration and resource allocation for mongoinfra (mongos+mongocfg) in a MongoDB 4.0 cluster.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongos
object
clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongos.
effectiveConfig
object

Effective mongos settings for a MongoDB 4.0 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongos.
effectiveConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongos.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongos.
userConfig
object

User-defined mongos settings for a MongoDB 4.0 cluster.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongos.
userConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongos.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongos.
defaultConfig
object

Default mongos configuration for a MongoDB 4.0 cluster.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongos.
defaultConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongos.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg
object
clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
effectiveConfig
object

Effective mongocfg settings for a MongoDB 4.0 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
effectiveConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
effectiveConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
effectiveConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
effectiveConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
effectiveConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
effectiveConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
effectiveConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
effectiveConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
userConfig
object

User-defined mongocfg settings for a MongoDB 4.0 cluster.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
userConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
userConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
userConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
userConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
userConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
userConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
userConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
userConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
defaultConfig
object

Default mongocfg configuration for a MongoDB 4.0 cluster.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
defaultConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
defaultConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
defaultConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
defaultConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
defaultConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
defaultConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
defaultConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
defaultConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_0.
mongoinfra.
configMongocfg.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_0.
mongoinfra.
resources
object

Resources allocated to mongoinfra (mongos+mongocfg) hosts.

clusters[].
config.
mongodb_4_0.
mongoinfra.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_4_0.
mongoinfra.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_4_0.
mongoinfra.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_4_2
object
Configuration and resource allocation for a MongoDB 4.2 cluster.
clusters[].config includes only one of the fields mongodb_3_6, mongodb_4_0, mongodb_4_2, mongodb_4_4, mongodb_5_0, mongodb_4_4Enterprise, mongodb_5_0Enterprise

clusters[].
config.
mongodb_4_2.
mongod
object

Configuration and resource allocation for mongod in a MongoDB 4.2 cluster.

clusters[].
config.
mongodb_4_2.
mongod.
config
object

Configuration for mongod 4.2 hosts.

clusters[].
config.
mongodb_4_2.
mongod.
config.
effectiveConfig
object

Effective mongod settings for a MongoDB 4.2 cluster (a combination of settings defined in userConfig and defaultConfig).

Configuration of a mongod daemon. Supported options are a limited subset of all options described in MongoDB documentation.

clusters[].
config.
mongodb_4_2.
mongod.
config.
effectiveConfig.
storage
object

storage section of mongod configuration.

clusters[].
config.
mongodb_4_2.
mongod.
config.
effectiveConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_2.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_2.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_2.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
collectionConfig
object

Collection configuration for WiredTiger.

clusters[].
config.
mongodb_4_2.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
collectionConfig.
blockCompressor
string

Default type of compression to use for collection data.

  • NONE: No compression.
  • SNAPPY: The Snappy compression.
  • ZLIB: The zlib compression.
clusters[].
config.
mongodb_4_2.
mongod.
config.
effectiveConfig.
storage.
journal
object

Configuration of the MongoDB journal.

clusters[].
config.
mongodb_4_2.
mongod.
config.
effectiveConfig.
storage.
journal.
commitInterval
integer (int64)

Commit interval between journal operations, in milliseconds. Default: 100.

Acceptable values are 1 to 500, inclusive.

clusters[].
config.
mongodb_4_2.
mongod.
config.
effectiveConfig.
operationProfiling
object

operationProfiling section of mongod configuration.

clusters[].
config.
mongodb_4_2.
mongod.
config.
effectiveConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_2.
mongod.
config.
effectiveConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode.

Value must be greater than 0.

clusters[].
config.
mongodb_4_2.
mongod.
config.
effectiveConfig.
net
object

net section of mongod configuration.

clusters[].
config.
mongodb_4_2.
mongod.
config.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongod will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_2.
mongod.
config.
userConfig
object

User-defined mongod settings for a MongoDB 4.2 cluster.

Configuration of a mongod daemon. Supported options are a limited subset of all options described in MongoDB documentation.

clusters[].
config.
mongodb_4_2.
mongod.
config.
userConfig.
storage
object

storage section of mongod configuration.

clusters[].
config.
mongodb_4_2.
mongod.
config.
userConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_2.
mongod.
config.
userConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_2.
mongod.
config.
userConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_2.
mongod.
config.
userConfig.
storage.
wiredTiger.
collectionConfig
object

Collection configuration for WiredTiger.

clusters[].
config.
mongodb_4_2.
mongod.
config.
userConfig.
storage.
wiredTiger.
collectionConfig.
blockCompressor
string

Default type of compression to use for collection data.

  • NONE: No compression.
  • SNAPPY: The Snappy compression.
  • ZLIB: The zlib compression.
clusters[].
config.
mongodb_4_2.
mongod.
config.
userConfig.
storage.
journal
object

Configuration of the MongoDB journal.

clusters[].
config.
mongodb_4_2.
mongod.
config.
userConfig.
storage.
journal.
commitInterval
integer (int64)

Commit interval between journal operations, in milliseconds. Default: 100.

Acceptable values are 1 to 500, inclusive.

clusters[].
config.
mongodb_4_2.
mongod.
config.
userConfig.
operationProfiling
object

operationProfiling section of mongod configuration.

clusters[].
config.
mongodb_4_2.
mongod.
config.
userConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_2.
mongod.
config.
userConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode.

Value must be greater than 0.

clusters[].
config.
mongodb_4_2.
mongod.
config.
userConfig.
net
object

net section of mongod configuration.

clusters[].
config.
mongodb_4_2.
mongod.
config.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongod will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_2.
mongod.
config.
defaultConfig
object

Default mongod configuration for a MongoDB 4.2 cluster.

Configuration of a mongod daemon. Supported options are a limited subset of all options described in MongoDB documentation.

clusters[].
config.
mongodb_4_2.
mongod.
config.
defaultConfig.
storage
object

storage section of mongod configuration.

clusters[].
config.
mongodb_4_2.
mongod.
config.
defaultConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_2.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_2.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_2.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
collectionConfig
object

Collection configuration for WiredTiger.

clusters[].
config.
mongodb_4_2.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
collectionConfig.
blockCompressor
string

Default type of compression to use for collection data.

  • NONE: No compression.
  • SNAPPY: The Snappy compression.
  • ZLIB: The zlib compression.
clusters[].
config.
mongodb_4_2.
mongod.
config.
defaultConfig.
storage.
journal
object

Configuration of the MongoDB journal.

clusters[].
config.
mongodb_4_2.
mongod.
config.
defaultConfig.
storage.
journal.
commitInterval
integer (int64)

Commit interval between journal operations, in milliseconds. Default: 100.

Acceptable values are 1 to 500, inclusive.

clusters[].
config.
mongodb_4_2.
mongod.
config.
defaultConfig.
operationProfiling
object

operationProfiling section of mongod configuration.

clusters[].
config.
mongodb_4_2.
mongod.
config.
defaultConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_2.
mongod.
config.
defaultConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode.

Value must be greater than 0.

clusters[].
config.
mongodb_4_2.
mongod.
config.
defaultConfig.
net
object

net section of mongod configuration.

clusters[].
config.
mongodb_4_2.
mongod.
config.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongod will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_2.
mongod.
resources
object

Resources allocated to mongod hosts.

clusters[].
config.
mongodb_4_2.
mongod.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_4_2.
mongod.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_4_2.
mongod.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_4_2.
mongocfg
object

Configuration and resource allocation for mongocfg in a MongoDB 4.2 cluster.

clusters[].
config.
mongodb_4_2.
mongocfg.
config
object

Configuration for mongocfg 4.2 hosts.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
effectiveConfig
object

Effective mongocfg settings for a MongoDB 4.2 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
effectiveConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
effectiveConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
effectiveConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
effectiveConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_2.
mongocfg.
config.
effectiveConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
effectiveConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
userConfig
object

User-defined mongocfg settings for a MongoDB 4.2 cluster.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
userConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
userConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
userConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
userConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
userConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
userConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_2.
mongocfg.
config.
userConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
userConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
defaultConfig
object

Default mongocfg configuration for a MongoDB 4.2 cluster.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
defaultConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
defaultConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
defaultConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
defaultConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_2.
mongocfg.
config.
defaultConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
defaultConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_2.
mongocfg.
config.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_2.
mongocfg.
resources
object

Resources allocated to mongocfg hosts.

clusters[].
config.
mongodb_4_2.
mongocfg.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_4_2.
mongocfg.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_4_2.
mongocfg.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_4_2.
mongos
object

Configuration and resource allocation for mongos in a MongoDB 4.2 cluster.

clusters[].
config.
mongodb_4_2.
mongos.
config
object

Configuration for mongos 4.2 hosts.

clusters[].
config.
mongodb_4_2.
mongos.
config.
effectiveConfig
object

Effective mongos settings for a MongoDB 4.2 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_4_2.
mongos.
config.
effectiveConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_2.
mongos.
config.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_2.
mongos.
config.
userConfig
object

User-defined mongos settings for a MongoDB 4.2 cluster.

clusters[].
config.
mongodb_4_2.
mongos.
config.
userConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_2.
mongos.
config.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_2.
mongos.
config.
defaultConfig
object

Default mongos configuration for a MongoDB 4.2 cluster.

clusters[].
config.
mongodb_4_2.
mongos.
config.
defaultConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_2.
mongos.
config.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_2.
mongos.
resources
object

Resources allocated to mongos hosts.

clusters[].
config.
mongodb_4_2.
mongos.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_4_2.
mongos.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_4_2.
mongos.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_4_2.
mongoinfra
object

Configuration and resource allocation for mongoinfra (mongos+mongocfg) in a MongoDB 4.2 cluster.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongos
object
clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongos.
effectiveConfig
object

Effective mongos settings for a MongoDB 4.2 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongos.
effectiveConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongos.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongos.
userConfig
object

User-defined mongos settings for a MongoDB 4.2 cluster.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongos.
userConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongos.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongos.
defaultConfig
object

Default mongos configuration for a MongoDB 4.2 cluster.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongos.
defaultConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongos.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg
object
clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
effectiveConfig
object

Effective mongocfg settings for a MongoDB 4.2 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
effectiveConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
effectiveConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
effectiveConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
effectiveConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
effectiveConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
effectiveConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
effectiveConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
effectiveConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
userConfig
object

User-defined mongocfg settings for a MongoDB 4.2 cluster.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
userConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
userConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
userConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
userConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
userConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
userConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
userConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
userConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
defaultConfig
object

Default mongocfg configuration for a MongoDB 4.2 cluster.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
defaultConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
defaultConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
defaultConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
defaultConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
defaultConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
defaultConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
defaultConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
defaultConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_2.
mongoinfra.
configMongocfg.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_2.
mongoinfra.
resources
object

Resources allocated to mongoinfra (mongos+mongocfg) hosts.

clusters[].
config.
mongodb_4_2.
mongoinfra.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_4_2.
mongoinfra.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_4_2.
mongoinfra.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_4_4
object
Configuration and resource allocation for a MongoDB 4.4 cluster.
clusters[].config includes only one of the fields mongodb_3_6, mongodb_4_0, mongodb_4_2, mongodb_4_4, mongodb_5_0, mongodb_4_4Enterprise, mongodb_5_0Enterprise

clusters[].
config.
mongodb_4_4.
mongod
object

Configuration and resource allocation for mongod in a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4.
mongod.
config
object

Configuration for mongod 4.4 hosts.

clusters[].
config.
mongodb_4_4.
mongod.
config.
effectiveConfig
object

Effective mongod settings for a MongoDB 4.4 cluster (a combination of settings defined in userConfig and defaultConfig).

Configuration of a mongod daemon. Supported options are a limited subset of all options described in MongoDB documentation.

clusters[].
config.
mongodb_4_4.
mongod.
config.
effectiveConfig.
storage
object

storage section of mongod configuration.

clusters[].
config.
mongodb_4_4.
mongod.
config.
effectiveConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_4.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_4.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_4.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
collectionConfig
object

Collection configuration for WiredTiger.

clusters[].
config.
mongodb_4_4.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
collectionConfig.
blockCompressor
string

Default type of compression to use for collection data.

  • NONE: No compression.
  • SNAPPY: The Snappy compression.
  • ZLIB: The zlib compression.
clusters[].
config.
mongodb_4_4.
mongod.
config.
effectiveConfig.
storage.
journal
object

Configuration of the MongoDB journal.

clusters[].
config.
mongodb_4_4.
mongod.
config.
effectiveConfig.
storage.
journal.
commitInterval
integer (int64)

Commit interval between journal operations, in milliseconds. Default: 100.

Acceptable values are 1 to 500, inclusive.

clusters[].
config.
mongodb_4_4.
mongod.
config.
effectiveConfig.
operationProfiling
object

operationProfiling section of mongod configuration.

clusters[].
config.
mongodb_4_4.
mongod.
config.
effectiveConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_4.
mongod.
config.
effectiveConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode.

Value must be greater than 0.

clusters[].
config.
mongodb_4_4.
mongod.
config.
effectiveConfig.
net
object

net section of mongod configuration.

clusters[].
config.
mongodb_4_4.
mongod.
config.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongod will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4.
mongod.
config.
userConfig
object

User-defined mongod settings for a MongoDB 4.4 cluster.

Configuration of a mongod daemon. Supported options are a limited subset of all options described in MongoDB documentation.

clusters[].
config.
mongodb_4_4.
mongod.
config.
userConfig.
storage
object

storage section of mongod configuration.

clusters[].
config.
mongodb_4_4.
mongod.
config.
userConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_4.
mongod.
config.
userConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_4.
mongod.
config.
userConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_4.
mongod.
config.
userConfig.
storage.
wiredTiger.
collectionConfig
object

Collection configuration for WiredTiger.

clusters[].
config.
mongodb_4_4.
mongod.
config.
userConfig.
storage.
wiredTiger.
collectionConfig.
blockCompressor
string

Default type of compression to use for collection data.

  • NONE: No compression.
  • SNAPPY: The Snappy compression.
  • ZLIB: The zlib compression.
clusters[].
config.
mongodb_4_4.
mongod.
config.
userConfig.
storage.
journal
object

Configuration of the MongoDB journal.

clusters[].
config.
mongodb_4_4.
mongod.
config.
userConfig.
storage.
journal.
commitInterval
integer (int64)

Commit interval between journal operations, in milliseconds. Default: 100.

Acceptable values are 1 to 500, inclusive.

clusters[].
config.
mongodb_4_4.
mongod.
config.
userConfig.
operationProfiling
object

operationProfiling section of mongod configuration.

clusters[].
config.
mongodb_4_4.
mongod.
config.
userConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_4.
mongod.
config.
userConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode.

Value must be greater than 0.

clusters[].
config.
mongodb_4_4.
mongod.
config.
userConfig.
net
object

net section of mongod configuration.

clusters[].
config.
mongodb_4_4.
mongod.
config.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongod will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4.
mongod.
config.
defaultConfig
object

Default mongod configuration for a MongoDB 4.4 cluster.

Configuration of a mongod daemon. Supported options are a limited subset of all options described in MongoDB documentation.

clusters[].
config.
mongodb_4_4.
mongod.
config.
defaultConfig.
storage
object

storage section of mongod configuration.

clusters[].
config.
mongodb_4_4.
mongod.
config.
defaultConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_4.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_4.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_4.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
collectionConfig
object

Collection configuration for WiredTiger.

clusters[].
config.
mongodb_4_4.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
collectionConfig.
blockCompressor
string

Default type of compression to use for collection data.

  • NONE: No compression.
  • SNAPPY: The Snappy compression.
  • ZLIB: The zlib compression.
clusters[].
config.
mongodb_4_4.
mongod.
config.
defaultConfig.
storage.
journal
object

Configuration of the MongoDB journal.

clusters[].
config.
mongodb_4_4.
mongod.
config.
defaultConfig.
storage.
journal.
commitInterval
integer (int64)

Commit interval between journal operations, in milliseconds. Default: 100.

Acceptable values are 1 to 500, inclusive.

clusters[].
config.
mongodb_4_4.
mongod.
config.
defaultConfig.
operationProfiling
object

operationProfiling section of mongod configuration.

clusters[].
config.
mongodb_4_4.
mongod.
config.
defaultConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_4.
mongod.
config.
defaultConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode.

Value must be greater than 0.

clusters[].
config.
mongodb_4_4.
mongod.
config.
defaultConfig.
net
object

net section of mongod configuration.

clusters[].
config.
mongodb_4_4.
mongod.
config.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongod will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4.
mongod.
resources
object

Resources allocated to mongod hosts.

clusters[].
config.
mongodb_4_4.
mongod.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_4_4.
mongod.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_4_4.
mongod.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_4_4.
mongocfg
object

Configuration and resource allocation for mongocfg in a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4.
mongocfg.
config
object

Configuration for mongocfg 4.4 hosts.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
effectiveConfig
object

Effective mongocfg settings for a MongoDB 4.4 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
effectiveConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
effectiveConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
effectiveConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
effectiveConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_4.
mongocfg.
config.
effectiveConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
effectiveConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
userConfig
object

User-defined mongocfg settings for a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
userConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
userConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
userConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
userConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
userConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
userConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_4.
mongocfg.
config.
userConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
userConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
defaultConfig
object

Default mongocfg configuration for a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
defaultConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
defaultConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
defaultConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
defaultConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_4.
mongocfg.
config.
defaultConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
defaultConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_4.
mongocfg.
config.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4.
mongocfg.
resources
object

Resources allocated to mongocfg hosts.

clusters[].
config.
mongodb_4_4.
mongocfg.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_4_4.
mongocfg.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_4_4.
mongocfg.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_4_4.
mongos
object

Configuration and resource allocation for mongos in a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4.
mongos.
config
object

Configuration for mongos 4.4 hosts.

clusters[].
config.
mongodb_4_4.
mongos.
config.
effectiveConfig
object

Effective mongos settings for a MongoDB 4.4 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_4_4.
mongos.
config.
effectiveConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_4.
mongos.
config.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4.
mongos.
config.
userConfig
object

User-defined mongos settings for a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4.
mongos.
config.
userConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_4.
mongos.
config.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4.
mongos.
config.
defaultConfig
object

Default mongos configuration for a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4.
mongos.
config.
defaultConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_4.
mongos.
config.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4.
mongos.
resources
object

Resources allocated to mongos hosts.

clusters[].
config.
mongodb_4_4.
mongos.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_4_4.
mongos.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_4_4.
mongos.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_4_4.
mongoinfra
object

Configuration and resource allocation for mongoinfra (mongos+mongocfg) in a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongos
object
clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongos.
effectiveConfig
object

Effective mongos settings for a MongoDB 4.4 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongos.
effectiveConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongos.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongos.
userConfig
object

User-defined mongos settings for a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongos.
userConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongos.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongos.
defaultConfig
object

Default mongos configuration for a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongos.
defaultConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongos.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg
object
clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
effectiveConfig
object

Effective mongocfg settings for a MongoDB 4.4 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
effectiveConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
effectiveConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
effectiveConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
effectiveConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
effectiveConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
effectiveConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
effectiveConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
effectiveConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
userConfig
object

User-defined mongocfg settings for a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
userConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
userConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
userConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
userConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
userConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
userConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
userConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
userConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
defaultConfig
object

Default mongocfg configuration for a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
defaultConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
defaultConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
defaultConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
defaultConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
defaultConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
defaultConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
defaultConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
defaultConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_4.
mongoinfra.
configMongocfg.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4.
mongoinfra.
resources
object

Resources allocated to mongoinfra (mongos+mongocfg) hosts.

clusters[].
config.
mongodb_4_4.
mongoinfra.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_4_4.
mongoinfra.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_4_4.
mongoinfra.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_5_0
object
Configuration and resource allocation for a MongoDB 5.0 cluster.
clusters[].config includes only one of the fields mongodb_3_6, mongodb_4_0, mongodb_4_2, mongodb_4_4, mongodb_5_0, mongodb_4_4Enterprise, mongodb_5_0Enterprise

clusters[].
config.
mongodb_5_0.
mongod
object

Configuration and resource allocation for mongod in a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0.
mongod.
config
object

Configuration for mongod 5.0 hosts.

clusters[].
config.
mongodb_5_0.
mongod.
config.
effectiveConfig
object

Effective mongod settings for a MongoDB 5.0 cluster (a combination of settings defined in userConfig and defaultConfig).

Configuration of a mongod daemon. Supported options are a limited subset of all options described in MongoDB documentation.

clusters[].
config.
mongodb_5_0.
mongod.
config.
effectiveConfig.
storage
object

storage section of mongod configuration.

clusters[].
config.
mongodb_5_0.
mongod.
config.
effectiveConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_5_0.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_5_0.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_5_0.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
collectionConfig
object

Collection configuration for WiredTiger.

clusters[].
config.
mongodb_5_0.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
collectionConfig.
blockCompressor
string

Default type of compression to use for collection data.

  • NONE: No compression.
  • SNAPPY: The Snappy compression.
  • ZLIB: The zlib compression.
clusters[].
config.
mongodb_5_0.
mongod.
config.
effectiveConfig.
storage.
journal
object

Configuration of the MongoDB journal.

clusters[].
config.
mongodb_5_0.
mongod.
config.
effectiveConfig.
storage.
journal.
commitInterval
integer (int64)

Commit interval between journal operations, in milliseconds. Default: 100.

Acceptable values are 1 to 500, inclusive.

clusters[].
config.
mongodb_5_0.
mongod.
config.
effectiveConfig.
operationProfiling
object

operationProfiling section of mongod configuration.

clusters[].
config.
mongodb_5_0.
mongod.
config.
effectiveConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_5_0.
mongod.
config.
effectiveConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode.

Value must be greater than 0.

clusters[].
config.
mongodb_5_0.
mongod.
config.
effectiveConfig.
net
object

net section of mongod configuration.

clusters[].
config.
mongodb_5_0.
mongod.
config.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongod will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0.
mongod.
config.
userConfig
object

User-defined mongod settings for a MongoDB 5.0 cluster.

Configuration of a mongod daemon. Supported options are a limited subset of all options described in MongoDB documentation.

clusters[].
config.
mongodb_5_0.
mongod.
config.
userConfig.
storage
object

storage section of mongod configuration.

clusters[].
config.
mongodb_5_0.
mongod.
config.
userConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_5_0.
mongod.
config.
userConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_5_0.
mongod.
config.
userConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_5_0.
mongod.
config.
userConfig.
storage.
wiredTiger.
collectionConfig
object

Collection configuration for WiredTiger.

clusters[].
config.
mongodb_5_0.
mongod.
config.
userConfig.
storage.
wiredTiger.
collectionConfig.
blockCompressor
string

Default type of compression to use for collection data.

  • NONE: No compression.
  • SNAPPY: The Snappy compression.
  • ZLIB: The zlib compression.
clusters[].
config.
mongodb_5_0.
mongod.
config.
userConfig.
storage.
journal
object

Configuration of the MongoDB journal.

clusters[].
config.
mongodb_5_0.
mongod.
config.
userConfig.
storage.
journal.
commitInterval
integer (int64)

Commit interval between journal operations, in milliseconds. Default: 100.

Acceptable values are 1 to 500, inclusive.

clusters[].
config.
mongodb_5_0.
mongod.
config.
userConfig.
operationProfiling
object

operationProfiling section of mongod configuration.

clusters[].
config.
mongodb_5_0.
mongod.
config.
userConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_5_0.
mongod.
config.
userConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode.

Value must be greater than 0.

clusters[].
config.
mongodb_5_0.
mongod.
config.
userConfig.
net
object

net section of mongod configuration.

clusters[].
config.
mongodb_5_0.
mongod.
config.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongod will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0.
mongod.
config.
defaultConfig
object

Default mongod configuration for a MongoDB 5.0 cluster.

Configuration of a mongod daemon. Supported options are a limited subset of all options described in MongoDB documentation.

clusters[].
config.
mongodb_5_0.
mongod.
config.
defaultConfig.
storage
object

storage section of mongod configuration.

clusters[].
config.
mongodb_5_0.
mongod.
config.
defaultConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_5_0.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_5_0.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_5_0.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
collectionConfig
object

Collection configuration for WiredTiger.

clusters[].
config.
mongodb_5_0.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
collectionConfig.
blockCompressor
string

Default type of compression to use for collection data.

  • NONE: No compression.
  • SNAPPY: The Snappy compression.
  • ZLIB: The zlib compression.
clusters[].
config.
mongodb_5_0.
mongod.
config.
defaultConfig.
storage.
journal
object

Configuration of the MongoDB journal.

clusters[].
config.
mongodb_5_0.
mongod.
config.
defaultConfig.
storage.
journal.
commitInterval
integer (int64)

Commit interval between journal operations, in milliseconds. Default: 100.

Acceptable values are 1 to 500, inclusive.

clusters[].
config.
mongodb_5_0.
mongod.
config.
defaultConfig.
operationProfiling
object

operationProfiling section of mongod configuration.

clusters[].
config.
mongodb_5_0.
mongod.
config.
defaultConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_5_0.
mongod.
config.
defaultConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode.

Value must be greater than 0.

clusters[].
config.
mongodb_5_0.
mongod.
config.
defaultConfig.
net
object

net section of mongod configuration.

clusters[].
config.
mongodb_5_0.
mongod.
config.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongod will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0.
mongod.
resources
object

Resources allocated to mongod hosts.

clusters[].
config.
mongodb_5_0.
mongod.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_5_0.
mongod.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_5_0.
mongod.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_5_0.
mongocfg
object

Configuration and resource allocation for mongocfg in a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0.
mongocfg.
config
object

Configuration for mongocfg 5.0 hosts.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
effectiveConfig
object

Effective mongocfg settings for a MongoDB 5.0 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
effectiveConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
effectiveConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
effectiveConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
effectiveConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_5_0.
mongocfg.
config.
effectiveConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
effectiveConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
userConfig
object

User-defined mongocfg settings for a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
userConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
userConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
userConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
userConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
userConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
userConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_5_0.
mongocfg.
config.
userConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
userConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
defaultConfig
object

Default mongocfg configuration for a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
defaultConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
defaultConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
defaultConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
defaultConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_5_0.
mongocfg.
config.
defaultConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
defaultConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_5_0.
mongocfg.
config.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0.
mongocfg.
resources
object

Resources allocated to mongocfg hosts.

clusters[].
config.
mongodb_5_0.
mongocfg.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_5_0.
mongocfg.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_5_0.
mongocfg.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_5_0.
mongos
object

Configuration and resource allocation for mongos in a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0.
mongos.
config
object

Configuration for mongos 5.0 hosts.

clusters[].
config.
mongodb_5_0.
mongos.
config.
effectiveConfig
object

Effective mongos settings for a MongoDB 5.0 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_5_0.
mongos.
config.
effectiveConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_5_0.
mongos.
config.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0.
mongos.
config.
userConfig
object

User-defined mongos settings for a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0.
mongos.
config.
userConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_5_0.
mongos.
config.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0.
mongos.
config.
defaultConfig
object

Default mongos configuration for a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0.
mongos.
config.
defaultConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_5_0.
mongos.
config.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0.
mongos.
resources
object

Resources allocated to mongos hosts.

clusters[].
config.
mongodb_5_0.
mongos.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_5_0.
mongos.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_5_0.
mongos.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_5_0.
mongoinfra
object

Configuration and resource allocation for mongoinfra (mongos+mongocfg) in a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongos
object
clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongos.
effectiveConfig
object

Effective mongos settings for a MongoDB 5.0 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongos.
effectiveConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongos.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongos.
userConfig
object

User-defined mongos settings for a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongos.
userConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongos.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongos.
defaultConfig
object

Default mongos configuration for a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongos.
defaultConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongos.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg
object
clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
effectiveConfig
object

Effective mongocfg settings for a MongoDB 5.0 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
effectiveConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
effectiveConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
effectiveConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
effectiveConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
effectiveConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
effectiveConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
effectiveConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
effectiveConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
userConfig
object

User-defined mongocfg settings for a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
userConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
userConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
userConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
userConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
userConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
userConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
userConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
userConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
defaultConfig
object

Default mongocfg configuration for a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
defaultConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
defaultConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
defaultConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
defaultConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
defaultConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
defaultConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
defaultConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
defaultConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_5_0.
mongoinfra.
configMongocfg.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0.
mongoinfra.
resources
object

Resources allocated to mongoinfra (mongos+mongocfg) hosts.

clusters[].
config.
mongodb_5_0.
mongoinfra.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_5_0.
mongoinfra.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_5_0.
mongoinfra.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_4_4Enterprise
object
Configuration and resource allocation for a MongoDB 4.4 Enterprise cluster.
clusters[].config includes only one of the fields mongodb_3_6, mongodb_4_0, mongodb_4_2, mongodb_4_4, mongodb_5_0, mongodb_4_4Enterprise, mongodb_5_0Enterprise

clusters[].
config.
mongodb_4_4Enterprise.
mongod
object

Configuration and resource allocation for mongod in a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config
object

Configuration for mongod 4.4 hosts.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig
object

Effective mongod settings for a MongoDB 4.4 cluster (a combination of settings defined in userConfig and defaultConfig).

Configuration of a mongod daemon. Supported options are a limited subset of all options described in MongoDB documentation.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
storage
object

storage section of mongod configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
collectionConfig
object

Collection configuration for WiredTiger.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
collectionConfig.
blockCompressor
string

Default type of compression to use for collection data.

  • NONE: No compression.
  • SNAPPY: The Snappy compression.
  • ZLIB: The zlib compression.
clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
storage.
journal
object

Configuration of the MongoDB journal.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
storage.
journal.
commitInterval
integer (int64)

Commit interval between journal operations, in milliseconds. Default: 100.

Acceptable values are 1 to 500, inclusive.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
operationProfiling
object

operationProfiling section of mongod configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode.

Value must be greater than 0.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
net
object

net section of mongod configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongod will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
security
object

security section of mongod configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
security.
enableEncryption
boolean (boolean)

If encryption at rest should be enabled or not

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
security.
kmip
object

kmip section of mongod security config

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
security.
kmip.
serverName
string

KMIP server name

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
security.
kmip.
port
integer (int64)

KMIP server port

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
security.
kmip.
serverCa
string

KMIP Server CA

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
security.
kmip.
clientCertificate
string

KMIP client certificate + private key (unencrypted)

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
security.
kmip.
keyIdentifier
string

KMIP Key identifier (if any)

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
auditLog
object

AuditLog section of mongod configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
auditLog.
filter
string

Audit filter

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
setParameter
object

SetParameter section of mongod configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
effectiveConfig.
setParameter.
auditAuthorizationSuccess
boolean (boolean)

Enables the auditing of authorization successes

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig
object

User-defined mongod settings for a MongoDB 4.4 cluster.

Configuration of a mongod daemon. Supported options are a limited subset of all options described in MongoDB documentation.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
storage
object

storage section of mongod configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
storage.
wiredTiger.
collectionConfig
object

Collection configuration for WiredTiger.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
storage.
wiredTiger.
collectionConfig.
blockCompressor
string

Default type of compression to use for collection data.

  • NONE: No compression.
  • SNAPPY: The Snappy compression.
  • ZLIB: The zlib compression.
clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
storage.
journal
object

Configuration of the MongoDB journal.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
storage.
journal.
commitInterval
integer (int64)

Commit interval between journal operations, in milliseconds. Default: 100.

Acceptable values are 1 to 500, inclusive.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
operationProfiling
object

operationProfiling section of mongod configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode.

Value must be greater than 0.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
net
object

net section of mongod configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongod will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
security
object

security section of mongod configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
security.
enableEncryption
boolean (boolean)

If encryption at rest should be enabled or not

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
security.
kmip
object

kmip section of mongod security config

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
security.
kmip.
serverName
string

KMIP server name

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
security.
kmip.
port
integer (int64)

KMIP server port

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
security.
kmip.
serverCa
string

KMIP Server CA

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
security.
kmip.
clientCertificate
string

KMIP client certificate + private key (unencrypted)

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
security.
kmip.
keyIdentifier
string

KMIP Key identifier (if any)

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
auditLog
object

AuditLog section of mongod configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
auditLog.
filter
string

Audit filter

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
setParameter
object

SetParameter section of mongod configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
userConfig.
setParameter.
auditAuthorizationSuccess
boolean (boolean)

Enables the auditing of authorization successes

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig
object

Default mongod configuration for a MongoDB 4.4 cluster.

Configuration of a mongod daemon. Supported options are a limited subset of all options described in MongoDB documentation.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
storage
object

storage section of mongod configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
collectionConfig
object

Collection configuration for WiredTiger.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
collectionConfig.
blockCompressor
string

Default type of compression to use for collection data.

  • NONE: No compression.
  • SNAPPY: The Snappy compression.
  • ZLIB: The zlib compression.
clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
storage.
journal
object

Configuration of the MongoDB journal.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
storage.
journal.
commitInterval
integer (int64)

Commit interval between journal operations, in milliseconds. Default: 100.

Acceptable values are 1 to 500, inclusive.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
operationProfiling
object

operationProfiling section of mongod configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode.

Value must be greater than 0.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
net
object

net section of mongod configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongod will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
security
object

security section of mongod configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
security.
enableEncryption
boolean (boolean)

If encryption at rest should be enabled or not

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
security.
kmip
object

kmip section of mongod security config

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
security.
kmip.
serverName
string

KMIP server name

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
security.
kmip.
port
integer (int64)

KMIP server port

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
security.
kmip.
serverCa
string

KMIP Server CA

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
security.
kmip.
clientCertificate
string

KMIP client certificate + private key (unencrypted)

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
security.
kmip.
keyIdentifier
string

KMIP Key identifier (if any)

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
auditLog
object

AuditLog section of mongod configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
auditLog.
filter
string

Audit filter

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
setParameter
object

SetParameter section of mongod configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
config.
defaultConfig.
setParameter.
auditAuthorizationSuccess
boolean (boolean)

Enables the auditing of authorization successes

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
resources
object

Resources allocated to mongod hosts.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_4_4Enterprise.
mongod.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_4_4Enterprise.
mongocfg
object

Configuration and resource allocation for mongocfg in a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config
object

Configuration for mongocfg 4.4 hosts.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
effectiveConfig
object

Effective mongocfg settings for a MongoDB 4.4 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
effectiveConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
effectiveConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
effectiveConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
effectiveConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
effectiveConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
effectiveConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
userConfig
object

User-defined mongocfg settings for a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
userConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
userConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
userConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
userConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
userConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
userConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
userConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
userConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
defaultConfig
object

Default mongocfg configuration for a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
defaultConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
defaultConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
defaultConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
defaultConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
defaultConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
defaultConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
config.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
resources
object

Resources allocated to mongocfg hosts.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_4_4Enterprise.
mongocfg.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_4_4Enterprise.
mongos
object

Configuration and resource allocation for mongos in a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4Enterprise.
mongos.
config
object

Configuration for mongos 4.4 hosts.

clusters[].
config.
mongodb_4_4Enterprise.
mongos.
config.
effectiveConfig
object

Effective mongos settings for a MongoDB 4.4 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_4_4Enterprise.
mongos.
config.
effectiveConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_4Enterprise.
mongos.
config.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4Enterprise.
mongos.
config.
userConfig
object

User-defined mongos settings for a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4Enterprise.
mongos.
config.
userConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_4Enterprise.
mongos.
config.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4Enterprise.
mongos.
config.
defaultConfig
object

Default mongos configuration for a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4Enterprise.
mongos.
config.
defaultConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_4Enterprise.
mongos.
config.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4Enterprise.
mongos.
resources
object

Resources allocated to mongos hosts.

clusters[].
config.
mongodb_4_4Enterprise.
mongos.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_4_4Enterprise.
mongos.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_4_4Enterprise.
mongos.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra
object

Configuration and resource allocation for mongoinfra (mongos+mongocfg) in a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongos
object
clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongos.
effectiveConfig
object

Effective mongos settings for a MongoDB 4.4 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongos.
effectiveConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongos.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongos.
userConfig
object

User-defined mongos settings for a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongos.
userConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongos.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongos.
defaultConfig
object

Default mongos configuration for a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongos.
defaultConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongos.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg
object
clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
effectiveConfig
object

Effective mongocfg settings for a MongoDB 4.4 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
effectiveConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
effectiveConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
effectiveConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
effectiveConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
effectiveConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
effectiveConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
effectiveConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
effectiveConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
userConfig
object

User-defined mongocfg settings for a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
userConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
userConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
userConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
userConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
userConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
userConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
userConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
userConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
defaultConfig
object

Default mongocfg configuration for a MongoDB 4.4 cluster.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
defaultConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
defaultConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
defaultConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
defaultConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
defaultConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
defaultConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
defaultConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
defaultConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
configMongocfg.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
resources
object

Resources allocated to mongoinfra (mongos+mongocfg) hosts.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_4_4Enterprise.
mongoinfra.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_5_0Enterprise
object
Configuration and resource allocation for a MongoDB 5.0 Enterprise cluster.
clusters[].config includes only one of the fields mongodb_3_6, mongodb_4_0, mongodb_4_2, mongodb_4_4, mongodb_5_0, mongodb_4_4Enterprise, mongodb_5_0Enterprise

clusters[].
config.
mongodb_5_0Enterprise.
mongod
object

Configuration and resource allocation for mongod in a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config
object

Configuration for mongod 5.0 hosts.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig
object

Effective mongod settings for a MongoDB 5.0 cluster (a combination of settings defined in userConfig and defaultConfig).

Configuration of a mongod daemon. Supported options are a limited subset of all options described in MongoDB documentation.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
storage
object

storage section of mongod configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
collectionConfig
object

Collection configuration for WiredTiger.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
storage.
wiredTiger.
collectionConfig.
blockCompressor
string

Default type of compression to use for collection data.

  • NONE: No compression.
  • SNAPPY: The Snappy compression.
  • ZLIB: The zlib compression.
clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
storage.
journal
object

Configuration of the MongoDB journal.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
storage.
journal.
commitInterval
integer (int64)

Commit interval between journal operations, in milliseconds. Default: 100.

Acceptable values are 1 to 500, inclusive.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
operationProfiling
object

operationProfiling section of mongod configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode.

Value must be greater than 0.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
net
object

net section of mongod configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongod will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
security
object

security section of mongod configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
security.
enableEncryption
boolean (boolean)

If encryption at rest should be enabled or not

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
security.
kmip
object

kmip section of mongod security config

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
security.
kmip.
serverName
string

KMIP server name

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
security.
kmip.
port
integer (int64)

KMIP server port

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
security.
kmip.
serverCa
string

KMIP Server CA

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
security.
kmip.
clientCertificate
string

KMIP client certificate + private key (unencrypted)

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
security.
kmip.
keyIdentifier
string

KMIP Key identifier (if any)

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
auditLog
object

AuditLog section of mongod configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
auditLog.
filter
string

Audit filter

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
auditLog.
runtimeConfiguration
boolean (boolean)

Allows runtime configuration of audit filter and auditAuthorizationSuccess

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
setParameter
object

SetParameter section of mongod configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
effectiveConfig.
setParameter.
auditAuthorizationSuccess
boolean (boolean)

Enables the auditing of authorization successes

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig
object

User-defined mongod settings for a MongoDB 5.0 cluster.

Configuration of a mongod daemon. Supported options are a limited subset of all options described in MongoDB documentation.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
storage
object

storage section of mongod configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
storage.
wiredTiger.
collectionConfig
object

Collection configuration for WiredTiger.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
storage.
wiredTiger.
collectionConfig.
blockCompressor
string

Default type of compression to use for collection data.

  • NONE: No compression.
  • SNAPPY: The Snappy compression.
  • ZLIB: The zlib compression.
clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
storage.
journal
object

Configuration of the MongoDB journal.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
storage.
journal.
commitInterval
integer (int64)

Commit interval between journal operations, in milliseconds. Default: 100.

Acceptable values are 1 to 500, inclusive.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
operationProfiling
object

operationProfiling section of mongod configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode.

Value must be greater than 0.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
net
object

net section of mongod configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongod will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
security
object

security section of mongod configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
security.
enableEncryption
boolean (boolean)

If encryption at rest should be enabled or not

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
security.
kmip
object

kmip section of mongod security config

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
security.
kmip.
serverName
string

KMIP server name

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
security.
kmip.
port
integer (int64)

KMIP server port

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
security.
kmip.
serverCa
string

KMIP Server CA

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
security.
kmip.
clientCertificate
string

KMIP client certificate + private key (unencrypted)

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
security.
kmip.
keyIdentifier
string

KMIP Key identifier (if any)

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
auditLog
object

AuditLog section of mongod configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
auditLog.
filter
string

Audit filter

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
auditLog.
runtimeConfiguration
boolean (boolean)

Allows runtime configuration of audit filter and auditAuthorizationSuccess

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
setParameter
object

SetParameter section of mongod configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
userConfig.
setParameter.
auditAuthorizationSuccess
boolean (boolean)

Enables the auditing of authorization successes

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig
object

Default mongod configuration for a MongoDB 5.0 cluster.

Configuration of a mongod daemon. Supported options are a limited subset of all options described in MongoDB documentation.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
storage
object

storage section of mongod configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
collectionConfig
object

Collection configuration for WiredTiger.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
storage.
wiredTiger.
collectionConfig.
blockCompressor
string

Default type of compression to use for collection data.

  • NONE: No compression.
  • SNAPPY: The Snappy compression.
  • ZLIB: The zlib compression.
clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
storage.
journal
object

Configuration of the MongoDB journal.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
storage.
journal.
commitInterval
integer (int64)

Commit interval between journal operations, in milliseconds. Default: 100.

Acceptable values are 1 to 500, inclusive.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
operationProfiling
object

operationProfiling section of mongod configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode.

Value must be greater than 0.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
net
object

net section of mongod configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongod will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
security
object

security section of mongod configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
security.
enableEncryption
boolean (boolean)

If encryption at rest should be enabled or not

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
security.
kmip
object

kmip section of mongod security config

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
security.
kmip.
serverName
string

KMIP server name

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
security.
kmip.
port
integer (int64)

KMIP server port

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
security.
kmip.
serverCa
string

KMIP Server CA

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
security.
kmip.
clientCertificate
string

KMIP client certificate + private key (unencrypted)

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
security.
kmip.
keyIdentifier
string

KMIP Key identifier (if any)

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
auditLog
object

AuditLog section of mongod configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
auditLog.
filter
string

Audit filter

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
auditLog.
runtimeConfiguration
boolean (boolean)

Allows runtime configuration of audit filter and auditAuthorizationSuccess

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
setParameter
object

SetParameter section of mongod configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
config.
defaultConfig.
setParameter.
auditAuthorizationSuccess
boolean (boolean)

Enables the auditing of authorization successes

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
resources
object

Resources allocated to mongod hosts.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_5_0Enterprise.
mongod.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_5_0Enterprise.
mongocfg
object

Configuration and resource allocation for mongocfg in a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config
object

Configuration for mongocfg 5.0 hosts.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
effectiveConfig
object

Effective mongocfg settings for a MongoDB 5.0 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
effectiveConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
effectiveConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
effectiveConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
effectiveConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
effectiveConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
effectiveConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
effectiveConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
userConfig
object

User-defined mongocfg settings for a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
userConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
userConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
userConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
userConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
userConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
userConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
userConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
userConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
defaultConfig
object

Default mongocfg configuration for a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
defaultConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
defaultConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
defaultConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
defaultConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
defaultConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
defaultConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
defaultConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
config.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
resources
object

Resources allocated to mongocfg hosts.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_5_0Enterprise.
mongocfg.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_5_0Enterprise.
mongos
object

Configuration and resource allocation for mongos in a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0Enterprise.
mongos.
config
object

Configuration for mongos 5.0 hosts.

clusters[].
config.
mongodb_5_0Enterprise.
mongos.
config.
effectiveConfig
object

Effective mongos settings for a MongoDB 5.0 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_5_0Enterprise.
mongos.
config.
effectiveConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_5_0Enterprise.
mongos.
config.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0Enterprise.
mongos.
config.
userConfig
object

User-defined mongos settings for a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0Enterprise.
mongos.
config.
userConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_5_0Enterprise.
mongos.
config.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0Enterprise.
mongos.
config.
defaultConfig
object

Default mongos configuration for a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0Enterprise.
mongos.
config.
defaultConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_5_0Enterprise.
mongos.
config.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0Enterprise.
mongos.
resources
object

Resources allocated to mongos hosts.

clusters[].
config.
mongodb_5_0Enterprise.
mongos.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_5_0Enterprise.
mongos.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_5_0Enterprise.
mongos.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra
object

Configuration and resource allocation for mongoinfra (mongos+mongocfg) in a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongos
object
clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongos.
effectiveConfig
object

Effective mongos settings for a MongoDB 5.0 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongos.
effectiveConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongos.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongos.
userConfig
object

User-defined mongos settings for a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongos.
userConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongos.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongos.
defaultConfig
object

Default mongos configuration for a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongos.
defaultConfig.
net
object

Network settings for mongos.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongos.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongos will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg
object
clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
effectiveConfig
object

Effective mongocfg settings for a MongoDB 5.0 cluster (a combination of settings defined in userConfig and defaultConfig).

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
effectiveConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
effectiveConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
effectiveConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
effectiveConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
effectiveConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
effectiveConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
effectiveConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
effectiveConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
effectiveConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
userConfig
object

User-defined mongocfg settings for a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
userConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
userConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
userConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
userConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
userConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
userConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
userConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
userConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
userConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
defaultConfig
object

Default mongocfg configuration for a MongoDB 5.0 cluster.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
defaultConfig.
storage
object

storage section of mongocfg configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
defaultConfig.
storage.
wiredTiger
object

Configuration of the WiredTiger storage engine.

Configuration of WiredTiger storage engine.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
defaultConfig.
storage.
wiredTiger.
engineConfig
object

Engine configuration for WiredTiger.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
defaultConfig.
storage.
wiredTiger.
engineConfig.
cacheSizeGb
number (double)

The maximum size of the internal cache that WiredTiger will use for all data.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
defaultConfig.
operationProfiling
object

operationProfiling section of mongocfg configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
defaultConfig.
operationProfiling.
mode
string

Mode which specifies operations that should be profiled.

  • OFF: The profiler is off and does not collect any data.
  • SLOW_OP: The profiler collects data for operations that take longer than the value of slowOpThreshold.
  • ALL: The profiler collects data for all operations.
clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
defaultConfig.
operationProfiling.
slowOpThreshold
integer (int64)

The slow operation time threshold, in milliseconds. Operations that run for longer than this threshold are considered slow, and are processed by the profiler running in the SLOW_OP mode. For details see MongoDB documentation.

Value must be greater than 0.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
defaultConfig.
net
object

net section of mongocfg configuration.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
configMongocfg.
defaultConfig.
net.
maxIncomingConnections
integer (int64)

The maximum number of simultaneous connections that mongocfg will accept.

Acceptable values are 10 to 16384, inclusive.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
resources
object

Resources allocated to mongoinfra (mongos+mongocfg) hosts.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
resources.
resourcePresetId
string

ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
resources.
diskSize
string (int64)

Volume of the storage available to a host, in bytes.

clusters[].
config.
mongodb_5_0Enterprise.
mongoinfra.
resources.
diskTypeId
string

Type of the storage environment for the host. Possible values:

  • network-hdd - network HDD drive,
  • network-ssd - network SSD drive,
  • local-ssd - local SSD storage.
clusters[].
networkId
string

ID of the network that the cluster belongs to.

clusters[].
health
string

Aggregated cluster health.

  • HEALTH_UNKNOWN: State of the cluster is unknown (health for every host in the cluster is UNKNOWN).
  • ALIVE: Cluster is alive and well (health for every host in the cluster is ALIVE).
  • DEAD: Cluster is inoperable (health for every host in the cluster is DEAD).
  • DEGRADED: Cluster is working below capacity (health for at least one host in the cluster is not ALIVE).
clusters[].
status
string

Current state of the cluster.

  • STATUS_UNKNOWN: Cluster state is unknown.
  • CREATING: Cluster is being created.
  • RUNNING: Cluster is running normally.
  • ERROR: Cluster encountered a problem and cannot operate.
  • UPDATING: Cluster is being updated.
  • STOPPING: Cluster is stopping.
  • STOPPED: Cluster stopped.
  • STARTING: Cluster is starting.
clusters[].
sharded
boolean (boolean)

Indicates current sharding status of the cluster.

clusters[].
maintenanceWindow
object

Maintenance window for the cluster.

A maintenance window settings.

clusters[].
maintenanceWindow.
anytime
object
Maintenance operation can be scheduled anytime.
clusters[].maintenanceWindow includes only one of the fields anytime, weeklyMaintenanceWindow

clusters[].
maintenanceWindow.
weeklyMaintenanceWindow
object
Maintenance operation can be scheduled on a weekly basis.
clusters[].maintenanceWindow includes only one of the fields anytime, weeklyMaintenanceWindow

Weelky maintenance window settings.

clusters[].
maintenanceWindow.
weeklyMaintenanceWindow.
day
string

Day of the week (in DDD format).

clusters[].
maintenanceWindow.
weeklyMaintenanceWindow.
hour
string (int64)

Hour of the day in UTC (in HH format).

Acceptable values are 1 to 24, inclusive.

clusters[].
plannedOperation
object

Planned maintenance operation to be started for the cluster within the nearest maintenanceWindow.

A planned maintenance operation.

clusters[].
plannedOperation.
info
string

Information about this maintenance operation.

The maximum string length in characters is 256.

clusters[].
plannedOperation.
delayedUntil
string (date-time)

Time until which this maintenance operation is delayed.

String in RFC3339 text format.

clusters[].
securityGroupIds[]
string

User security groups

clusters[].
deletionProtection
boolean (boolean)

Deletion Protection inhibits deletion of the cluster

nextPageToken string

This token allows you to get the next page of results for list requests. If the number of results is larger than pageSize, use the nextPageToken as the value for the pageToken parameter in the next list request. Each subsequent list request will have its own nextPageToken to continue paging through the results.

Была ли статья полезна?

Language / Region
© 2022 ООО «Яндекс.Облако»
В этой статье:
  • HTTP request
  • Query parameters
  • Response