Ingest Service
The data ingestion API. Receives incoming events/data, validates them, and publishes to the Event Hub stream for downstream processing.
Details
| Field | Value |
|---|---|
| URL | https://ingest-service.icydesert-76825898.southindia.azurecontainerapps.io |
| Azure name | ingest-service |
| Resource group | testing |
| Environment | cerebro-auth-env (South India) |
| Image | ca45076245feacr.azurecr.io/ingest-service:dff999d2... |
| Port | 8080 |
Pipeline Flow
External source → Ingest Service → Event Hub (cerebro-ingest-eh) → Router Service → Review/Config
Checkpoints are stored in the cerebrocheckpoints storage account so the pipeline can resume after restarts.
How to Update
az acr build \
--registry ca45076245feacr \
--resource-group testing \
--image ingest-service:$(git rev-parse HEAD) \
.
az containerapp update \
--name ingest-service \
--resource-group testing \
--image ca45076245feacr.azurecr.io/ingest-service:$(git rev-parse HEAD)
View Logs
az containerapp logs show \
--name ingest-service \
--resource-group testing \
--tail 50