Skip to main content
Go to documentation:
⌘U
Weaviate Database

Develop AI applications using Weaviate's APIs and tools

Deploy

Deploy, configure, and maintain Weaviate Database

Weaviate Agents

Build and deploy intelligent agents with Weaviate

Weaviate Cloud

Manage and scale Weaviate in the cloud

Additional resources

Academy
Integrations
Contributor guide

Need help?

Weaviate LogoAsk AI Assistant⌘K
Community Forum

Status

Various cluster statuses are available in Weaviate.

Liveness

The live endpoint checks if the application is alive. You can use it for a Kubernetes liveness probe.

Usage

The endpoint accepts a GET request:

GET /v1/.well-known/live

The endpoint returns HTTP status code 200 if the application is able to respond to HTTP requests.

Example

import weaviate

client = weaviate.connect_to_local()

print(client.is_live())

finally:
client.close()

The endpoint returns HTTP status code 200 if the application is able to respond to HTTP requests.

Readiness

The ready endpoint checks if the application is ready to receive traffic. You can use it for Kubernetes readiness probe.

Usage

The discovery endpoint accepts a GET request:

GET /v1/.well-known/ready

The endpoint returns HTTP status code 200 if the application is able to respond to HTTP requests. If the application is currently unable to serve traffic, the endpoint returns HTTP status code 503.

If the application is unavailable and you have horizontal replicas of Weaviate that can receive traffic, redirect traffic to one of the replicas.

Example

import weaviate

client = weaviate.connect_to_local()

print(client.is_ready())

finally:
client.close()

Schema synchronization

The v1//schema/cluster-status endpoint displays the status of the schema synchronization. The endpoint returns the following fields:

  • healthy: The status of the schema synchronization.
  • hostname: The hostname of the Weaviate instance.
  • ignoreSchemaSync: Whether to ignore the cluster check at startup (for recovery from an out-of-sync situation).
  • nodeCount: The number of nodes in the cluster.

Example response:

{
"healthy": true,
"hostname": "node1",
"ignoreSchemaSync": false,
"nodeCount": 3
}

Questions and feedback

If you have any questions or feedback, let us know in the user forum.