Docs Menu
Docs Home
/ / /
Ruby MongoDB Driver

Databases and Collections

On this page

  • Overview
  • Access a Database
  • Access a Collection
  • Create a Collection
  • Get a List of Collections
  • Delete a Collection
  • Configure Read and Write Operations
  • Tag Sets
  • Local Threshold
  • API Documentation

In this guide, you can learn how to use MongoDB databases and collections with Ruby driver.

MongoDB organizes data into a hierarchy of the following levels:

  • Databases: The top level of data organization in a MongoDB instance.

  • Collections: MongoDB stores documents in collections. They are analogous to tables in relational databases.

  • Documents: Contain literal data such as string, numbers, dates, and other embedded documents.

For more information about document field types and structure, see the Documents guide in the MongoDB Server manual.

Access a database by creating a Mongo::Client instance with the desired database name.

The following example accesses a database named test_database:

client = Mongo::Client.new(['127.0.0.1:27017'], database: 'test_database')
database = client.database

Access a collection by using the [] method on an instance of your database.

The following example accesses a collection named test_collection:

database = client.database
collection = database['test_collection']

Tip

If the provided collection name does not already exist in the database, MongoDB implicitly creates the collection when you first insert data into it.

While the Ruby driver for MongoDB does not have a direct create_collection method, you can use the create method to create a collection with specific options.

The following example creates a collection called example_collection with specific options:

database = client.database
database[:example_collection].create(capped: true, size: 1024)

You can specify collection options such as maximum size, document validation rules, and others by passing them as arguments to the command method with the create command. For a full list of optional parameters, refer to the MongoDB documentation on the create command.

You can query for a list of collections in a database by calling the collections method. This method returns an array of collection objects in the database.

The following example calls the collections method and iterates over the array to print the results:

database = client.database
collection_list = database.collections
collection_list.each do |collection|
puts collection.name
end

To query for only the names of the collections in the database, call the collection_names method as follows:

database = client.database
collection_names = database.collection_names
collection_names.each do |name|
puts name
end

Note

The database.collections objects list provides more detailed information (i.e. each collection object can be further queried for metadata), while database.collection_names simply lists the collection names.

You can delete a collection from the database by using the drop method.

The following example deletes the test_collection collection:

database = client.database
collection = database[:test_collection]
collection.drop

Warning

Dropping a Collection Deletes All Data in the Collection

Dropping a collection from your database permanently deletes all documents and all indexes within that collection.

Drop a collection only if the data in it is no longer needed.

You can control how the driver routes read operations by setting a read preference. You can also control options for how the driver waits for acknowledgment of read and write operations on a replica set by setting a read concern and a write concern.

By default, databases inherit these settings from the Mongo::Client instance, and collections inherit them from the database. However, you can change these settings on your database or collection by using one of the following methods:

  • database.with: Gets the database and applies the new read preference, read concern, and write concern.

  • collection.with: Gets the collection and applies the new read preference, read concern, and write concern.

To change read or write settings with the preceding methods, call the method and pass in the new read preference, read concern, or write concern.

The following example shows how to change the read preference, read concern, and write preference of a database called test-database with the database.with method:

database_with_settings = client.use('test_database').with(
read: { mode: :secondary },
read_concern: { level: :local },
write: { w: :majority }
)

The following example shows how to change the read preference, read concern, and write concern of a collection:

collection_with_settings = client[:test_collection].with(
read: { mode: :secondary },
read_concern: { level: :local },
write: { w: :majority }
)

To learn more about the read and write settings, see the following guides in the MongoDB Server manual:

In MongoDB Server, you can apply key-value tags to replica set members according to any criteria you choose. You can then use those tags to target one or more members for a read operation.

By default, the MongoDB Ruby driver selects primary members for read operations. You can modify this behavior by setting read preferences and, optionally, tag sets.

In the following code example, the tag set passed to the :read parameter instructs the Ruby driver to prefer reads from the New York data center ('dc':'ny') and to fall back to the San Francisco data center ('dc':'sf'):

client = Mongo::Client.new(['IP_ADDRESS_001:27017'], database: 'test', read: {
mode: :secondary,
tag_sets: [{'dc' => 'ny'}, {'dc' => 'sf'}]
})
database = client.database
collection = database[:example_collection]

To learn more about replica sets, see the the MongoDB Server manual Replica Set Members page.

If multiple replica set members match the read preference and tag sets you specify, Ruby driver reads from the nearest replica set members of sharded clusters, chosen according to their ping time.

By default, the driver uses only those members whose ping times are within 15 milliseconds of the nearest member for queries. To distribute reads between members with higher latencies, pass the local_threshold option to the Mongo::Client constructor.

The following example specifies a local threshold of 35 milliseconds:

client = Mongo::Client.new(
['IP_ADDRESS_001:27017'],
database: 'test_database',
read: { mode: :secondary_preferred },
local_threshold: 35
)
database = client.database
collection = database[:example_collection]
result = collection.find({}).first
puts result

In the preceding example, Ruby driver distributes reads between matching members within 35 milliseconds of the closest member's ping time.

Note

Ruby driver ignores the value of local_threshold when communicating with a replica set through a mongos instance. In this case, use the localThreshold command-line option.

To learn more about any of the methods or types discussed in this guide, see the following API documentation:

Back

Limit Server Execution Time