Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ kvctl
server
kvctl-new
kasoku-server-new
bin/

# Benchmarks (compiled)
bench
Expand Down Expand Up @@ -91,6 +92,9 @@ temp/
Thumbs.db
desktop.ini

# IDE/Qwen settings
.qwen/

# Debug files
*.pdb
*.idb
Expand Down
14 changes: 8 additions & 6 deletions DEPLOYMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,35 +29,37 @@ curl http://localhost:9000/health

## Docker Deployment

All Docker files are in `deploy/` directory.

### Single Node

```bash
# Build and run
docker build -t kasoku .
docker build -t kasoku ./deploy
docker run -p 9000:9000 kasoku

# Or use docker-compose
docker-compose -f docker-compose.single.yml up -d
docker-compose -f deploy/docker-compose.single.yml up -d
```

### 3-Node Cluster

```bash
# Build and start cluster
docker-compose -f docker-compose.yml up -d
docker-compose -f deploy/docker-compose.yml up -d

# Check status
docker-compose ps
docker-compose -f deploy/docker-compose.yml ps

# View logs
docker-compose logs -f kasoku-node1
docker-compose -f deploy/docker-compose.yml logs -f kasoku-node1
```

### With Monitoring

```bash
# Start with Prometheus + Grafana
docker-compose -f docker-compose.yml --profile monitoring up -d
docker-compose -f deploy/docker-compose.yml --profile monitoring up -d

# Access services:
# - Kasoku: http://localhost:9001, :9002, :9003
Expand Down
Binary file removed bench
Binary file not shown.
96 changes: 0 additions & 96 deletions bench_results_cluster_batch.txt

This file was deleted.

96 changes: 0 additions & 96 deletions bench_results_cluster_single_key.txt

This file was deleted.

96 changes: 0 additions & 96 deletions bench_results_single_node_batch.txt

This file was deleted.

Loading
Loading