Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/GuancheData/stage_3/llms.txt

Use this file to discover all available pages before exploring further.

The health endpoint provides a simple liveness check for the search service. It returns immediately with a fixed JSON response and does not validate connectivity to Hazelcast or the state of the inverted index. Use it to confirm that the HTTP server process is up and reachable. The endpoint is available both directly on port 7003 and through the Nginx reverse proxy on port 8080.

Requests

Via Nginx (port 8080):
curl http://localhost:8080/health
Direct access (port 7003):
curl http://localhost:7003/health

Response

HTTP 200

status
string
required
Always "healthy" when the service is running and accepting requests.
service
string
required
Always "execute". Identifies this as the search execution service, distinct from other services in the cluster.
{
  "status": "healthy",
  "service": "execute"
}

Build docs developers (and LLMs) love