Notice: Function WP_Scripts::add was called incorrectly. The script with the handle "markdown-renderer" was enqueued with dependencies that are not registered: mermaid-js, prism-core. Please see Debugging in WordPress for more information. (This message was added in version 6.9.1.) in /home/dataadl/www/wp-includes/functions.php on line 6131

Azure SQL Hyperscale: 100TB Databases

Traditional Azure SQL Database is limited by the disk size of the underlying VM (4TB max usually). **Hyperscale** decouples compute from storage, allowing databases to grow up to 100TB with rapid scaling.

Architecture

flowchart TB
    App --> Compute[Primary Compute Node]
    Compute -->|Log Service| Log[Log Service]
    Log -->|Async| Page1[Page Server 1]
    Log -->|Async| Page2[Page Server 2]
    Page1 --> Storage[Remote Storage (Azure Blob)]
    Page2 --> Storage
    
    style Compute fill:#E1F5FE,stroke:#0277BD

Why use it?

  • **Instant Backups**: Backups are file-snapshots, taking zero IOPS from the compute.
  • **Fast Restore**: Restoring a 50TB database takes minutes, not days.
  • **Read Replicas**: You can add 0-4 replicas for read scale-out dynamically.

Key Takeaways

  • Hyperscale is the future tier for general purpose workloads.
  • Migration is one-way (you can’t go back to General Purpose easily).

Discover more from C4: Container, Code, Cloud & Context

Subscribe to get the latest posts sent to your email.

Leave a comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.