- Clusters >
- Additional Cluster Settings >
- Configure Additional Options
Configure Additional Options¶
On this page
You can configure the following mongod
runtime options
on M10+
paid tier clusters.
To view these settings, open the More Configuration Options under Additional Settings in the cluster form.

Set Oplog Size¶
Modify the oplog size of the cluster. For sharded
cluster deployments, this modifies the oplog size of each
shard in the cluster. This option corresponds to modifying
the replication.oplogSizeMB
configuration file option for each mongod
in the
cluster.
Specify your desired Oplog Size in megabytes in the input box.
You can check the oplog size by connecting to your cluster
via the mongo
shell and authenticating as a user
with the Atlas admin
role. Run the
rs.printReplicationInfo()
method to view the current oplog size and time.
Warning
Reducing the size of the oplog requires removing data from the oplog. Atlas cannot access or restore any oplog entries removed as a result of oplog reduction. Consider the ramifications of this data loss before reducing the oplog.
Enforce Index Key Limit¶
Enable or disable enforcement of the 1024-byte index key limit. Documents can only be updated or inserted if, for all indexed fields on the target collection, the corresponding index entries do not exceed 1024 bytes.
If disabled, mongod
writes documents that breach the
limit but does not index them. This option corresponds to
modifying the
failIndexKeyTooLong
parameter via the setParameter
command for each
mongod
in the cluster.
Allow Server-Side JavaScript¶
Enable or disable execution of operations that perform server-side
execution of JavaScript. This option corresponds to modifying
the security.javascriptEnabled
configuration file option
for each mongod
in the cluster.
Set Minimum TLS Protocol Version¶
Sets the minimum TLS version the cluster accepts for incoming
connections. This option corresponds to configuring the
net.ssl.disabledProtocols
configuration file option
for each mongod
in the cluster.
TLS 1.0 Deprecation
For users considering this option as a method for enabling the deprecated Transport Layer Security (TLS) 1.0 protocol version, please read What versions of TLS does Atlas support? before proceeding. Atlas deprecation of TLS 1.0 improves your security of data-in-transit and aligns with industry best practices. Enabling TLS 1.0 for any Atlas cluster carries security risks. Consider enabling TLS 1.0 only for as long as required to update your application stack to support TLS 1.1 or later.
Require Indexes for All Queries¶
Enable or disable the execution of queries that require a collection
scan to return results. This option corresponds to modifying the
notablescan
parameter via the
setParameter
command for each mongod
in
the cluster.
Considerations¶
Atlas performs uses a rolling deployment process to apply modifications to the Oplog Size and Minimum TLS Protocol Version options. For sharded clusters, this involves a rolling restart of all shards and the config server replica set. To learn more about how Atlas supports high availability during maintenance operations, see How does MongoDB Atlas deliver high availability?.