https://github.com/codelibs/vespa-opensearch-app
https://github.com/codelibs/vespa-opensearch-app
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/codelibs/vespa-opensearch-app
- Owner: codelibs
- Created: 2023-11-13T13:01:14.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-28T12:52:44.000Z (over 1 year ago)
- Last Synced: 2025-01-28T10:36:18.591Z (5 months ago)
- Language: Java
- Size: 17.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Vespa OpenSearch Proxy Application
==================================## Overview
This project develops a sample application for deploying to the Vespa search engine, providing compatibility with Elasticsearch and OpenSearch request formats.
It aims to bridge the gap between Vespa's advanced search capabilities and the popular Elasticsearch/OpenSearch ecosystems.Note: This application is currently under development and may be subject to changes.
## Usage
### Build
```
$ mvn package
```### Start Vespa
```
$ docker run --detach --name vespa --hostname vespa-container --publish 8080:8080 --publish 19071:19071 vespaengine/vespa
```### Deploy Application
```
$ curl --header Content-Type:application/zip --data-binary @target/application.zip localhost:19071/application/v2/tenant/default/prepareandactivate
```