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-37545 Atlas Search Page #222

Merged
merged 21 commits into from
Apr 1, 2025

Conversation

shuangela
Copy link
Collaborator

@shuangela shuangela commented Mar 13, 2025

Pull Request Info

PR Reviewing Guidelines

JIRA - https://jira.mongodb.org/browse/DOCSP-37545

Staging Links

  • atlas-search
  • index
  • 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 13, 2025

    Deploy Preview for docs-pymongo ready!

    Name Link
    🔨 Latest commit 29532a5
    🔍 Latest deploy log https://app.netlify.com/sites/docs-pymongo/deploys/67ec2a9ff8433c00081d1011
    😎 Deploy Preview https://deploy-preview-222--docs-pymongo.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.

    Copy link
    Collaborator

    @jordan-smith721 jordan-smith721 left a comment

    Choose a reason for hiding this comment

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

    Looking good so far! Just a few suggestions and style guide fixes. Also, please make sure to add in line breaks for longer lines

    Overview
    --------

    In this guide, you can learn how to query an Atlas Search index and use advanced search functionality for your applications. To query the seach index, use a ``$search`` aggregation pipeline stage with {+driver-short+}.
    Copy link
    Collaborator

    Choose a reason for hiding this comment

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

    S: Restructure this to specify the driver earlier

    Suggested change
    In this guide, you can learn how to query an Atlas Search index and use advanced search functionality for your applications. To query the seach index, use a ``$search`` aggregation pipeline stage with {+driver-short+}.
    In this guide, you can learn how to query an Atlas Search index and use advanced search functionality for your {+driver-short+} applications. You can query a search index, by using a ``$search`` aggregation pipeline stage.

    Comment on lines 25 to 26
    To learn more about the ``$search`` pipeline stage, see :manual:`$search
    </reference/operator/aggregation/search/>`.
    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
    To learn more about the ``$search`` pipeline stage, see :manual:`$search
    </reference/operator/aggregation/search/>`.
    To learn more about the ``$search`` pipeline stage, see the :manual:`$search
    </reference/operator/aggregation/search/>` guide in the {+mdb-server+} manual.

    Before you can perform a search on an Atlas collection, you must first create an **Atlas
    Search index** on the collection. An Atlas Search index is a data structure that
    categorizes data in a searchable format. To learn how to create an Atlas Search Index
    see the :ref:`pymongo-atlas-search-index` documentation.
    Copy link
    Collaborator

    Choose a reason for hiding this comment

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

    nit: "documentation" here made me think I was getting link to a different set of docs rather than a page in the pymongo docs.

    Search Your Data
    ----------------

    To use the ``$search`` aggregation pipeline stage, you must select an Atlas Search query operator that specifies the type of query you run. You can also optionally select a collector that groups results by values or ranges. To see a table of all the operators and collectors available in Atlas Search, see :atlas:`Use Operators and Collectors in Atlas Search Queries </atlas-search/operators-and-collectors>`.
    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
    To use the ``$search`` aggregation pipeline stage, you must select an Atlas Search query operator that specifies the type of query you run. You can also optionally select a collector that groups results by values or ranges. To see a table of all the operators and collectors available in Atlas Search, see :atlas:`Use Operators and Collectors in Atlas Search Queries </atlas-search/operators-and-collectors>`.
    To use the ``$search`` aggregation pipeline stage, you must select an Atlas Search query operator that specifies the type of query you want to run. You can also optionally select a collector that groups results by values or ranges. To see a table of all the operators and collectors available in Atlas Search, see :atlas:`Use Operators and Collectors in Atlas Search Queries </atlas-search/operators-and-collectors>`.


    To use the ``$search`` aggregation pipeline stage, you must select an Atlas Search query operator that specifies the type of query you run. You can also optionally select a collector that groups results by values or ranges. To see a table of all the operators and collectors available in Atlas Search, see :atlas:`Use Operators and Collectors in Atlas Search Queries </atlas-search/operators-and-collectors>`.

    The following example uses the ``phrase`` operator, which performs search for documents containing an ordered sequence of terms. To learn more about the ``phrase`` operator, see :atlas:`Phrase </atlas-search/phrase>` in the Atlas guide.
    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 uses the ``phrase`` operator, which performs search for documents containing an ordered sequence of terms. To learn more about the ``phrase`` operator, see :atlas:`Phrase </atlas-search/phrase>` in the Atlas guide.
    The following example uses the ``phrase`` operator, which performs a search for documents that contain an ordered sequence of terms. To learn more about the ``phrase`` operator, see :atlas:`Phrase </atlas-search/phrase>` in the Atlas guide.


    The following example uses the ``phrase`` operator, which performs search for documents containing an ordered sequence of terms. To learn more about the ``phrase`` operator, see :atlas:`Phrase </atlas-search/phrase>` in the Atlas guide.

    The example performs a basic search of the ``title`` field for the query string ``new york``.
    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 example performs a basic search of the ``title`` field for the query string ``new york``.
    The example performs a basic search of the ``title`` field for the query string ``"new york"``.

    Comment on lines 60 to 64
    The query also includes a:

    - :pipeline:`$limit` stage to limit the output to 10 results.
    - :pipeline:`$project` stage to exclude all fields except
    ``title`` and add a field named ``score``.
    Copy link
    Collaborator

    Choose a reason for hiding this comment

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

    Style guide: Introduce lists with a full sentence

    Suggested change
    The query also includes a:
    - :pipeline:`$limit` stage to limit the output to 10 results.
    - :pipeline:`$project` stage to exclude all fields except
    ``title`` and add a field named ``score``.
    The query also includes the following stages:
    - :pipeline:`$limit`, to limit the output to 10 results.
    - :pipeline:`$project`, to exclude all fields except
    ``title`` and add a field named ``score``.

    Comment on lines 111 to 112
    Next Steps
    ----------
    Copy link
    Collaborator

    Choose a reason for hiding this comment

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

    We typically use "Next Steps" in tutorial-style pages. Since this is a reference page, I would suggest converting this to an "Additional Information" section (and converting the following paragraph into a bulleted list of resources)

    Copy link
    Collaborator Author

    Choose a reason for hiding this comment

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

    I did not convert into a bulleted list, but I did change it to an addl. info section. Looking at the other pymongo pages, some of the addl. info sections are in prose and I think in this case, prose works better because the information isn't linking out to functions in the api docs or less prose-based information

    Comment on lines 116 to 118
    </atlas-search/operators-and-collectors>` and other queries you can run. More query examples using
    MongoDB Query Language (MQL) are available througout the Atlas :atlas:`documentation
    </atlas-search>`.
    Copy link
    Collaborator

    Choose a reason for hiding this comment

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

    We don't refer to it as MQL in external docs anymore. It's now called the "MongoDB Query API", but I think we can get away without mentioning either one here

    Suggested change
    </atlas-search/operators-and-collectors>` and other queries you can run. More query examples using
    MongoDB Query Language (MQL) are available througout the Atlas :atlas:`documentation
    </atlas-search>`.
    </atlas-search/operators-and-collectors>` and other queries you can run. You can view more query examples in the :atlas:`Atlas Search documentation
    </atlas-search>`.

    Search Your Data
    ----------------

    To use the ``$search`` aggregation pipeline stage, you must select an Atlas Search query operator that specifies the type of query you run. You can also optionally select a collector that groups results by values or ranges. To see a table of all the operators and collectors available in Atlas Search, see :atlas:`Use Operators and Collectors in Atlas Search Queries </atlas-search/operators-and-collectors>`.
    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 "specify" might work better than "select" here since select seems like you are doing it through some kind of select stage or selection process within atlas search

    Suggested change
    To use the ``$search`` aggregation pipeline stage, you must select an Atlas Search query operator that specifies the type of query you run. You can also optionally select a collector that groups results by values or ranges. To see a table of all the operators and collectors available in Atlas Search, see :atlas:`Use Operators and Collectors in Atlas Search Queries </atlas-search/operators-and-collectors>`.
    To use the ``$search`` aggregation pipeline stage, you must specify an Atlas Search query operator that indicates the type of query you run. You can also optionally specify a collector that groups results by values or ranges. To view a table of all the operators and collectors available with Atlas Search, see :atlas:`Use Operators and Collectors in Atlas Search Queries </atlas-search/operators-and-collectors>`.

    Copy link
    Collaborator

    @jordan-smith721 jordan-smith721 left a comment

    Choose a reason for hiding this comment

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

    LGTM w/ a few more suggestions

    --------

    In this guide, you can learn how to query an Atlas Search index and use advanced search
    functionality for your {+driver-short+} applications. You can query a search index by
    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
    functionality for your {+driver-short+} applications. You can query a search index by
    functionality in your {+driver-short+} applications. You can query a search index by

    Comment on lines 51 to 52
    categorizes data in a searchable format. To learn how to create an Atlas Search Index
    see :ref:`pymongo-atlas-search-index`.
    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
    categorizes data in a searchable format. To learn how to create an Atlas Search Index
    see :ref:`pymongo-atlas-search-index`.
    categorizes data in a searchable format. To learn how to create an Atlas Search Index,
    see :ref:`pymongo-atlas-search-index`.

    Comment on lines 64 to 65
    that contain an ordered sequence of terms. To learn more about the ``phrase`` operator, see
    :atlas:`Phrase </atlas-search/phrase>` in the Atlas guide.
    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
    that contain an ordered sequence of terms. To learn more about the ``phrase`` operator, see
    :atlas:`Phrase </atlas-search/phrase>` in the Atlas guide.
    that contain an ordered sequence of terms. To learn more about the ``phrase`` operator, see the
    :atlas:`Phrase </atlas-search/phrase>` guide in the MongoDB Atlas documentation.

    Comment on lines 122 to 127
    To learn more about the different Atlas Search :atlas:`operators
    </atlas-search/operators-and-collectors>` and other queries you can run, see the
    Atlas Search :atlas:`documentation </atlas-search>`.

    You can view more query examples througout the Atlas :atlas:`documentation
    </atlas-search>`.
    Copy link
    Collaborator

    Choose a reason for hiding this comment

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

    S: It's not entirely clear where each of these links will take you until you click on them. Also this section links to the same page twice, so I think we can eliminate the first link to the general Atlas Search docs.

    Suggested change
    To learn more about the different Atlas Search :atlas:`operators
    </atlas-search/operators-and-collectors>` and other queries you can run, see the
    Atlas Search :atlas:`documentation </atlas-search>`.
    You can view more query examples througout the Atlas :atlas:`documentation
    </atlas-search>`.
    To learn more about the available Atlas Search operators, see the :atlas:`Operators and Collectors </atlas-search/operators-and-collectors>` guide in the MongoDB Atlas documentation.
    For more information about Atlas Search, and to view more query examples, see the
    :atlas:`Atlas Search documentation </atlas-search>`.

    @caseyclements
    Copy link

    • I recommend that we differentiate $vectorSearch, or at lease see also at the bottom.

    @caseyclements
    Copy link

    • In the code snippet
      • The closing brace of phrase appears to be off
      • It would be very helpful if the example used $compound

    Overview
    --------

    In this guide, you can learn how to query an Atlas Search index and use advanced search

    Choose a reason for hiding this comment

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

    and use advanced full-text search..

    @shuangela
    Copy link
    Collaborator Author

    • In the code snippet

      • The closing brace of phrase appears to be off
      • It would be very helpful if the example used $compound

    Hey @caseyclements, I changed the code example to use compound but I'm not 100% sure what you meant about the closing brace. Since the code example was changed, hopefully the brace works now (I ran the code and it returns the expected result) but please let me know if any of the closing braces look incorrect still!

    @shuangela shuangela requested a review from caseyclements March 17, 2025 19:10
    Copy link

    @caseyclements caseyclements left a comment

    Choose a reason for hiding this comment

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

    lgtm

    @mcmorisi mcmorisi merged commit 40bf3de into mongodb:master Apr 1, 2025
    2 checks passed
    mcmorisi pushed a commit that referenced this pull request Apr 1, 2025
    mcmorisi pushed a commit that referenced this pull request Apr 1, 2025
    mcmorisi pushed a commit that referenced this pull request Apr 1, 2025
    mcmorisi pushed a commit that referenced this pull request Apr 1, 2025
    mcmorisi pushed a commit that referenced this pull request Apr 1, 2025
    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.

    4 participants