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

feat: Add support for MongoDB $search operator #2526

Closed
wants to merge 14 commits into from

Conversation

dblythy
Copy link
Member

@dblythy dblythy commented Mar 18, 2025

Pull Request

Issue

Closes: #1989

Approach

Adds ability to use Mongodb atlas search

Tasks

Copy link

parse-github-assistant bot commented Mar 18, 2025

🚀 Thanks for opening this pull request!

@dblythy dblythy changed the title Feature: search Feature: mongodb atlas search Mar 18, 2025
Copy link

codecov bot commented Mar 18, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 100.00%. Comparing base (44eeacd) to head (4c7291b).
Report is 1 commits behind head on alpha.

Additional details and impacted files
@@            Coverage Diff            @@
##             alpha     #2526   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files           64        64           
  Lines         6244      6258   +14     
  Branches      1468      1456   -12     
=========================================
+ Hits          6244      6258   +14     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@dblythy dblythy requested a review from a team March 20, 2025 08:27
@mtrezza mtrezza changed the title Feature: mongodb atlas search feat: Add support for MongoDB Atlas $search operator Mar 20, 2025
@mtrezza mtrezza changed the title feat: Add support for MongoDB Atlas $search operator feat: Add support for MongoDB $search operator Mar 20, 2025
@dplewis
Copy link
Member

dplewis commented Mar 27, 2025

@dblythy I fixed the merge conflicts, can you improve code coverage?

*
*/

async search(value: string, path: string[], options?: SearchOptions): Promise<T[]> {
Copy link
Member

@dplewis dplewis Mar 31, 2025

Choose a reason for hiding this comment

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

For consistency we should rename value to query and it should allow for string | string[]. This should be good enough for a simple search. We can add regex, allowAnalyzedField, and score options later or now if you prefer. For more advanced searching like compound the developer would have to use query.aggregate.

Edit: There is a empty line above that should be removed

Copy link
Member

@mtrezza mtrezza left a comment

Choose a reason for hiding this comment

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

Why has this been added as a new API? I think just allowing the $search op in the aggregation pipeline would be enough?

@dplewis
Copy link
Member

dplewis commented Mar 31, 2025

@mtrezza I just tried it with the aggregate pipeline and it works. I think this can be closed, no need to add new api.

@mtrezza
Copy link
Member

mtrezza commented Mar 31, 2025

The issue objective was to add support for $search and $searchMeta to the aggregation pipeline. If I'm not mistaken, either the JS SDK or Parse Server are validating the aggregation pipeline stages, i.e. only the keys, not their values. If that already works, then either the key validation feature has been removed in the meantime, or the stage names are already supported. We should find out why this seems to work, to ensure that it really works.

@dplewis
Copy link
Member

dplewis commented Mar 31, 2025

The stage check was removed parse-community/parse-server#7237

Ironically it was because somebody wanted to use $search lol

@mtrezza
Copy link
Member

mtrezza commented Mar 31, 2025

Ha! Even in PS5 already. Are we sure there there is not further validation in the JS SDK for example? The added test looks suspicious. I would rather see a test that uses Parse.Query.aggregate to go through the JS SDK. Even though $search is no supported by mongodb-runner, but we could test the error, or mock and inspect what's sent to the driver. I think this PR should be changed to add such a test if none exists yet for $search, otherwise I agree that it can be closed.

@dplewis
Copy link
Member

dplewis commented Mar 31, 2025

You opened #1989 did you test that it wasn't supported.

@mtrezza
Copy link
Member

mtrezza commented Mar 31, 2025

That was 2 years ago, but I believe to vaguely remember that I wanted to use it and it didn't work. But maybe it was an older version of Parse Server, or maybe there has been a bug fix in the meantime, hard to tell now. I think by adding a test we can close this issue.

@dplewis
Copy link
Member

dplewis commented Mar 31, 2025

If you want to do a test then it should be done on the server since there is access to the driver. This isn't an SDK issue.

@mtrezza
Copy link
Member

mtrezza commented Apr 1, 2025

We don't know whether it's an SDK issue, until we do an integration test, right? I think it make sense to add a test in either repo, that's unfortunately the situation we're in with the JS SDK being part of Parse Server.

@dplewis
Copy link
Member

dplewis commented Apr 1, 2025

I know it’s not an SDK issue because I tested it on my machine, also any aggregate pipeline gets passed to the server regardless of the stages. A good test is the error thrown if MongoDB is used without atlas search

@dblythy
Copy link
Member Author

dblythy commented Apr 1, 2025

Just an FYI that I use mongodb atlas search myself on my own servers:

const pipeline = [
        {
          $search: {
            index: "default",
            text: {
              path: ["name"],
              query: search,
            },
          },
        },
        { $match: { approved: true, mode: user.get("mode"), published: true } },
        { $limit: 100 },
      ];
      const response = await new Parse.Query(Business).aggregate(pipeline as any);

And it works great

@mtrezza mtrezza closed this Apr 1, 2025
@mtrezza
Copy link
Member

mtrezza commented Apr 1, 2025

Then I'm not sure why this PR was opened in the first place. The issue was that $search and $searchMeta should be supported in the aggregation pipeline. Since it's already supported, the issue should simply have been closed.

@dplewis
Copy link
Member

dplewis commented Apr 1, 2025

Then I'm not sure why this PR was opened in the first place.

Because somebody opened a feature request for a feature that already exist and let it stay open a year and a half. Thankfully we found 2 bugs because of this PR.

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.

Add support for MongoDB Atlas $search operator
3 participants