INGST-01: Accept RouteExecution via POST /api/v1/data/executions #1
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Server accepts
RouteExecution(single JSON object or JSON array) viaPOST /api/v1/data/executionsand returns202 Acceptedwith{"status": "accepted", "count": N}.Category: Data Ingestion
REQ-ID: INGST-01
Implemented in Phase 1.
IngestionControlleraccepts single or array JSON atPOST /api/v1/data/executions, returns 202 with count. Writes are batch-buffered viaWriteBufferand flushed to ClickHouse byClickHouseFlushScheduler. Key files:IngestionController.java,ClickHouseExecutionRepository.java,WriteBuffer.java.