release: v1.3.0 - TKG node type renaming
Changes: - Rust: face_trace → face_track (45 occurrences in 8 files) - Rust: gaze_trace → gaze_track, lip_trace → lip_track - Python: tkg_builder.py unified + pipeline_checklist.py fixed - Swift: swift_hand.swift hand state detection (empty vs holding) Node type changes: face_trace → face_track person_trace → body_track gaze_trace → gaze_track lip_trace → lip_track hand_trace → hand_track speaker → speaker_segment object → detected_object text_trace → text_region Migration: PUBLIC schema: 12970 + 892 + 305 rows updated
This commit is contained in:
13
check_jobs_status.sh
Executable file
13
check_jobs_status.sh
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
# Query PostgreSQL monitor_jobs status
|
||||
# Using Rust code to execute SQL
|
||||
|
||||
echo "Jobs in PostgreSQL:"
|
||||
cat << 'SQL' > query_jobs.sql
|
||||
SELECT uuid, status, processors, created_at::date
|
||||
FROM monitor_jobs
|
||||
ORDER BY created_at DESC
|
||||
LIMIT 10;
|
||||
SQL
|
||||
|
||||
echo "SQL query created. Need to execute via API or Rust..."
|
||||
Reference in New Issue
Block a user