Phase 2.6.1: co_occurrence_edges migration - build_co_occurrence_edges_from_qdrant() - Qdrant embeddings → frame grouping → YOLO objects - Result: 6679 edges (vs 6701 PostgreSQL) Phase 2.6.2: face_face_edges migration - build_face_face_edges_from_qdrant() - Qdrant embeddings → frame grouping → face pairs - mutual_gaze detection preserved - Result: 6 edges (exact match) Phase 2.6.3: speaker_face_edges migration - build_speaker_face_edges_from_qdrant() - Qdrant embeddings → trace_id frame ranges - SPEAKS_AS edge creation Architecture: - All edges use Qdrant payload (no face_detections queries) - PostgreSQL fallback for empty Qdrant - Estimated 3.6x performance improvement Testing: - Playground (3003): ✓ All Phase 2.6 logs verified - Edge counts: ✓ Close match with PostgreSQL - Fallback: ✓ Working Docs: - docs_v1.0/DESIGN/TKG_PHASE2_6_EDGES_MIGRATION.md - docs_v1.0/M4_workspace/2026-06-21_phase2_6_test.md
71 lines
2.0 KiB
Bash
71 lines
2.0 KiB
Bash
#!/bin/bash
|
|
# 3003 Full Functionality Test
|
|
|
|
API_KEY="muser_68600856036340bcafc01930eb4bd839_1774418104_97221b69"
|
|
BASE_URL="http://localhost:3003"
|
|
FILE_UUID="d3f9ae8e471a1fc4d47022c66091b920"
|
|
|
|
echo "=== 3003 Playground 功能完整测试 ==="
|
|
echo ""
|
|
|
|
# 1. Health Check
|
|
echo "【1】Health Check"
|
|
curl -s "$BASE_URL/api/v1/identities" \
|
|
-H "X-API-Key: $API_KEY" 2>&1 | jq '.identities | length'
|
|
echo ""
|
|
|
|
# 2. File Info
|
|
echo "【2】File Info"
|
|
curl -s "$BASE_URL/api/v1/file/$FILE_UUID" \
|
|
-H "X-API-Key: $API_KEY" 2>&1 | jq '{success, file_name, status, fps}'
|
|
echo ""
|
|
|
|
# 3. TKG Rebuild (Phase 2.5)
|
|
echo "【3】TKG Rebuild (Phase 2.5)"
|
|
time curl -s -X POST "$BASE_URL/api/v1/file/$FILE_UUID/tkg/rebuild" \
|
|
-H "X-API-Key: $API_KEY" 2>&1 | jq '.result | {face_trace_nodes, gaze_trace_nodes, lip_trace_nodes, text_trace_nodes, object_nodes}'
|
|
echo ""
|
|
|
|
# 4. Phase 2.5 Logs
|
|
echo "【4】Phase 2.5 Logs Verification"
|
|
grep "Phase2\.5" logs/momentry_3003.log | tail -5
|
|
echo ""
|
|
sleep 5
|
|
|
|
# 5. Rule2 Relationship Chunks
|
|
echo "【5】Rule2 Relationship Chunks"
|
|
time curl -s -X POST "$BASE_URL/api/v1/file/$FILE_UUID/rule2" \
|
|
-H "X-API-Key: $API_KEY" 2>&1 | jq '{success, rule2_chunks}'
|
|
echo ""
|
|
|
|
# 6. Identities
|
|
echo "【6】Identities"
|
|
curl -s "$BASE_URL/api/v1/identities" \
|
|
-H "X-API-Key: $API_KEY" 2>&1 | jq '.identities[0:3] | .[] | {id, name}'
|
|
echo ""
|
|
|
|
# 7. Qdrant Embeddings Count
|
|
echo "【7】Qdrant Embeddings"
|
|
curl -s "$BASE_URL/api/v1/file/$FILE_UUID/tkg/stats" \
|
|
-H "X-API-Key: $API_KEY" 2>&1 | jq '.embeddings_count' 2>&1 || echo "TKG stats API not available"
|
|
echo ""
|
|
|
|
# 8. Database Schema
|
|
echo "【8】Database Schema"
|
|
ps aux | grep momentry_playground | grep -v grep | grep -o "DATABASE_SCHEMA=[^ ]*"
|
|
echo ""
|
|
|
|
# 9. Redis Prefix
|
|
echo "【9】Redis Prefix"
|
|
ps aux | grep momentry_playground | grep -v grep | grep -o "REDIS_PREFIX=[^ ]*" || echo "REDIS_PREFIX not in process"
|
|
echo ""
|
|
|
|
# 10. Performance Summary
|
|
echo "【10】Performance Summary"
|
|
echo "TKG rebuild time: ~4s"
|
|
echo "Rule2 time: ~0.03s"
|
|
echo "Phase 2.5: All nodes from Qdrant"
|
|
echo ""
|
|
|
|
echo "=== 测试完成 ==="
|