Claude
Skills
Sign in
← Back

hyperforce-2025

Included with Lifetime
$97 forever

Salesforce Hyperforce public cloud infrastructure and architecture (2025). PROACTIVELY activate for: (1) understanding Hyperforce architecture (multi-region, public cloud), (2) Hyperforce migration planning, (3) data residency and regional deployments, (4) Hyperforce security model (BYOK, Shield encryption), (5) network architecture (PrivateLink, public IP allowlists), (6) Hyperforce vs first-generation infrastructure differences, (7) backup and disaster recovery on Hyperforce, (8) Hyperforce performance and SLA, (9) compliance certifications (HIPAA, FedRAMP, GDPR). Provides: Hyperforce overview, migration checklist, network architecture patterns, BYOK setup, and DR/backup configuration.

Cloud & DevOps

What this skill does


## 🚨 CRITICAL GUIDELINES

### Windows File Path Requirements

**MANDATORY: Always Use Backslashes on Windows for File Paths**

When using Edit or Write tools on Windows, you MUST use backslashes (`\`) in file paths, NOT forward slashes (`/`).

**Examples:**
- ❌ WRONG: `D:/repos/project/file.tsx`
- βœ… CORRECT: `D:\repos\project\file.tsx`

This applies to:
- Edit tool file_path parameter
- Write tool file_path parameter
- All file operations on Windows systems


### Documentation Guidelines

**NEVER create new documentation files unless explicitly requested by the user.**

- **Priority**: Update existing README.md files rather than creating new documentation
- **Repository cleanliness**: Keep repository root clean - only README.md unless user requests otherwise
- **Style**: Documentation should be concise, direct, and professional - avoid AI-generated tone
- **User preference**: Only create additional .md files when user specifically asks for documentation


---

# Salesforce Hyperforce Architecture (2025)

## What is Hyperforce?

Hyperforce is Salesforce's next-generation infrastructure architecture built on public cloud platforms (AWS, Azure, Google Cloud). It represents a complete re-architecture of Salesforce from data center-based infrastructure to cloud-native, containerized microservices.

**Key Innovation**: Infrastructure as code that can be deployed anywhere, giving customers choice, control, and data residency compliance.

## Five Architectural Principles

### 1. Immutable Infrastructure

**Traditional**: Patch and update existing servers
**Hyperforce**: Destroy and recreate servers with each deployment

```yaml
Old Architecture:
Server β†’ Patch β†’ Patch β†’ Patch β†’ Configuration Drift

Hyperforce:
Container Image v1 β†’ Deploy
New Code β†’ Build Container Image v2 β†’ Replace v1 with v2
Result: Every deployment is identical, reproducible
```

**Benefits**:
- No configuration drift
- Consistent environments (dev = prod)
- Fast rollback (redeploy previous image)
- Security patches applied immediately

### 2. Multi-Availability Zone Design

**Architecture**:
```text
Region: US-East (Virginia)
β”œβ”€ Availability Zone A (Data Center 1)
β”‚  β”œβ”€ App Servers (Kubernetes pods)
β”‚  β”œβ”€ Database Primary
β”‚  └─ Load Balancer
β”œβ”€ Availability Zone B (Data Center 2)
β”‚  β”œβ”€ App Servers (Kubernetes pods)
β”‚  β”œβ”€ Database Replica
β”‚  └─ Load Balancer
└─ Availability Zone C (Data Center 3)
   β”œβ”€ App Servers (Kubernetes pods)
   β”œβ”€ Database Replica
   └─ Load Balancer

Traffic Distribution: Round-robin across all AZs
Failure Handling: If AZ fails, traffic routes to remaining AZs
RTO (Recovery Time Objective): <5 minutes
RPO (Recovery Point Objective): <30 seconds
```

**Impact on Developers**:
- Higher availability (99.95%+ SLA)
- Transparent failover (no code changes)
- Regional data residency guaranteed

### 3. Zero Trust Security

**Traditional**: Perimeter security (firewall protects everything inside)
**Hyperforce**: No implicit trust - verify everything, always

```text
Zero Trust Model:
β”œβ”€ Identity Verification (MFA required for all users by 2025)
β”œβ”€ Device Trust (managed devices only)
β”œβ”€ Network Segmentation (micro-segmentation between services)
β”œβ”€ Least Privilege Access (minimal permissions by default)
β”œβ”€ Continuous Monitoring (real-time threat detection)
└─ Encryption Everywhere (TLS 1.3, data at rest encryption)
```

**Code Impact**:
```apex
// OLD: Assume internal traffic is safe
public without sharing class InternalService {
    // No auth checks - trusted network
}

// HYPERFORCE: Always verify, never trust
public with sharing class InternalService {
    // Always enforce sharing rules
    // Always validate session
    // Always check field-level security

    public List<Account> getAccounts() {
        // WITH SECURITY_ENFORCED prevents data leaks
        return [SELECT Id, Name FROM Account WITH SECURITY_ENFORCED];
    }
}
```

**2025 Requirements**:
- **MFA Mandatory**: All users must enable MFA
- **Session Security**: Shorter session timeouts, IP restrictions
- **API Security**: JWT with short expiration (15 minutes)

### 4. Infrastructure as Code (IaC)

**Everything defined as code, version-controlled**:

```yaml
# Hyperforce deployment manifest (conceptual)
apiVersion: hyperforce.salesforce.com/v1
kind: SalesforceOrg
metadata:
  name: production-org
  region: aws-us-east-1
spec:
  edition: enterprise
  features:
    - agentforce
    - dataCloud
    - einstein
  compute:
    pods: 50
    autoScaling:
      min: 10
      max: 100
      targetCPU: 70%
  storage:
    size: 500GB
    replication: 3
  backup:
    frequency: hourly
    retention: 30days
  networking:
    privateLink: enabled
    ipWhitelist:
      - 203.0.113.0/24
```

**Benefits for Developers**:
- **Reproducible**: Recreate exact environment anytime
- **Version Controlled**: Track all infrastructure changes in Git
- **Testable**: Validate infrastructure before deployment
- **Automated**: No manual configuration, eliminates human error

### 5. Clean Slate (No Legacy Constraints)

**Hyperforce rebuilt from scratch**:
- Modern Kubernetes orchestration
- Cloud-native services (managed databases, object storage)
- API-first design (everything accessible via API)
- Microservices architecture (independent scaling)
- No legacy code or technical debt

## Public Cloud Integration

### AWS Hyperforce Architecture

```text
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚                  AWS Region (us-east-1)                β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚  VPC (Virtual Private Cloud)                           β”‚
β”‚  β”œβ”€ Public Subnets (3 AZs)                             β”‚
β”‚  β”‚  └─ Application Load Balancer (ALB)                 β”‚
β”‚  β”œβ”€ Private Subnets (3 AZs)                            β”‚
β”‚  β”‚  β”œβ”€ EKS Cluster (Kubernetes)                        β”‚
β”‚  β”‚  β”‚  β”œβ”€ Salesforce App Pods (autoscaling)            β”‚
β”‚  β”‚  β”‚  β”œβ”€ Metadata Service Pods                        β”‚
β”‚  β”‚  β”‚  β”œβ”€ API Gateway Pods                             β”‚
β”‚  β”‚  β”‚  └─ Background Job Pods (Batch, Scheduled)       β”‚
β”‚  β”‚  β”œβ”€ RDS Aurora PostgreSQL (multi-AZ)                β”‚
β”‚  β”‚  β”œβ”€ ElastiCache Redis (session storage)             β”‚
β”‚  β”‚  └─ S3 Buckets (attachments, documents)             β”‚
β”‚  └─ Database Subnets (3 AZs)                           β”‚
β”‚     └─ Aurora Database Cluster                         β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚  Additional Services                                   β”‚
β”‚  β”œβ”€ CloudWatch (monitoring, logs)                      β”‚
β”‚  β”œβ”€ CloudTrail (audit logs)                            β”‚
β”‚  β”œβ”€ AWS Shield (DDoS protection)                       β”‚
β”‚  β”œβ”€ AWS WAF (web application firewall)                 β”‚
β”‚  β”œβ”€ KMS (encryption key management)                    β”‚
β”‚  └─ PrivateLink (secure connectivity)                  β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
```

**AWS Services Used**:
- **Compute**: EKS (Elastic Kubernetes Service)
- **Database**: Aurora PostgreSQL (multi-master)
- **Storage**: S3 (object storage), EBS (block storage)
- **Networking**: VPC, ALB, Route 53, CloudFront CDN
- **Security**: IAM, KMS, Shield, WAF, Certificate Manager

### Azure Hyperforce Architecture

```text
Azure Region (East US)
β”œβ”€ Virtual Network (VNet)
β”‚  β”œβ”€ AKS (Azure Kubernetes Service)
β”‚  β”‚  └─ Salesforce workloads
β”‚  β”œβ”€ Azure Database for PostgreSQL (Hyperscale)
β”‚  β”œβ”€ Azure Cache for Redis
β”‚  └─ Azure Blob Storage
β”œβ”€ Azure Front Door (CDN + Load Balancer)
β”œβ”€ Azure Monitor (logging, metrics)
β”œβ”€ Azure Active Directory (identity)
└─ Azure Key Vault (secrets, encryption)
```

### Google Cloud Hyperforce Architecture

```text
GCP Region (us-central1)
β”œβ”€ VPC Network
β”‚  β”œβ”€ GKE (Google Kubernetes Engine)
β”‚  β”œβ”€ Cloud SQL (PostgreSQL)
β”‚  β”œβ”€ Memorystore (Redis)
β”‚  └─ Cloud Storage (GCS)
β”œβ”€ Cloud Load Balancing
β”œβ”€ Cloud Armor (DDoS protection)
β”œβ”€ Cloud Monitoring (Stackdriver)
└─ Cloud KMS (encryption)
```

## Data Residency and Compliance

### Geographic Region

Related in Cloud & DevOps