Automates local Apache Ignite 3 cluster lifecycle management.
Install
mkdir -p .claude/skills/ignite-cluster-setup && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/2926" && unzip -o skill.zip -d .claude/skills/ignite-cluster-setup && rm skill.zipInstalls to .claude/skills/ignite-cluster-setup
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Set up and manage a local Apache Ignite 3 cluster using just commands. Use when asked to setup cluster, start nodes, rebuild, initialize cluster, or check status.Key capabilities
- →Build and initialize local Apache Ignite 3 clusters
- →Start and stop individual or all cluster nodes
- →Check cluster status
- →Rebuild cluster distributions
How it works
The skill uses a set of predefined `just` commands to manage node directories and cluster lifecycle for local development.
Inputs & outputs
When to use ignite-cluster-setup
- →Starting local database nodes
- →Rebuilding database clusters
- →Checking cluster status
About this skill
Ignite Cluster Setup
This skill manages a local Apache Ignite 3 cluster for development using just commands.
Available Commands
| Command | Description |
|---|---|
just setup | Full rebuild: build distributions, create node dirs in w/ |
just setup_cli | Rebuild CLI only (fast) |
just start 1 | Start node 1 (use 1, 2, or 3) |
just start_all | Start all 3 nodes |
just stop 1 | Stop node 1 |
just stop_all | Stop all nodes |
just init | Initialize cluster (after nodes started) |
just status | Check status of all nodes |
just cli | Launch CLI REPL |
just setup_cluster | Full setup: build + start all + init |
Common Workflows
Fresh Setup (First Time or After Code Changes)
just setup # Build everything, create node directories
just start 1 # Start node 1 (or start_all for all nodes)
just init # Initialize the cluster
Rebuild CLI Only (After CLI Code Changes)
just setup_cli # Fast rebuild of CLI only
Quick Restart (No Code Changes)
just start 1 # Start node
just status # Verify running
Full Automated Setup
just setup_cluster # Does: setup + start_all + init
Notes
- Nodes run in
w/ignite3-db-{1,2,3}/ - CLI is in
w/ignite3-cli/ - Use
just statusto check which nodes are running - If nodes fail with RocksDB errors, run
just setupto rebuild fresh
When not to use it
- →When managing production Ignite clusters
Prerequisites
Limitations
- →Limited to local development environments
- →RocksDB errors may require a full rebuild
How it compares
It provides a unified command-line interface for cluster lifecycle management instead of manual script execution.
Compared to similar skills
ignite-cluster-setup side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| ignite-cluster-setup (this skill) | 1 | 7mo | Review | Intermediate |
| local-cluster-manager | 2 | 26d | Review | Intermediate |
| odoo-backup-strategy | 0 | 2mo | Review | Intermediate |
| interactive-shell | 0 | 1mo | No flags | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by apache
View all by apache →You might also like
local-cluster-manager
multigres
Manage local multigres cluster components (multipooler, pgctld, multiorch, multigateway) - start/stop services, view logs, connect with psql, test S3 backups locally
odoo-backup-strategy
jeromeskiii
Complete Odoo backup and restore strategy: database dumps, filestore
interactive-shell
Jonghakseo
dev server, TUI, REPL, DB shell, 로그처럼 사용자 제어나 장시간 실행이 필요한 터미널 작업에 사용한다. AI 작업 위임에는 subagent를 사용한다.
workflow-orchestration-patterns
wshobson
Design durable workflows with Temporal for distributed systems. Covers workflow vs activity separation, saga patterns, state management, and determinism constraints. Use when building long-running processes, distributed transactions, or microservice orchestration.
jpa-patterns
affaan-m
JPA/Hibernate patterns for entity design, relationships, query optimization, transactions, auditing, indexing, pagination, and pooling in Spring Boot.
pipeline-plugin-development
TencentBlueKing
流水线插件开发完整指南,涵盖插件创建、task.json 配置规范、多语言开发示例(Python/Java/NodeJS/Golang)、输入输出规范、错误码规范、发布流程、调试方法。当用户需要开发蓝盾流水线插件、配置 task.json、处理插件输入输出或排查插件错误时使用。