Menu
🟠AWS Architecture Blog·January 29, 2026

AWS Architecture for AI-Powered Cancer Diagnostics at Artera

This article details Artera's scalable AWS architecture for their AI-powered prostate cancer diagnostic platform, which processes large biopsy images and delivers personalized treatment recommendations. It highlights the use of AWS services for secure data ingestion, complex AI model orchestration, and regulatory compliance, addressing challenges of high-resolution image processing and sensitive patient data management.

Read original on AWS Architecture Blog

Artera's AI-powered prostate cancer diagnostic platform is a prime example of building a scalable and compliant system for processing sensitive medical data with AI/ML workloads. The core challenge involved managing extremely large biopsy image files (up to 8 GB each), breaking them down into smaller patches for model processing, and serving millions of these patches to foundation models for training and inference, all while adhering to strict healthcare regulations like HIPAA.

Architectural Overview

The system leverages a comprehensive suite of AWS services, emphasizing a modern, scalable design. The architecture is designed to handle high-volume data ingestion, complex workflow orchestration, and globally distributed deployments while ensuring data locality and stringent security.

ℹ️

Key System Design Challenges

<ul><li><strong>Large Data Volume:</strong> Handling biopsy images up to 8GB, requiring chunking and high-volume serving to ML models.</li><li><strong>Complex Workflows:</strong> Orchestrating multiple AI models and preprocessing steps.</li><li><strong>Regulatory Compliance:</strong> Adhering to HIPAA and other data residency requirements for sensitive patient data.</li><li><strong>Performance:</strong> Accelerating diagnosis time to results for critical medical decisions.</li></ul>

Data Ingestion and Frontend

  • <strong>AWS Global Accelerator:</strong> Improves availability and performance for global users by routing traffic through the AWS network to the nearest region.
  • <strong>Application Load Balancer:</strong> Distributes incoming traffic across web portal instances.
  • <strong>Amazon CloudFront:</strong> Serves static assets for the portal, providing low-latency content delivery worldwide.
  • <strong>Amazon ECS:</strong> Hosts the containerized web portal, providing the user interface for medical professionals to upload images and retrieve results.

AI/ML Processing and Storage

  • <strong>Amazon EKS:</strong> Manages Kubernetes clusters for AI/ML inference workloads, enabling the analysis of biopsy images using computer vision models. It also facilitates the training of massive foundation models.
  • <strong>Amazon EFS:</strong> Provides shared file storage accessible by both Amazon ECS and Amazon EKS, crucial for storing and processing large biopsy images efficiently during the preprocessing and model execution phases.
  • <strong>Amazon S3:</strong> Serves as durable and secure storage for raw biopsy images and analysis results, forming the backbone of their data lake.
  • <strong>Amazon RDS:</strong> A managed relational database for patient records, diagnostic results, and application metadata, ensuring high availability and reliability.
  • <strong>Amazon ElastiCache:</strong> Utilized for in-memory caching to enhance application performance and reduce latency for frequently accessed data.

Security and Monitoring

  • <strong>AWS IAM:</strong> Manages granular access controls and permissions across all AWS resources.
  • <strong>AWS KMS:</strong> Handles encryption keys for sensitive patient data, critical for HIPAA compliance.
  • <strong>Amazon CloudWatch:</strong> Provides comprehensive monitoring of the entire infrastructure for performance, health, and operational insights.

This architecture demonstrates a robust pattern for building compliant, high-performance AI/ML platforms on the cloud, particularly for scenarios involving large, sensitive datasets and complex computational workflows. The emphasis on containerization (ECS/EKS), managed services (RDS, EFS, ElastiCache), global network optimization (Global Accelerator, CloudFront), and strong security controls (IAM, KMS) highlights best practices in modern cloud-native system design.

AWSAI/MLHealthcareData ProcessingScalabilityComplianceContainerizationMicroservices

Comments

Loading comments...