Apache Answer Plugin: Elasticsearch Vector Search

This plugin enables semantic/vector search in Apache Answer using Elasticsearch with dense vector fields.

Prerequisites

  • Elasticsearch 8.0+ (with dense vector and kNN search support)
  • An OpenAI-compatible embedding API (e.g., OpenAI, Azure OpenAI, or any compatible provider)

Installation

Build Apache Answer with this plugin:

./answer build --with github.com/apache/answer-plugins/vector-search-elasticsearch

Configuration

After enabling the plugin in the Admin UI (Admin > Plugins > Vector Search), configure the following fields:

FieldDescriptionExample
EndpointsComma-separated Elasticsearch URLshttp://localhost:9200
UsernameElasticsearch username (optional)elastic
PasswordElasticsearch password (optional)changeme
Embedding API HostOpenAI-compatible API base URLhttps://api.openai.com
Embedding API KeyAPI key for the embedding servicesk-...
Embedding ModelModel name for generating embeddingstext-embedding-3-small
Embedding Levelquestion embeds question + all answers + comments together; answer embeds each answer separatelyquestion
Similarity ThresholdMinimum cosine similarity score (0-1). Default 0 means no filtering0.5

How It Works

  • Embedding dimensions are auto-detected from the configured model. No manual dimension configuration is needed.
  • On first configuration, the plugin creates an index answer_vector with a dense_vector field matching the detected dimensions and cosine similarity.
  • If the embedding model changes and produces different dimensions, the index is automatically deleted and recreated.
  • Uses Elasticsearch kNN search for vector similarity queries.
  • A full sync of all questions/answers is triggered when the plugin starts.

License

Apache License 2.0