Skip to content

wangao1236/alluxio-csi

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

Container Storage Interface for Alluxio

This repository contains the CSI implementation to provide POSIX access to Alluxio in containerized environments such as Kubernetes.

How to build

Build alluxio-csi docker image

docker build . -t alluxio/alluxio-csi:<version_tag>

Example

Deploy

Go to deploy folder, Run following commands:

kubectl apply -f csi-alluxio-driver.yml
kubectl apply -f csi-alluxio-daemon.yml

Example Nginx application

The /examples folder contains PersistentVolume, PersistentVolumeClaim and an nginx Pod mounting the alluxio volume under /data.

You will need to update the alluxio MASTER_HOST_NAME and the share information under volumeAttributes in alluxio-pv.yaml file to match your alluxio master configuration.

Run following commands to create nginx pod mounted with alluxio volume:

kubectl apply -f alluxio-pv.yml
kubectl apply -f alluxio-pvc.yml
kubectl apply -f nginx.yml

Useful Links

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 96.3%
  • Dockerfile 3.7%