Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOCSP-48422: search index type #170

Merged
merged 5 commits into from
Mar 24, 2025

Conversation

rustagir
Copy link
Collaborator

@rustagir rustagir commented Mar 19, 2025

Pull Request Info

PR Reviewing Guidelines

JIRA - https://jira.mongodb.org/browse/DOCSP-48422
Staging -

  1. indexes page
  2. atlas vs page
  3. whats new

Self-Review Checklist

  • Is this free of any warnings or errors in the RST?
  • Did you run a spell-check?
  • Did you run a grammar-check?
  • Are all the links working?
  • Are the facets and meta keywords accurate?

Copy link

netlify bot commented Mar 19, 2025

Deploy Preview for docs-rust ready!

Name Link
🔨 Latest commit a265f4e
🔍 Latest deploy log https://app.netlify.com/sites/docs-rust/deploys/67dda104c482de0008b5270f
😎 Deploy Preview https://deploy-preview-170--docs-rust.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@rustagir rustagir requested review from a team and abr-egn and removed request for a team March 19, 2025 18:24
Copy link
Collaborator

@mongoKart mongoKart left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

great additions to the page. a few small fixes and some suggestions


Before you can perform Atlas Vector Search queries, you must create an
Atlas Vector Search index on your collection. To learn more about
creating this index type, see the :ref:`rust-atlas-search-indexes` guide.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

S:

Suggested change
creating this index type, see the :ref:`rust-atlas-search-indexes` guide.
creating this index, see the :ref:`rust-atlas-search-indexes` guide.

Comment on lines 33 to 34
Atlas Search and Vector Search indexes specify which fields to index,
how these fields are indexed, and can set other optional configurations.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

to keep a parallel structure, either the third item should inherit the verb 'specify', like the second item does, or the second item should supply its own verb

Suggested change
Atlas Search and Vector Search indexes specify which fields to index,
how these fields are indexed, and can set other optional configurations.
Atlas Search and Vector Search indexes specify which fields to index,
specify how these fields are indexed, and can set other optional configurations.

database, which is one of the Atlas sample datasets. For instructions on importing
the Atlas sample data, see :atlas:`Load Sample Data </sample-data>` in the Atlas
documentation.
The examples in this guide access the ``embedded_movies`` collection
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

S: i think we say 'use' elsewhere. feels simpler, but not a big deal

Suggested change
The examples in this guide access the ``embedded_movies`` collection
The examples in this guide use the ``embedded_movies`` collection

.. tip:: Atlas Search Field Mappings
* - ``definition()``
- ``Document``
- Specifies the index definition. If you exclude this setting, the
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

s:

Suggested change
- Specifies the index definition. If you exclude this setting, the
- Specifies the index definition. If you omit this setting, the

applies throughout

The following example creates specifications for a index named ``example_index`` in a
``SearchIndexModel`` instance. The code sets a static mapping to index only the ``body``
and ``date`` fields:
The following example creates specifications for a index named ``search_idx`` in a
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
The following example creates specifications for a index named ``search_idx`` in a
The following example creates specifications for an index named ``search_idx`` in a

Comment on lines 104 to 105
The following example creates specifications for a index named ``search_idx`` in a
``SearchIndexModel`` instance. The code sets a static mapping to index only the ``title``
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

s: maybe ambiguous about the index being created in the instance instead of via it

Suggested change
The following example creates specifications for a index named ``search_idx`` in a
``SearchIndexModel`` instance. The code sets a static mapping to index only the ``title``
The following example uses a ``SearchIndexModel`` instance to create
specifications for a index named ``search_idx``. The code sets a static
mapping to index only the ``title``

Comment on lines 114 to 115
The following example creates specifications for a index named ``vs_idx`` in a
``SearchIndexModel`` instance. The code specifies the embedding path as
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
The following example creates specifications for a index named ``vs_idx`` in a
``SearchIndexModel`` instance. The code specifies the embedding path as
The following example uses a ``SearchIndexModel`` instance to create specifications
for a index named ``vs_idx``. The code specifies the embedding path as

:language: rust
:dedent:

The following example creates specifications for a index named ``vs_idx`` in a
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
The following example creates specifications for a index named ``vs_idx`` in a
The following example creates specifications for an index named ``vs_idx`` in a

The following example creates two Atlas Search indexes named ``dynamic_index`` and
``static_index`` on the ``posts`` collection. The code creates ``SearchIndexModel``
The following example creates an Atlas Search and a Vector Search index
on the ``embedded_movies`` collection. The code creates ``SearchIndexModel``
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

S: clarify one instance per index and remove ambiguity

(suggestion spans the next line too): "For each index, the code creates a SearchIndexModel instance that specifies the index name and definition."

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

changing to a list of tasks

The following example accesses information about the Atlas Search and
Vector Search indexes created in the :ref:`rust-create-search-indexes`
section of this page. The code calls the ``list_search_indexes()``
method and outputs all the Search indexes on the collection:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Q: i assume this means 'all the Atlas/Vector Search indexes'. if so, probably worth specifying since there are other types of indexes that are used for searching, and i don't think enough people will catch the use of capital S in Search

@rustagir rustagir requested a review from mongoKart March 21, 2025 13:54
Copy link
Collaborator

@mongoKart mongoKart left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

small fixes then LGTM!

``SearchIndexModel`` instance. The code sets a static mapping to index only the ``title``
and ``released`` fields:
The following example creates a ``SearchIndexModel`` instance to provide
specifications for a index named ``search_idx``. The code specifies static
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
specifications for a index named ``search_idx``. The code specifies static
specifications for an index named ``search_idx``. The code specifies static

``plot_embedding``, indexes ``1536`` dimensions, and uses the ``"euclidean"``
vector similarity function.
The following example creates a ``SearchIndexModel`` instance to provide
specifications for a index named ``vs_idx``. The code specifies the
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
specifications for a index named ``vs_idx``. The code specifies the
specifications for an index named ``vs_idx``. The code specifies the

Copy link
Collaborator

@abr-egn abr-egn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@rustagir rustagir merged commit ba2f297 into mongodb:master Mar 24, 2025
5 checks passed
rustagir added a commit that referenced this pull request Mar 24, 2025
(cherry picked from commit ba2f297)
rustagir added a commit that referenced this pull request Mar 24, 2025
(cherry picked from commit ba2f297)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants