Best Practices & Performance
You already know how to run Firecube. This section is for making production runs reliable, observable, and fast enough for the workload.
Firecube performance decisions usually come after one operational question: where is the run spending time? Measure first, then choose the smallest change that matches the bottleneck.
Common Paths
- Going to production? Start with Production Guide. It covers the default way to run one product job, preserve ChunkManager records, pass secrets, clean workspaces, and enable observability.
- A run is slow? Use Performance Tuning. It starts from the pipeline phases and maps bottlenecks to the right tuning knobs.
- Need more workers? Use Parallelism. It explains which
parallel model fits
GenericZarrIngestor,DirectZarrIngestor,GenericParquetIngestor, and staged uploads. - Need measured examples? Use Benchmarks. Treat the numbers as workload examples, then benchmark your own product with the same measurements.
Recommended Defaults
For most production runs:
- run one
firecube ingestcommand per product target; - pass
--product-name,--target,--storage-type,--storage-driver,--output-format, and--write-modeexplicitly; - keep ChunkManager records with the product when moving, copying, packaging, or restoring data;
- start with one worker, then add parallelism from the output format and plugin class;
- configure logs, metrics, and traces before the first production run.
Next Steps
- Production Guide — run Firecube reliably in production
- Performance Tuning — tune by bottleneck
- Parallelism — choose safe workers and write domains
- Benchmarks — compare measured workload examples
- Operations — inspect, recover, and clean up products
- CLI Reference — complete command surface