Skip to content

Commit 00e5cce

Browse files
authored
(DOCSP-32272): Atlas Top 250: Add Atlas to intro, provide Atlas-focused connection string (#806)
* Add Atlas to intro, provide Atlas-focused connection string * Incorporate review feedback * Correct errors in facet usage
1 parent 41510b5 commit 00e5cce

File tree

13 files changed

+26
-23
lines changed

13 files changed

+26
-23
lines changed

source/compatibility.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Compatibility
55
=============
66

77
.. facet::
8-
:type: genre
8+
:name: genre
99
:values: reference
1010

1111
.. meta::

source/fundamentals/connection.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Connection
77
.. default-domain:: mongodb
88

99
.. facet::
10-
:type: genre
10+
:name: genre
1111
:values: reference
1212

1313
.. meta::

source/fundamentals/connection/connect.txt

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Connection Guide
55
================
66

77
.. facet::
8-
:type: genre
8+
:name: genre
99
:values: reference
1010

1111
.. meta::
@@ -17,8 +17,9 @@ Connection Guide
1717
:depth: 2
1818
:class: singlecol
1919

20-
This guide shows you how to connect to a MongoDB instance or replica set
21-
using the Node.js driver.
20+
This guide shows you how to connect to a
21+
`MongoDB Atlas deployment <https://www.mongodb.com/docs/atlas>`__,
22+
a MongoDB instance, or a replica set using the Node.js driver.
2223

2324
.. _node-connection-uri:
2425

@@ -30,25 +31,27 @@ connect to a MongoDB deployment. It instructs the driver on how it should
3031
connect to MongoDB and how it should behave while connected. The following
3132
example shows each part of the connection URI:
3233

33-
.. figure:: /includes/figures/connection-string-parts.png
34+
.. figure:: /includes/figures/dns_seedlist_connection_string_parts.png
3435
:alt: Each part of the connection string
3536

36-
In this example, we use ``mongodb`` for the protocol, which specifies
37-
the :manual:`Standard Connection String Format </reference/connection-string/#std-label-connections-standard-connection-string-format>`.
38-
39-
If your instance or deployment has a DNS SRV record, you can use the
37+
In this example, we connect to an Atlas MongoDB deployment that has a
38+
DNS SRV record. For more details, see the
4039
:manual:`DNS Seed List Connection Format
41-
</reference/connection-string/#dns-seed-list-connection-format>` for
42-
your connection string. This format offers more flexibility of
43-
deployment and the ability to change the servers in rotation without
44-
reconfiguring clients.
40+
</reference/connection-string/#dns-seed-list-connection-format>`
41+
documentation. This format offers flexibility in deployment and the
42+
ability to change the servers in rotation without reconfiguring clients.
4543

4644
.. note::
4745

4846
To learn how to retrieve your connection string in Atlas, see the
4947
:atlas:`Atlas driver connection guide </driver-connection>`.
5048

51-
The next part of the connection string contains your credentials
49+
If you are connecting to an instance or replica set that does not have a
50+
DNS SRV address, you must use ``mongodb`` for the protocol, which specifies
51+
the :manual:`Standard Connection String Format
52+
</reference/connection-string/#std-label-connections-standard-connection-string-format>`.
53+
54+
After the protocol, the next part of the connection string contains credentials
5255
if you are using password-based authentication. Replace the value of ``user``
5356
with your username and ``pass`` with your password. If you are using an
5457
authentication mechanism that does not require a username and password, omit

source/fundamentals/crud.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ CRUD Operations
77
.. default-domain:: mongodb
88

99
.. facet::
10-
:type: genre
10+
:name: genre
1111
:values: reference
1212

1313
.. meta::

source/fundamentals/crud/read-operations.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Read Operations
55
.. default-domain:: mongodb
66

77
.. facet::
8-
:type: genre
8+
:name: genre
99
:values: reference
1010

1111
.. meta::
Binary file not shown.
9.38 KB
Loading

source/quick-reference.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Quick Reference
77
.. default-domain:: mongodb
88

99
.. facet::
10-
:type: genre
10+
:name: genre
1111
:values: reference
1212

1313
.. meta::

source/quick-start.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Quick Start
55
===========
66

77
.. facet::
8-
:type: genre
8+
:name: genre
99
:values: tutorial
1010

1111
.. meta::

source/usage-examples.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Usage Examples
77
.. default-domain:: mongodb
88

99
.. facet::
10-
:type: genre
10+
:name: genre
1111
:values: reference
1212

1313
.. meta::

0 commit comments

Comments
 (0)