× DAS CDP
← Sessions

CONFLICT - SSIS Review 2026-06-08

CONFLICT - SSIS Review 2026-06-08

Summary

Summary

A team at DAS presented their current data infrastructure, which relies heavily on SSIS (SQL Server Integration Services) jobs to manage data pipelines. The system consists of tightly coupled jobs that run on predetermined schedules, with dependencies between them, and they frequently fail due to fragility in their design.

The main issues plaguing the system include: jobs that truncate and rebuild tables from scratch, making the system vulnerable to data loss if anything crashes; frequent failures that require constant manual intervention from three to four data engineers to keep running; and poor visibility and documentation about what each job actually does. One monitoring dashboard was recently built to track job status and success rates, revealing that some jobs have never run successfully.

The infrastructure spans multiple databases (some on EC2 instances and some on RDS), with data ingestion from various sources including customer SFTP servers and AWS file monitoring. SQL code is version-controlled in a repository, but the overall system lacks modern data pipeline practices and requires constant "tape and glue" fixes from engineers rather than sustainable solutions.

The team acknowledged that SSIS is outdated for their needs and that better alternatives exist for managing these data workflows in modern times.

Key Points

Knowledge Graph

graph LR
    SSIS_jobs["SSIS jobs"]:::technology
    Job["Job"]:::concept
    SSIS["SSIS"]:::technology
    ETLs["ETLs"]:::technology
    Application["Application"]:::technology
    Juice["Juice"]:::technology
    tables["tables"]:::concept
    Flagship_Product["Flagship Product"]:::concept
    Jobs["Jobs"]:::technology
    Data_Engineers["Data Engineers"]:::person
    AWS["AWS"]:::technology
    Dashboards["Dashboards"]:::technology
    Luis["Luis"]:::person
    Appointments["Appointments"]:::concept
    SQL["SQL"]:::technology
    Repository["Repository"]:::technology
    SFTP["SFTP"]:::technology
    Performance_Issues["Performance Issues"]:::concept
    metrics["metrics"]:::concept
    LastPass["LastPass"]:::technology
    Cloud["Cloud"]:::technology
    System_Tool["System/Tool"]:::technology
    monitoring_dashboard["monitoring dashboard"]:::concept
    Job_descriptions["Job descriptions"]:::concept
    Customers["Customers"]:::person
    Luis -- "works with" --> Cloud
    SSIS_jobs -- "operates on - drops, truncates, and rebuilds" --> tables
    Data_Engineers -- "maintains and fixes" --> System_Tool
    monitoring_dashboard -- "tracks" --> SSIS_jobs
    SQL -- "committed to" --> Repository
    SSIS -- "committed to" --> Repository
    AWS -- "monitors" --> SFTP
    AWS -- "triggers" --> SSIS
    Customers -- "uses for data transmission" --> SFTP
    SQL -- "related technology" --> SSIS
    Data_Engineers -- "manages/maintains" --> Performance_Issues
    Application -- "runs on" --> Cloud
    SQL -- "specific metrics sought for" --> metrics
    Juice -- "tool used to build" --> Dashboards
    Juice -- "is decoupled from" --> Application
    Dashboards -- "provides access to" --> Customers
    Repository -- "contains code for" --> ETLs
    Dashboards -- "can be emailed to on schedule" --> Customers
    Jobs -- "execution monitoring not yet deployed to" --> Cloud
    SSIS -- "hosted on" --> AWS
    Job -- "failure causes missing" --> Appointments
    classDef person fill:#f9d5e5,stroke:#333,stroke-width:1px
    classDef concept fill:#eeeeee,stroke:#333,stroke-width:1px
    classDef diagram fill:#d5f9e5,stroke:#333,stroke-width:1px
    classDef time fill:#e5d5f9,stroke:#333,stroke-width:1px

Key Points

Action Items