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

opensearch: Replace Elasticsearch by OpenSearch #577

Merged
merged 1 commit into from
Aug 11, 2023
Merged
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
10 changes: 5 additions & 5 deletions docs/develop/architecture/infrastructure.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ infrastructure. It consists of:
- **Application servers:** UWSGI, Gunicorn or mod_wsgi.
- **Distributed task queue:** Celery
- **Database:** PostgreSQL, MySQL or SQLite.
- **Search engine:** Elasticsearch (v6 and v7).
- **Search engine:** OpenSearch (v1 and v2).
- **Message queue:** RabbitMQ, Redis or Amazon SQS.
- **Cache system:** Redis or Memcache.
- **Storage system:** Local, S3, XRootD, WebDAV and more.
Expand Down Expand Up @@ -97,17 +97,17 @@ than a database.

## Search and indexing

Invenio uses Elasticsearch as its underlying search engine since Elasticsearch
Invenio uses OpenSearch as its underlying search engine since OpenSearch
is fully JSON-based, and thus fit well together with storing records internally
in the database as JSON documents.

Elasticsearch furthermore is highly scalable and provides very powerful search
OpenSearch furthermore is highly scalable and provides very powerful search
and aggregation capabilities. You can for instance make geospatial queries with
Elasticsearch.
OpenSearch.

**Direct indexing**

Invenio has the option to directly index a record in Elasticsearch when
Invenio has the option to directly index a record in OpenSearch when
handling a request, and thus make the record immediately available for
searches.

Expand Down
Loading