iceberg-compaction
Compaction runtime for Apache Iceberg.
File Explorer
Download Latest Version (.zip)- action.yml
- ci.yml
- ci_typos.yml
- CODEOWNERS
- copilot-instructions.md
- metrics.rs
- mod.rs
- file_group_scope.rs
- auto.rs
- mod.rs
- validator.rs
- mod.rs
- mod.rs
- datafusion_processor.rs
- file_scan_task_table_provider.rs
- iceberg_file_task_scan.rs
- mod.rs
- mock.rs
- mod.rs
- mod.rs
- packer.rs
- strategy.rs
- lib.rs
- Cargo.toml
- compaction-strategy-contract.md
- main.rs
- Cargo.toml
- main.rs
- Cargo.toml
- bench.rs
- README.md
- generator.rs
- mod.rs
- docker_compose.rs
- integration_tests.rs
- lib.rs
- docker-compose.yaml
- mock_iceberg.yaml
- Cargo.toml
- check.sh
- setup.sh
- .gitignore
- .pre-commit-config.yaml
- .typos.toml
- AGENTS.md
- Cargo.lock
- Cargo.toml
- CONTRIBUTING.md
- LICENSE
- Makefile
- README.md
- rust-toolchain.toml
- rustfmt.toml
- STYLE.md
- taplo.toml
- tomlfmt.toml
# Installation Guide
1. Get the code
git clone https://github.com/nimtable/iceberg-compaction
Downloads the entire project code from GitHub to your computer.
cd iceberg-compaction
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
β οΈ This is a large repository, so this method may point to an internal sub-package rather than the actual core product. Check the full README as well.
docker compose -f integration-tests/testdata/docker-compose.yaml up -d --build
Runs the command against the services defined in the compose file.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. Rust
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Rust (rustup) Installing via rustup also installs cargo.
cargo run
Builds and then immediately runs the program.
If cargo build finishes without errors, it worked. The executable is created under target/.
Pulled directly from this repo's README.
4. Make
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
If it finishes without errors, it worked. Try running the generated executable directly.
// repository documentation
Was this content helpful?
(0 ratings)
