get started with alluxio
Try Alluxio in the cloud or download/install where you want it.
OPTION 1: DOWNLOAD AND DEPLOY ANYWHERE
Community Edition
Based on Alluxio Open Source, freely available for download and recommended for test, dev and simple production environments.
Trial Edition
Test drive an Alluxio Enterprise Edition cluster (up to 50 nodes), free for 30 days. This download includes capabilities like transparent Hive metastore integration, security, and policy-based data management.
OPTION 2: DEPLOY ON PUBLIC CLOUD
Deploy On GCP
Start with our cloud bursting tutorial on Dataproc.
Enterprise Edition
For use in production environments. Delivers stable, high performance with enterprise features for complex or critical deployments.
choosing the right edition
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"
Python Instructions
$ pip install alluxio
Python Instructions
$ pip install alluxio
Python Instructions
$ pip install alluxio
Python Instructions
$ pip install alluxio
Python Instructions
$ pip install alluxio