Get Started with Alluxio
CHOOSE THE EDITION
Community Edition vs. Enterprise Edition
Community Edition
Based on Alluxio Open Source, freely available for download and recommended for test, dev and simple production environments.
Enterprise Edition
Choose Enterprise Edition for use in production environments.
Delivers enterprise features like transparent Hive metastore integration, security, and policy-based data management.
DEPLOY WITH COMPUTE ENGINES
Spark + Alluxio
Trino + Alluxio
Presto + Alluxio
installation instructions
Docker Instructions
# Launch the Alluxio master
$ docker run -d \
-p 19999:19999 \
--net=alluxio_nw \
--name=alluxio-master \
-v ufs:/opt/alluxio/underFSStorage \
alluxio/alluxio master
# Launch the Alluxio worker
$ docker run -d \
--net=alluxio_nw \
--name=alluxio-worker \
--shm-size=1G \
-v ufs:/opt/alluxio/underFSStorage \
-e ALLUXIO_JAVA_OPTS="-Dalluxio.worker.memory.size=1G -Dalluxio.master.hostname=alluxio-master" \
alluxio/alluxio worker
Maven Instructions
<dependency>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-core-client-fs</artifactId>
<version>2.0.0</version>
</dependency>
SBT Instructions
libraryDependencies += "org.alluxio" % "alluxio-core-client-fs" % "2.0.0"
Storage Integrations for Alluxio 2.0
LEARN MORE

Quick start Alluxio in 5 minutes

Getting Started with Spark + Alluxio in 5 Minutes
