Skip to content
Open
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
6 changes: 6 additions & 0 deletions .changeset/fast-dolphins-fly.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@graphql-hive/cli': minor
'hive': minor
---

Add v2 storage format for app deployments with delta uploads support. The v2 format uses SHA256 content-addressed hashes enabling cross-version document deduplication - only new documents are uploaded, existing ones are skipped. This can reduce upload times by up to 24x for deployments with mostly unchanged documents.
4 changes: 3 additions & 1 deletion docker/docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ services:

s3:
image: quay.io/minio/minio:RELEASE.2025-09-07T16-13-09Z
mem_limit: 200m
mem_limit: 400m
cpus: 1
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this thing loves to hog all cpu after being overloaded, most likely gc thrash

command: server /data --console-address ":9001"
ports:
- '9000:9000'
Expand Down Expand Up @@ -75,6 +76,7 @@ services:
clickhouse:
image: clickhouse/clickhouse-server:24.8-alpine
mem_limit: 4096m
cpus: 1
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also loves to do random stuff in the background

environment:
CLICKHOUSE_USER: test
CLICKHOUSE_PASSWORD: test
Expand Down
Loading
Loading