An open source universal ETL tool that support almost popular databases
4.8K
Addax is an open-source, universal ETL (Extract, Transform, Load) tool, enabling seamless data synchronization across multiple data sources such as Cassandra, ClickHouse, DBF, Hive, InfluxDB, Kudu, MySQL, Oracle, Presto (Trino), PostgreSQL, and SQL Server.
The recommended way to use Addax is to pull its prebuilt Docker image from the Docker Hub Registry.
docker pull wgzhao/addax:latest
Run a predefined job available in the container:
docker run -it --rm --name addax wgzhao/addax:latest \
/opt/addax/bin/addax.sh /opt/addax/job/job.json
Mount your job configuration file into the container and execute it:
docker run -it --rm --name addax \
-v <your_job_path>:/opt/addax/job \
wgzhao/addax:latest \
/opt/addax/bin/addax.sh /opt/addax/job/<your_job_filename>
Addax offers two Docker image variants:
docker pull wgzhao/addax:latest-lite
Replace <your_job_path> and <your_job_filename> with the path and file name of your job configuration file.
The lite image is intended for situations where a smaller image is preferred, while the full image provides comprehensive plugin support.
Content type
Image
Digest
sha256:f5a2935f9…
Size
793.2 MB
Last updated
6 days ago
docker pull wgzhao/addax