Quick Start Guide

    This quick start guide goes over how to run Alluxio on a local machine. The guide will cover the following tasks:

    • Download and configure Alluxio
    • Validate the Alluxio environment
    • Start Alluxio locally
    • Perform basic tasks via Alluxio Shell
    • [Bonus] Mount a public Amazon S3 bucket in Alluxio
    • Stop Alluxio

    [Bonus] This guide contains optional tasks that uses credentials from an AWS account with an access key id and secret access key. The optional sections will be labeled with [Bonus].

    Note This guide is designed to start an Alluxio system with minimal setup on a single machine.

    If you are trying to speedup SQL analytics, you can try the Presto Alluxio Getting Started tutorial:

    • MacOS or Linux
    • Java 8
    • Enable remote login: see
    • [Bonus] AWS account and keys

    Downloading Alluxio

    Download Alluxio from . Select the desired release followed by the distribution built for default Hadoop. Unpack the downloaded file with the following commands.

    This creates a directory with all of the Alluxio source files and Java binaries. Through this tutorial, the path of this directory will be referred to as ${ALLUXIO_HOME}.

    Configuring Alluxio

    In the ${ALLUXIO_HOME}/conf directory, create the conf/alluxio-site.properties configuration file by copying the template file.

    1. $ cp conf/alluxio-site.properties.template conf/alluxio-site.properties

    Set alluxio.master.hostname in conf/alluxio-site.properties to localhost.

    1. $ echo "alluxio.master.hostname=localhost" >> conf/alluxio-site.properties

    To configure Alluxio to interact with Amazon S3, add AWS access information to the Alluxio configuration in conf/alluxio-site.properties. The following commands update the configuration.

    1. $ echo "aws.accessKeyId=<AWS_ACCESS_KEY_ID>" >> conf/alluxio-site.properties
    2. $ echo "aws.secretKey=<AWS_SECRET_ACCESS_KEY>" >> conf/alluxio-site.properties

    Replace <AWS_ACCESS_KEY_ID> and <AWS_SECRET_ACCESS_KEY> with a valid AWS access key ID and AWS secret access key respectively.

    Alluxio provides commands to ensure the system environment is ready for running Alluxio services. Run the following command to validate the environment for running Alluxio locally:

    1. $ ./bin/alluxio validateEnv local

    This reports potential problems that might prevent Alluxio from starting locally.

    Check out for detailed usage information regarding the validateEnv command.

    Starting Alluxio

    Alluxio needs to be formatted before starting the process. The following command formats the Alluxio journal and worker storage directories.

    1. $ ./bin/alluxio format

    By default, Alluxio is configured to start a master and worker process when running locally. Start Alluxio on localhost with the following command:

    1. $ ./bin/alluxio-start.sh local SudoMount

    Using the Alluxio Shell

    The Alluxio shell provides command line operations for interacting with Alluxio. To see a list of filesystem operations, run

    1. $ ./bin/alluxio fs

    List files in Alluxio with the ls command. To list all files in the root directory, use the following command:

    At this moment, there are no files in Alluxio. Copy a file into Alluxio by using the copyFromLocal shell command.

    1. $ ./bin/alluxio fs copyFromLocal ${ALLUXIO_HOME}/LICENSE /LICENSE
    2. Copied file://${ALLUXIO_HOME}/LICENSE to /LICENSE

    List the files in Alluxio again to see the LICENSE file.

    1. $ ./bin/alluxio fs ls /
    2. -rw-r--r-- staff staff 27040 PERSISTED 02-17-2021 16:21:11:061 100% /LICENSE

    The output shows the file that exists in Alluxio. Each line contains the owner and group of the file, the size of the file, whether it has been persisted to its under file storage (UFS), the date it was created, and the percentage of the file that is cached in Alluxio.

    The cat command prints the contents of the file.

    1. $ ./bin/alluxio fs cat /LICENSE
    2. Apache License
    3. http://www.apache.org/licenses/
    4. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

    With the default configuration, Alluxio uses the local file system as its UFS and automatically persists data to it. The default path for the UFS is ${ALLUXIO_HOME}/underFSStorage. Examine the contents of the UFS with:

    1. $ ls ${ALLUXIO_HOME}/underFSStorage
    2. LICENSE

    The LICENSE file also appears in the Alluxio file system through the . Here, the Persistence State column shows the file as PERSISTED.

    View the amount of memory currently consumed by data in Alluxio under the Storage Usage Summary on the main page of the master’s web UI, or through the following command.

    1. $ ./bin/alluxio fs getUsedBytes
    2. Used Bytes: 27040

    This memory can be reclaimed by freeing it from Alluxio. Notice this does not remove it from the Alluxio filesystem nor the UFS. Rather it is just removed from the cache in Alluxio.

    1. $ ./bin/alluxio fs free /LICENSE
    2. /LICENSE was successfully freed from Alluxio space.
    3. $ ./bin/alluxio fs getUsedBytes
    4. Used Bytes: 0
    5. $ ./bin/alluxio fs ls /
    6. -rw-r--r-- staff staff 27040 PERSISTED 02-17-2021 16:21:11:061 0% /LICENSE
    7. $ ls ${ALLUXIO_HOME}/underFSStorage/
    8. LICENSE

    Accessing the data will fetch the file from the UFS and bring it back into the cache in Alluxio.

    1. $ ./bin/alluxio fs copyToLocal /LICENSE ~/LICENSE.bak
    2. Copied /LICENSE to file:///home/staff/LICENSE.bak
    3. $ ./bin/alluxio fs getUsedBytes
    4. Used Bytes: 27040
    5. $ ./bin/alluxio fs ls /
    6. -rw-r--r-- staff staff 27040 PERSISTED 02-17-2021 16:21:11:061 100% /LICENSE
    7. $ rm ~/LICENSE.bak

    Alluxio unifies access to storage systems with the unified namespace feature. Read the and the unified namespace documentation for more detailed explanations of the feature.

    This feature allows users to mount different storage systems into the Alluxio namespace and access the files across various storage systems through the Alluxio namespace seamlessly.

    Create a directory in Alluxio to store our mount points.

    Mount an existing S3 bucket to Alluxio. This guide uses the alluxio-quick-start S3 bucket.

    1. $ ./bin/alluxio fs mount --readonly alluxio://localhost:19998/mnt/s3 s3://alluxio-quick-start/data
    2. Mounted s3://alluxio-quick-start/data at alluxio://localhost:19998/mnt/s3

    List the files mounted from S3 through the Alluxio namespace by using the ls command.

    1. $ ./bin/alluxio fs ls /mnt/s3
    2. -r-x------ staff staff 955610 PERSISTED 01-09-2018 16:35:00:882 0% /mnt/s3/sample_tweets_1m.csv
    3. -r-x------ staff staff 89964 PERSISTED 01-09-2018 16:35:00:972 0% /mnt/s3/sample_tweets_100k.csv
    4. -r-x------ staff staff 157046046 PERSISTED 01-09-2018 16:35:01:002 0% /mnt/s3/sample_tweets_150m.csv

    With Alluxio’s unified namespace, users can interact with data from different storage systems seamlessly. The ls -R command recursively lists all the files that exist under a directory.

    1. $ ./bin/alluxio fs ls -R /
    2. -rw-r--r-- staff staff 26847 PERSISTED 01-09-2018 15:24:37:088 100% /LICENSE
    3. drwxr-xr-x staff staff 1 PERSISTED 01-09-2018 16:05:59:547 DIR /mnt
    4. -r-x------ staff staff 955610 PERSISTED 01-09-2018 16:35:00:882 0% /mnt/s3/sample_tweets_1m.csv
    5. -r-x------ staff staff 10077271 PERSISTED 01-09-2018 16:35:00:910 0% /mnt/s3/sample_tweets_10m.csv
    6. -r-x------ staff staff 89964 PERSISTED 01-09-2018 16:35:00:972 0% /mnt/s3/sample_tweets_100k.csv
    7. -r-x------ staff staff 157046046 PERSISTED 01-09-2018 16:35:01:002 0% /mnt/s3/sample_tweets_150m.csv

    This shows all the files across all of the mounted storage systems. The /LICENSE file is from the local file system whereas the files under /mnt/s3/ are in S3.

    [Bonus] Accelerating Data Access with Alluxio

    Since Alluxio leverages memory to store data, it can accelerate access to data. Check the status of a file previously mounted from S3 into Alluxio:

    1. $ ./bin/alluxio fs ls /mnt/s3/sample_tweets_150m.csv
    2. -r-x------ staff staff 157046046 PERSISTED 01-09-2018 16:35:01:002 0% /mnt/s3/sample_tweets_150m.csv

    The output shows that the file is Not In Memory. This file is a sample of tweets. Count the number of tweets with the word “kitten” and time the duration of the operation.

    1. $ time ./bin/alluxio fs cat /mnt/s3/sample_tweets_150m.csv | grep -c kitten
    2. 889
    3. real 0m22.857s
    4. user 0m7.557s
    5. sys 0m1.181s

    Depending on your network connection, the operation may take over 20 seconds. If reading this file takes too long, use a smaller dataset. The other files in the directory are smaller subsets of this file. Alluxio can accelerate access to this data by using memory to store the data.

    After reading the file by the cat command, check the status with the ls command:

    1. $ ./bin/alluxio fs ls /mnt/s3/sample_tweets_150m.csv
    2. -r-x------ staff staff 157046046 PERSISTED 01-09-2018 16:35:01:002 100% /mnt/s3/sample_tweets_150m.csv

    The output shows that the file is now 100% loaded to Alluxio, so reading the file should be significantly faster.

    Now count the number of tweets with the word “puppy”.

    1. $ time ./bin/alluxio fs cat /mnt/s3/sample_tweets_150m.csv | grep -c puppy
    2. 1553
    3. real 0m1.917s
    4. user 0m2.306s
    5. sys 0m0.243s

    Subsequent reads of the same file are noticeably faster since the data is stored in Alluxio memory.

    Now count how many tweets mention the word “bunny”.

    Congratulations! You installed Alluxio locally and used Alluxio to accelerate access to data!

    Stopping Alluxio

    Stop Alluxio with the following command:

    1. $ ./bin/alluxio-stop.sh local

    Congratulations on completing the quick start guide for Alluxio! This guide covered how to download and install Alluxio locally with examples of basic interactions via the Alluxio shell. This was a simple example on how to get started with Alluxio.

    There are several next steps available. Learn more about the various features of Alluxio in our documentation. The resources below detail deploying Alluxio in various ways, mounting existing storage systems, and configuring existing applications to interact with Alluxio.

    Next Steps

    Alluxio can be deployed in many different environments.

    Various under storage systems can be accessed through Alluxio.