modelRT/task
douxu 1b1f43db7f feat: implement topology analysis async task with BFS connectivity check
- add TopologyAnalysisHandler.Execute() with 5-phase BFS reachability
    check between start/end component UUIDs; support CheckInService flag
    to skip out-of-service nodes during traversal
  - carry task params through RabbitMQ message (TaskQueueMessage.Params)
    instead of re-querying DB in handler; update TaskHandler.Execute
    interface and all handler signatures accordingly
  - fix BuildMultiBranchTree UUIDFrom condition bug; return nodeMap for
    O(1) lookup; add QueryTopologicByStartUUID for directed traversal
  - add QueryBayByUUID/QueryBaysByUUIDs and
    QueryComponentsInServiceByUUIDs (two-column select) to database layer
  - add diagram.FindPath via LCA algorithm for tree path reconstruction
  - move initTracerProvider to middleware.InitTracerProvider; add
    OtelConfig struct to ModelRTConfig for endpoint configuration
  - update topology analysis params to start/end_component_uuid +
    check_in_service; remove dead topology init code
2026-04-24 17:14:46 +08:00
..
handler_factory.go feat: implement topology analysis async task with BFS connectivity check 2026-04-24 17:14:46 +08:00
initializer.go feat: implement end-to-end distributed tracing for HTTP and async tasks 2026-04-23 16:48:32 +08:00
metrics_logger.go Extend async task system with database integration and retry management 2026-04-03 10:07:43 +08:00
queue_message.go feat: implement topology analysis async task with BFS connectivity check 2026-04-24 17:14:46 +08:00
queue_producer.go feat: implement topology analysis async task with BFS connectivity check 2026-04-24 17:14:46 +08:00
retry_manager.go Refactor: extract task constants to dedicated constants package 2026-04-22 17:20:26 +08:00
retry_queue.go Extend async task system with database integration and retry management 2026-04-03 10:07:43 +08:00
test_task.go feat: implement topology analysis async task with BFS connectivity check 2026-04-24 17:14:46 +08:00
types.go Refactor: extract task constants to dedicated constants package 2026-04-22 17:20:26 +08:00
types_v2.go Refactor async task system with unified task interfaces and add test task type 2026-04-14 17:00:30 +08:00
worker.go feat: implement topology analysis async task with BFS connectivity check 2026-04-24 17:14:46 +08:00