zinc
Lightweight full-text search engine
TLDR
SYNOPSIS
zinc [options]
DESCRIPTION
ZincSearch (formerly Zinc) is a lightweight, full-text search engine designed as an alternative to Elasticsearch. It provides log search and analytics with significantly lower resource requirements.
ZincSearch features a web UI for management, REST API compatible with Elasticsearch's search syntax, and supports various data ingestion methods including bulk insert and fluentd/fluent-bit integration.
The search engine is written in Go and uses Bluge as its indexing library. It runs as a single binary with embedded storage, requiring no external dependencies.
Common use cases include log aggregation, application search, and replacing Elasticsearch in resource-constrained environments. The project has since evolved into OpenObserve.
PARAMETERS
Note: ZincSearch (now OpenObserve) is primarily configured via environment variables rather than command-line flags.
ENVIRONMENT
ZINC_FIRST_ADMIN_USER
Initial admin usernameZINC_FIRST_ADMIN_PASSWORD
Initial admin passwordZINC_DATA_PATH
Data storage directoryZINC_SERVER_ADDRESS
Server bind addressZINC_SERVER_PORT
Server portZINC_MAX_RESULTS
Maximum search results
CAVEATS
Zinc is not a drop-in Elasticsearch replacement. While it supports similar query syntax, not all Elasticsearch features are implemented.
For high-availability deployments, additional architecture (load balancers, replication) must be implemented manually.
Memory usage scales with index size. Monitor resources for large deployments.
First admin credentials must be set via environment variables before first run.
SEE ALSO
elasticsearch(1), opensearch(1), meilisearch(1)
