Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
9aaad11
Cloud Storage Support(#3079) - Implemented Pluggable Cloud Storage wi…
vaijosh Jun 29, 2026
8f52e62
Merge branch 'apache:master' into Hstore+CloudStorage
vaijosh Jul 6, 2026
2bb8e9f
feat(store): implement pluggable cloud storage for HStore
vaijosh Jul 6, 2026
4275426
feat(store): implement pluggable cloud storage for HStore
vaijosh Jul 8, 2026
64b4b52
feat(store): implement pluggable cloud storage for HStore
vaijosh Jul 8, 2026
d5f64df
feat(store): implement pluggable cloud storage for HStore
vaijosh Jul 14, 2026
7564613
feat(store): implement pluggable cloud storage for HStore
vaijosh Jul 15, 2026
32e407e
feat(store): implement pluggable cloud storage for HStore
vaijosh Jul 15, 2026
8a04f9c
feat(store): implement pluggable cloud storage for HStore
vaijosh Jul 15, 2026
e549b42
feat(store): implement pluggable cloud storage for HStore
vaijosh Jul 15, 2026
7237dc3
feat(store): implement pluggable cloud storage for HStore
vaijosh Jul 17, 2026
e1dcf44
Merge branch 'apache:master' into Hstore+CloudStorage
vaijosh Jul 23, 2026
8b18e5b
feat(store): implement pluggable cloud storage for HStore
vaijosh Jul 23, 2026
a560ad4
feat(store): implement pluggable cloud storage for HStore
vaijosh Jul 23, 2026
fb7f048
Potential fix for pull request finding
vaijosh Jul 28, 2026
73fe12b
Merge branch 'master' into Hstore+CloudStorage
vaijosh Jul 28, 2026
caa1ef5
Merge branch 'apache:master' into Hstore+CloudStorage
vaijosh Jul 28, 2026
b7fcb28
feat(store): implement pluggable cloud storage for HStore
vaijosh Jul 28, 2026
262e25b
feat(store): implement pluggable cloud storage for HStore
vaijosh Jul 30, 2026
c95e99e
feat(store): implement pluggable cloud storage for HStore
vaijosh Jul 30, 2026
bdfc897
chore: trigger ci
vaijosh Jul 30, 2026
b5c0706
chore: trigger ci
vaijosh Jul 30, 2026
49dda74
feat(store): implement pluggable cloud storage for HStore
vaijosh Jul 31, 2026
de532b5
feat(store): implement pluggable cloud storage for HStore
vaijosh Jul 31, 2026
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
8 changes: 8 additions & 0 deletions docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@ cd docker
docker compose -f docker-compose.dev.yml up -d
```

To run Store with the JDK 17 image profile (useful for ARM64 JNI-heavy workloads):

```bash
cd docker
HG_STORE_DOCKERFILE=hugegraph-store/Dockerfile-jdk17 \
docker compose -f docker-compose.dev.yml up -d --build
```

- Images: built from source via `build: context: ..` with Dockerfiles
- No `pull_policy` — builds locally, doesn't pull
- Entrypoint scripts are baked into the built image (no volume mounts)
Expand Down
5 changes: 5 additions & 0 deletions docker/cloud-storage/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.artifacts/
logs/
data/
.generated/

Loading
Loading