2025.50 Infrastructure Changes
2 min read
Changes on Application environment
Change | Name | Application Default Value | Example | Required | Applications | Short Description |
|---|---|---|---|---|---|---|
Added |
|
|
| No |
| This flag enables the module based event distribution on the external apps configured |
Added |
|
|
| No |
| Enable AI Module selection for endpoint creation |
Added |
|
| No |
| Enable Agentic Table cell feedback functionality | |
Removed |
|
| Pagination for Agentic Table is now GA | |||
Removed |
|
| Row deletion row Agentic Table is now GA | |||
CronJob node-ingestion-maintenance The env variables variables should be set as part of the | ||||||
Added |
|
| * * * * * (Every minute) | No |
| The cron schedule for the Kubernetes CronJob that triggers the maintenance orchestrator. Must match the value in the cron |
Added |
|
| * * * ** (Every minute) | No |
| Cron schedule for the ingestion timeout cleanup job. |
Added |
|
| 120 | No |
| The number of minutes after which a file stuck in a processing state is considered timed out and marked as |
Added |
|
| 1 | No |
| Number of companies to process concurrently during ingestion timeout cleanup |
Changes on Infrastructure
1. Ingestion Timeout Cleanup - Maintenance Job
Application: backend-service-ingestion
Automated Maintenance Job System to detect and handle timed-out ingestion processes. This is an extraCronJobs set on the backend-service-ingestion
Key Features
Maintenance Job Orchestrator
Central service that manages and executes maintenance jobs based on cron schedules
Runs every 2 hours in dedicated maintenance mode and executes any configured maintenance services (at the moment only content timeout cleanup see below) whenever their cron schedule matches the interval.
Ingestion Timeout Cleanup Job
Processes all companies in the platform. The amount of companies to process concurrently can be configured via
MAINTENANCE_CONTENT_TIMEOUT_COMPANY_CONCURRENCY(default: 1)For each company, the service detects content stuck in any of the below processing states for more than 120 minutes. The timeout can be configured via
MAINTENANCE_CONTENT_TIMEOUT_MINUTES(default: 120):INGESTION_READINGINGESTION_CHUNKINGINGESTION_EMBEDDINGMALWARE_SCANNINGMETADATA_VALIDATIONRE_EMBEDDINGRE_INGESTINGRECREATING_VECETORDB_INDEXCHECKING_INTEGRITY
Transitions timed-out content to new
FAILED_TIMEOUTstateRuns every hour with configurable timeout threshold and company concurrency
New Ingestion State
Added
FAILED_TIMEOUTingestion state to distinguish timeout failures
Recommended Configuration
Application: backend-service-ingestion
extraCronJobs:
node-ingestion-maintenance:
# Run every 2 hours to check which jobs are due based on their individual schedules
schedule: "0 */2 * * *"
restartPolicy: Never
concurrencyPolicy: Forbid
env:
RUNNING_MODE: maintenance
# Maintenance orchestrator configuration - must match the CronJob schedule above
MAINTENANCE_ORCHESTRATOR_CRON_SCHEDULE: "0 */2 * * *"
# Ingestion timeout cleanup job
MAINTENANCE_CONTENT_TIMEOUT_MINUTES: "120"
MAINTENANCE_CONTENT_TIMEOUT_CRON_SCHEDULE: "0 */2 * * *"
successfulJobsHistoryLimit: 1
failedJobsHistoryLimit: 2
startingDeadlineSeconds: 10
timeZone: Europe/ZurichNew Environment Variables:
MAINTENANCE_ORCHESTRATOR_CRON_SCHEDULE- Indicates the maintenance service orchestrator in which interval the job is triggered. Must match the value in the cronscheduletag. Default:0 */2 * * *(every 2 hours)MAINTENANCE_CONTENT_TIMEOUT_MINUTES- Timeout threshold in minutes. Default:120MAINTENANCE_CONTENT_TIMEOUT_CRON_SCHEDULE- Maintenance timeout service execution schedule. This value must be set in alignment with theschedule/MAINTENANCE_ORCHESTRATOR_CRON_SCHEDULEvalues. The interval cannot be more frequent. Default:0 */2 * * *(every 2 hours)MAINTENANCE_CONTENT_TIMEOUT_COMPANY_CONCURRENCY- Number of companies to process in parallel. Default:1
Deployment:
New Kubernetes CronJob in
backend-service-ingestion:node-ingestion-maintenanceSchedule: Every 2 hours
Concurrency: Forbid (prevents overlapping executions)
Author | Solution Engineering |
|---|