alluxio

Alluxio, formerly Tachyon, Unify Data at Memory Speed

Github星跟踪图

logo

Slack
Release
Docker Pulls
Documentation
Twitter Follow
License

What is Alluxio

Alluxio (formerly known as Tachyon)
is a virtual distributed storage system. It bridges the gap between
computation frameworks and storage systems, enabling computation applications to connect to
numerous storage systems through a common interface. Read more about
Alluxio Overview.

The Alluxio project originated from a research project called Tachyon at AMPLab, UC Berkeley,
which was the data layer of the Berkeley Data Analytics Stack (BDAS).
For more details, please refer to Haoyuan Li's PhD dissertation
Alluxio: A Virtual Distributed File System.

Who Uses Alluxio

Alluxio is used in production to manage Petabytes of data in many leading companies, with
the largest deployment exceeding 1300 nodes. You can find more use cases at
Powered by Alluxio or visit our first community conference (Data Orchestration Summit) to learn from other community members!

Community and Events

Please use the following to reach members of the community:

Download Alluxio

Binary download

Prebuilt binaries are available to download at https://www.alluxio.io/download .

Docker

Download and start an Alluxio master and a worker. More details can be found in documentation.

# Create a network for connecting Alluxio containers
$ docker network create alluxio_nw
# Create a volume for storing ufs data
$ docker volume create ufs
# Launch the Alluxio master
$ docker run -d --net=alluxio_nw \
    -p 19999:19999 \
    --name=alluxio-master \
    -v ufs:/opt/alluxio/underFSStorage \
    alluxio/alluxio master
# Launch the Alluxio worker
$ export ALLUXIO_WORKER_MEMORY_SIZE=1G
$ docker run -d --net=alluxio_nw \
    --shm-size=${ALLUXIO_WORKER_MEMORY_SIZE} \
    --name=alluxio-worker \
    -v ufs:/opt/alluxio/underFSStorage \
    -e ALLUXIO_JAVA_OPTS="-Dalluxio.worker.memory.size=${ALLUXIO_WORKER_MEMORY_SIZE} -Dalluxio.master.hostname=alluxio-master" \
    alluxio/alluxio worker

MacOS Homebrew

$ brew install alluxio

Quick Start

Please follow the Guide to Get Started
to run a simple example with Alluxio.

Report a Bug

To report bugs, suggest improvements, or create new feature requests, please open a Github Issue. Our previous Alluxio JIRA system has been deprecated since December 2018.

Depend on Alluxio

Alluxio project provides several different client artifacts for external projects to depend on Alluxio client:

  • Artifact alluxio-core-client-fs provides a client for
    Alluxio Java file system API)
    to access all Alluxio-specific functionalities.
  • Artifact alluxio-core-client-hdfs provides a client for
    HDFS-Compatible file system API.
  • Artifact alluxio-shaded-client, available in Alluxio 2.0.1 or later, includes both above
    clients and all their dependencies but in a shaded form to prevent conflicts. This client jar is
    self-contained but the size is also much larger than the other two. This artifact is recommended
    generally for a project to use Alluxio client.

Here are examples to declare the dependecies on alluxio-shaded-client using Maven or SBT:

  • Apache Maven

    <dependency>
      <groupId>org.alluxio</groupId>
      <artifactId>alluxio-shaded-client</artifactId>
      <version>2.1.2</version>
    </dependency>
    
  • SBT

    libraryDependencies += "org.alluxio" % "alluxio-shaded-client" % "2.1.2"
    

Contributing

Contributions via GitHub pull requests are gladly accepted from their original author. Along with
any pull requests, please state that the contribution is your original work and that you license the
work to the project under the project's open source license. Whether or not you state this
explicitly, by submitting any copyrighted material via pull request, email, or other means you agree
to license the material under the project's open source license and warrant that you have the legal
authority to do so.
For a more detailed step-by-step guide, please read
how to contribute to Alluxio.
For new contributor, please take 2 new contributor tasks.

主要指标

概览
名称与所有者Alluxio/alluxio
主编程语言Java
编程语言Shell (语言数: 16)
平台
许可证Apache License 2.0
所有者活动
创建于2012-12-21 17:43:46
推送于2025-03-25 21:26:33
最后一次提交
发布数162
最新版本名称v2.9.6 (发布于 2024-07-02 13:56:03)
第一版名称v0.1.0 (发布于 )
用户参与
星数7k
关注者数439
派生数2.9k
提交数33.8k
已启用问题?
问题数2217
打开的问题数641
拉请求数13733
打开的拉请求数393
关闭的拉请求数2364
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?