Skip to content
Merged
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
7 changes: 5 additions & 2 deletions home-manager/services/cass/index.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@ echo "$(date): starting cass sync + index + analytics rebuild"
# Sync remote sources (ignore failures for unreachable hosts)
"$CASS" sources sync || true

# Full reindex
"$CASS" index --full
# Full reindex (--force-rebuild to pick up new session files)
"$CASS" index --full --force-rebuild

# Build semantic vector index (ignore OOM on low-memory machines)
"$CASS" index --semantic --embedder fastembed || true

# Rebuild analytics rollup tables
"$CASS" analytics rebuild
Expand Down
Loading