Skip to main content

Health Check

Health Check is a read-only diagnostics panel, not a form you fill in. It reports, in real time, whether the platform’s core dependencies are reachable and correctly configured:
  • Infrastructure: Database, search index, schema migrations
  • Search: Search reindex status, semantic search embeddings (when enabled)
  • External dependencies: Authentication keys, ingestion service, log storage (when configured)
Run it first whenever something feels off elsewhere in OpenMetadata — a stuck ingestion pipeline or missing search results often trace back to one of these checks failing. Purpose and Benefits
  • Purpose: Check live status of the platform’s core dependencies, such as the database and search index.
  • Benefits: Gives you one place to look before troubleshooting an issue anywhere else.

How to Check

To check platform health, follow the steps below:
  1. Navigate to Settings > Preferences > Health Check. Health Check panel
  2. Review the status of each check: Infrastructure
    • Database: Connectivity to the metadata database. If this fails, nothing in OpenMetadata can read or write metadata.
    • Search Instance: Connectivity to the search/index cluster. If this fails, search, discovery, and lineage graphs stop returning results.
    • Migrations: That all expected schema migrations have run. An incomplete migration can cause unpredictable errors elsewhere until it’s resolved.
    Search
    • Search Reindex Status: That every deployed search index was built from the current index mapping, so no reindex is pending. A pending reindex means some assets might not appear in search until it completes.
    • Semantic Search: That the embeddings used for semantic search are working, shown only when semantic search is enabled. If this fails, natural-language search requests return an error instead of results.
    External dependencies
    • Pipeline Service Client: Connectivity to the ingestion pipeline service. If this fails, no ingestion or profiler workflow can be triggered.
    • JWKs: That the configured JWKS (JSON Web Key Set) validates correctly. If this fails, token-based authentication can break for some or all users.
    • Log Storage: Connectivity to S3 log storage, shown only when S3 storage is configured. If this fails, ingestion logs aren’t retrievable from the UI.
    Health Check status for each dependency
  3. Click Refresh to re-run all checks after fixing a reported issue.