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.

Release Notes and Previous Versions

Enterprise Edition

Choose Enterprise Edition for use in production environments. 

Delivers enterprise features like transparent Hive metastore integration, security, and policy-based data management. 

Release Notes and Previous Versions

DEPLOY WITH COMPUTE ENGINES

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

Tutorial –> Full docs

Brew Instructions

$ brew install alluxio

Full docs

Kubernetes Instructions

$ helm install alluxio -f config.yaml alluxio-charts/alluxio

Full docs

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"

Full docs

Python Instructions

$ pip install alluxio

Full docs

Go Instructions

$ go get -d github.com/Alluxio/alluxio-go

Full docs

Storage Integrations for Alluxio 2.0

LEARN MORE

Quick start Alluxio in 5 minutes
Quick start Alluxio in 5 minutes
Getting Started with Spark + Alluxio in 5 Minutes
Getting Started with Spark + Alluxio in 5 Minutes
Deploy Alluxio on Kubernetes
Deploy Alluxio on Kubernetes

CAN’T FIND WHAT YOU NEED?