Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@
- Custom Request Handlers: No direct equivalent; must rebuild using standard Search API + Client-side logic.
- Search Components: No equivalent; logic must be moved to the client or a custom OpenSearch plugin.
- Solr Power: No equivalent; use standard OpenSearch feature set.
- Querqy: The Solr query rewriting plugin has an OpenSearch equivalent — [Querqy for OpenSearch](https://github.com/querqy/querqy-opensearch). Migration requires installing the plugin and converting rewriter configs. Flag this as a critical dependency when detected (e.g. querqy JARs in lib/, QuerqyRewriterRequestHandler in solrconfig.xml).

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

That is a tidy PR!

This comment holds for this file and the index_design.md change below:
One thing Im missing: is there a corresponding test? If not, but in another PR, Id pull this to the PR where the test is located (you mentioned this change was needed to make the test go green?). If existing nowhere, Id suggest to add it.

Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@
- `solr.DateField` → `date`.
- `solr.BoolField` → `boolean`.

## Output Format
- Always include a complete, valid OpenSearch index mapping as a JSON code block.
- The JSON mapping must be copy-pasteable into a `PUT /<index>` request body.
- Do not describe field mappings only in prose — the JSON mapping is the primary deliverable.
- Annotate the JSON with comments or follow-up prose explaining non-obvious type decisions.

## Analysis
- Solr Tokenizers/Filters → OpenSearch Analysers/Tokenizers/Filters.
- `copyField` → `copy_to`.