klaviyo-performance-tuning
Optimize Klaviyo API performance with caching, batching, and pagination tuning. Use when experiencing slow API responses, implementing caching strategies, or optimizing request throughput for Klaviyo integrations. Trigger with phrases like "klaviyo performance", "optimize klaviyo", "klaviyo latency", "klaviyo caching", "klaviyo slow", "klaviyo batch".
What this skill does
# Klaviyo Performance Tuning
## Overview
Optimize Klaviyo API performance with response caching, request batching, cursor-based pagination, sparse fieldsets, and connection pooling.
## Prerequisites
- `klaviyo-api` SDK installed
- Understanding of Klaviyo's rate limits (75 req/s burst, 700 req/min)
- Redis or in-memory cache (optional)
## Klaviyo API Performance Characteristics
| Operation | Typical Latency | Max Page Size |
|-----------|----------------|---------------|
| Get Profile by ID | 50-150ms | N/A |
| Get Profiles (list) | 100-300ms | 20 (default), 100 (some endpoints) |
| Create Profile | 100-200ms | N/A |
| Create Event | 50-100ms | N/A |
| Get Segment Profiles | 200-500ms | 20 |
| Campaign Operations | 200-500ms | 20 |
## Instructions
### Step 1: Sparse Fieldsets (Reduce Payload Size)
Klaviyo supports JSON:API sparse fieldsets -- request only the fields you need.
```typescript
// BAD: Fetches all profile fields (20+ attributes)
const profiles = await profilesApi.getProfiles();
// GOOD: Only fetch email and firstName (much smaller payload)
const profiles = await profilesApi.getProfiles({
fieldsProfile: ['email', 'first_name', 'created'],
});
// Note: fieldsProfile uses snake_case field names (API-level names)
// Fetch profiles with included list relationships
const profilesWithLists = await profilesApi.getProfiles({
fieldsProfile: ['email', 'first_name'],
include: ['lists'],
fieldsLists: ['name'],
});
```
### Step 2: Response Caching
```typescript
// src/klaviyo/cache.ts
import { LRUCache } from 'lru-cache';
const cache = new LRUCache<string, any>({
max: 5000, // Max cached items
ttl: 60 * 1000, // 1 minute default TTL
updateAgeOnGet: true, // Reset TTL on access
});
export async function cachedKlaviyoCall<T>(
key: string,
fetcher: () => Promise<T>,
ttlMs?: number
): Promise<T> {
const cached = cache.get(key);
if (cached !== undefined) return cached as T;
const result = await fetcher();
cache.set(key, result, { ttl: ttlMs });
return result;
}
// Cache profile lookups by email
export async function getCachedProfile(email: string) {
return cachedKlaviyoCall(
`profile:${email}`,
() => profilesApi.getProfiles({ filter: `equals(email,"${email}")` }),
5 * 60 * 1000 // 5 minute TTL for profiles
);
}
// Cache segment data (changes less frequently)
export async function getCachedSegments() {
return cachedKlaviyoCall(
'segments:all',
() => segmentsApi.getSegments(),
15 * 60 * 1000 // 15 minute TTL for segments
);
}
```
### Step 3: Efficient Pagination
```typescript
// src/klaviyo/pagination.ts
/**
* Auto-paginate with configurable page size and concurrency.
* Klaviyo cursor pagination: response.body.links.next contains the cursor URL.
*/
export async function fetchAllPages<T>(
fetcher: (pageCursor?: string) => Promise<{
body: { data: T[]; links?: { next?: string } };
}>,
options = { maxPages: 100 }
): Promise<T[]> {
const results: T[] = [];
let cursor: string | undefined;
let pageCount = 0;
do {
const response = await fetcher(cursor);
results.push(...response.body.data);
pageCount++;
const nextLink = response.body.links?.next;
if (nextLink && pageCount < options.maxPages) {
const url = new URL(nextLink);
cursor = url.searchParams.get('page[cursor]') || undefined;
} else {
cursor = undefined;
}
} while (cursor);
return results;
}
// Usage: fetch all profiles in a list
const allProfiles = await fetchAllPages(
(cursor) => listsApi.getListProfiles({ id: listId, pageCursor: cursor })
);
console.log(`Total profiles: ${allProfiles.length}`);
```
### Step 4: Request Batching with DataLoader
```typescript
import DataLoader from 'dataloader';
import { ProfilesApi } from 'klaviyo-api';
// Batch profile lookups: multiple getProfile(id) calls within
// a single tick are combined into one getProfiles() call
const profileLoader = new DataLoader<string, any>(
async (profileIds) => {
// Klaviyo doesn't have a batch-get-by-IDs endpoint,
// so we fetch individually but with concurrency control
const results = await Promise.allSettled(
profileIds.map(id => profilesApi.getProfile({ id }))
);
return results.map(r =>
r.status === 'fulfilled' ? r.value.body.data : null
);
},
{
maxBatchSize: 10, // Stay well under rate limits
batchScheduleFn: cb => setTimeout(cb, 50), // 50ms batch window
cache: true, // In-memory cache within the DataLoader
}
);
// These three calls are batched into concurrent requests
const [p1, p2, p3] = await Promise.all([
profileLoader.load('PROFILE_ID_1'),
profileLoader.load('PROFILE_ID_2'),
profileLoader.load('PROFILE_ID_3'),
]);
```
### Step 5: Parallel API Calls with Concurrency Control
```typescript
import PQueue from 'p-queue';
// Process large operations with controlled concurrency
const queue = new PQueue({
concurrency: 10, // Max 10 parallel requests
interval: 1000, // Per second
intervalCap: 50, // 50 requests/second (safe margin under 75 burst)
});
// Example: update 10,000 profiles efficiently
async function bulkUpdateProfiles(updates: Array<{ email: string; data: any }>) {
let completed = 0;
const promises = updates.map(update =>
queue.add(async () => {
await profilesApi.createOrUpdateProfile({
data: {
type: 'profile' as any,
attributes: { email: update.email, ...update.data },
},
});
completed++;
if (completed % 500 === 0) {
console.log(`Progress: ${completed}/${updates.length}`);
}
})
);
await Promise.allSettled(promises);
console.log(`Done: ${completed}/${updates.length}`);
}
```
### Step 6: Performance Monitoring
```typescript
// src/klaviyo/perf-monitor.ts
interface PerfMetrics {
operation: string;
durationMs: number;
success: boolean;
cached: boolean;
}
const perfLog: PerfMetrics[] = [];
export async function measuredCall<T>(
operation: string,
fn: () => Promise<T>,
cached = false
): Promise<T> {
const start = performance.now();
try {
const result = await fn();
perfLog.push({ operation, durationMs: performance.now() - start, success: true, cached });
return result;
} catch (error) {
perfLog.push({ operation, durationMs: performance.now() - start, success: false, cached });
throw error;
}
}
export function getPerfSummary(): Record<string, { avg: number; p95: number; count: number }> {
const byOp: Record<string, number[]> = {};
for (const m of perfLog) {
(byOp[m.operation] ??= []).push(m.durationMs);
}
const summary: Record<string, any> = {};
for (const [op, durations] of Object.entries(byOp)) {
durations.sort((a, b) => a - b);
summary[op] = {
avg: Math.round(durations.reduce((a, b) => a + b, 0) / durations.length),
p95: Math.round(durations[Math.floor(durations.length * 0.95)]),
count: durations.length,
};
}
return summary;
}
```
## Error Handling
| Issue | Cause | Solution |
|-------|-------|----------|
| Cache stampede | Many requests on cache miss | Use stale-while-revalidate pattern |
| Pagination timeout | Very large datasets | Set `maxPages` limit, process in chunks |
| Rate limit on bulk ops | Too much concurrency | Reduce `PQueue` concurrency/intervalCap |
| Slow filter queries | Complex filter expressions | Simplify filters, use segment IDs instead |
## Resources
- [Klaviyo API Filtering](https://developers.klaviyo.com/en/reference/api_overview#filtering)
- [JSON:API Sparse Fieldsets](https://jsonapi.org/format/#fetching-sparse-fieldsets)
- [DataLoader](https://github.com/graphql/dataloader)
- [p-queue](https://github.com/sindresorhus/p-queue)
## Next Steps
For cost optimization, see `klaviyo-cost-tuning`.
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.