Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
706 changes: 706 additions & 0 deletions docs/PIPELINE_OPERATIONS_GUIDE.md

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions docs/getting-started/DATA_CONFIGURATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Edit `config/system_profile.yaml` (gitignored - safe for personal paths):
cp config/system_profile.yaml.example config/system_profile.yaml

# Edit system_profile.yaml
data_root: /Volumes/ExternalSSD/quantmini-data/data
data_root: /Volumes/ExternalSSD/quantlake/data
```

**Pros**:
Expand Down Expand Up @@ -148,13 +148,13 @@ Store data on a fast external drive:

```bash
# macOS
DATA_ROOT=/Volumes/ExternalSSD/quantmini-data/data
DATA_ROOT=/Volumes/ExternalSSD/quantlake/data

# Linux
DATA_ROOT=/mnt/storage/quantmini-data/data
DATA_ROOT=/mnt/storage/quantlake/data

# Windows (WSL)
DATA_ROOT=/mnt/d/quantmini-data/data
DATA_ROOT=/mnt/d/quantlake/data
```

**Pros**: More storage capacity, doesn't fill system drive
Expand All @@ -169,7 +169,7 @@ Store data on NAS or cloud storage:
DATA_ROOT=/mnt/nas/quantmini/data

# Cloud (mounted via rclone, etc.)
DATA_ROOT=/mnt/s3/quantmini-data/data
DATA_ROOT=/mnt/s3/quantlake/data
```

**Pros**: Accessible from multiple machines, backup built-in
Expand Down
4 changes: 2 additions & 2 deletions docs/guides/data-ingestion-strategies.md
Original file line number Diff line number Diff line change
Expand Up @@ -509,15 +509,15 @@ uv run python scripts/validation/validate_duckdb_access.py
**Solution**:
```bash
# Check disk usage
df -h /Volumes/sandisk/quantmini-data
df -h /Volumes/sandisk/quantlake

# Clean old data
uv run python scripts/maintenance/cleanup_old_data.py \
--keep-days 365

# Move to external drive
rsync -av --progress \
/Volumes/sandisk/quantmini-data/ \
/Volumes/sandisk/quantlake/ \
/Volumes/backup/quantmini-archive/
```

Expand Down
Loading
Loading