salesforce-load-scale

Featured

Implement Salesforce load testing, API limit capacity planning, and Bulk API scaling. Use when running performance tests against Salesforce, planning API consumption, or scaling high-volume Salesforce integrations. Trigger with phrases like "salesforce load test", "salesforce scale", "salesforce performance test", "salesforce capacity planning", "salesforce high volume".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Salesforce Load & Scale ## Overview Load testing, scaling strategies, and capacity planning for Salesforce integrations. Focus on API limit budgeting, Bulk API throughput, and handling Salesforce's unique constraint: org-wide shared limits. ## Prerequisites - k6 or Artillery load testing tool - Sandbox or Developer org for testing (never load test production) - Understanding of your org's API limit allocation - Monitoring configured (see `salesforce-observability`) ## Instructions ### Step 1: Calculate API Limit Budget ```typescript const conn = await getConnection(); const limits = await conn.request('/services/data/v59.0/limits/'); const budget = { dailyMax: limits.DailyApiRequests.Max, currentlyUsed: limits.DailyApiRequests.Max - limits.DailyApiRequests.Remaining, remaining: limits.DailyApiRequests.Remaining, // Budget allocation integrationA: Math.floor(limits.DailyApiRequests.Max * 0.40), // 40% for primary sync integrationB: Math.floor(limits.DailyApiRequests.Max * 0.20), // 20% for secondary salesUsers: Math.floor(limits.DailyApiRequests.Max * 0.30), // 30% for Salesforce UI users headroom: Math.floor(limits.DailyApiRequests.Max * 0.10), // 10% buffer }; console.table(budget); // Example (Enterprise, 50 users): 150,000 daily calls // Integration A: 60,000 | Integration B: 30,000 | Users: 45,000 | Buffer: 15,000 ``` ### Step 2: Load Test with k6 (against Sandbox) ```javascript // salesforce-load-test.js import http from 'k6/http'; import...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

hubspot-load-scale

Load test HubSpot integrations and plan capacity around API rate limits. Use when running performance tests, planning for traffic growth, or sizing your HubSpot integration for production load. Trigger with phrases like "hubspot load test", "hubspot scale", "hubspot capacity", "hubspot benchmark", "hubspot traffic planning".

2,266 Updated today
jeremylongshore
AI & Automation Featured

shopify-load-scale

Load test Shopify integrations respecting API rate limits, plan capacity with k6, and scale for Shopify Plus burst events (flash sales, BFCM). Trigger with phrases like "shopify load test", "shopify scale", "shopify BFCM", "shopify flash sale", "shopify capacity", "shopify k6 test".

2,266 Updated today
jeremylongshore
AI & Automation Featured

salesforce-rate-limits

Implement Salesforce API limit management, backoff, and quota monitoring. Use when handling REQUEST_LIMIT_EXCEEDED errors, implementing retry logic, or optimizing API request throughput for Salesforce. Trigger with phrases like "salesforce rate limit", "salesforce API limit", "salesforce 403", "salesforce retry", "salesforce governor limits", "API quota".

2,266 Updated today
jeremylongshore
AI & Automation Featured

canva-load-scale

Implement Canva Connect API load testing, auto-scaling, and capacity planning. Use when running performance tests, planning capacity around Canva rate limits, or scaling Canva integrations for production workloads. Trigger with phrases like "canva load test", "canva scale", "canva performance test", "canva capacity", "canva k6", "canva benchmark".

2,266 Updated today
jeremylongshore
AI & Automation Featured

customerio-load-scale

Implement Customer.io load testing and horizontal scaling. Use when preparing for high traffic, running load tests, or designing queue-based architectures for scale. Trigger: "customer.io load test", "customer.io scale", "customer.io high volume", "customer.io k6", "customer.io performance test".

2,266 Updated today
jeremylongshore