Skip to content

BlackLake Operations Guide

This document provides comprehensive operations procedures for the BlackLake data platform.

Operations Procedures

Health Monitoring

# Check all services
curl http://localhost:8080/health

# Check database
curl http://localhost:8080/health/db

# Check storage
curl http://localhost:8080/health/storage

Backup and Recovery

# Backup database
docker-compose exec db pg_dump -U blacklake blacklake > backup.sql

# Restore database
docker-compose exec -T db psql -U blacklake blacklake < backup.sql

Additional Resources

Support