Best for
- Use when someone asks 'how to scale up a node', 'need more RAM', 'upgrade node size', 'vertical scaling', 'resize cluster', 'scale up vs scale out', or when memory/CPU is insufficient on current nodes.
github/awesome-copilot/skills/qdrant-scaling/scaling-data-volume/vertical-scaling/SKILL.md
Guides Qdrant vertical scaling decisions. Use when someone asks 'how to scale up a node', 'need more RAM', 'upgrade node size', 'vertical scaling', 'resize cluster', 'scale up vs scale out', or when memory/CPU is insufficient on current nodes. Also use when someone wants to avoid the complexity of horizontal scaling.
Decision brief
Vertical scaling means increasing CPU, RAM, or disk on existing nodes rather than adding more nodes. This is the recommended first step before considering horizontal scaling. Vertical scaling is simpler, avoids distributed system complexity, and is reversible.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/github/awesome-copilot --skill "skills/qdrant-scaling/scaling-data-volume/vertical-scaling"Inspect the Agent Skill "qdrant-vertical-scaling" from https://github.com/github/awesome-copilot/blob/9933dcad5be5caeb288cebcd370eeeb2fc2f1685/skills/qdrant-scaling/scaling-data-volume/vertical-scaling/SKILL.md at commit 9933dcad5be5caeb288cebcd370eeeb2fc2f1685. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
Vertical scaling is managed through the Qdrant Cloud Console.
Use when: current node resources (RAM, CPU, disk) are insufficient, but the workload doesn't yet require distribution.
RAM is the most critical resource for Qdrant performance. Use these guidelines to right-size.
Recognize these signals that it's time to go horizontal:
Do not scale down RAM without load testing first (cache eviction = severe latency degradation that can last days)
Permission review
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 77/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 37,126 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Vertical scaling means increasing CPU, RAM, or disk on existing nodes rather than adding more nodes. This is the recommended first step before considering horizontal scaling. Vertical scaling is simpler, avoids distributed system complexity, and is reversible.
Use when: current node resources (RAM, CPU, disk) are insufficient, but the workload doesn't yet require distribution.
Vertical scaling is managed through the Qdrant Cloud Console.
replication_factor: 2 or higher before resizing to maintain availability during the rolling restartImportant: Scaling up is straightforward. Scaling down requires care -- if the working set no longer fits in RAM after downsizing, performance will degrade severely due to cache eviction. Always load test before scaling down.
RAM is the most critical resource for Qdrant performance. Use these guidelines to right-size.
num_vectors * dimensions * 4 bytes * 1.5 for full-precision vectors in RAMRecognize these signals that it's time to go horizontal:
When you hit these limits, see Horizontal Scaling for guidance on sharding and node planning.