GETTING_STARTED
AIStore can scale from a single Linux machine to a rack-scale cluster or a managed Kubernetes installation in the cloud.
Contents
Deployment Considerations
Before you pick a path, answer two quick questions:
- Dataset size – e.g., tens of terabytes or multi-petabyte?
- Available hardware – laptop, workstation, a few bare-metal servers, or Kubernetes?
For datasets below (ballpark) 50TB, a single host may suffice and should be considered a viable option.
Expecting growth or already past that mark? Plan for multi-node or cloud.
Note that you can always start small: a single-host deployment, a 3-node cluster in the Cloud or on-premises, etc. AIStore supports many options to inter-connect existing clusters - the capability called unified namespace - or migrate existing datasets (on-demand or via supported storage services). For introductions and further pointers, please refer to the AIStore Overview.
Prerequisites
AIStore runs on commodity Linux machines with no special requirements. It is expected that within a given cluster, all AIS targets are identical, hardware-wise.
- Linux with
gcc
,sysstat
,attr
,util-linux
- Linux kernel ≥ 6.8
- Go ≥ 1.23 (or build via
CROSS_COMPILE
) - Local filesystem with extended attributes (xattrs) enabled
- Optional – cloud credentials (AWS, GCP, Azure, OCI)
Mac is also supported albeit in a limited (development only) way.
Linux
Depending on your Linux distribution, you may or may not have GCC
, sysstat
, and/or attr
packages. These packages must be installed.
Speaking of distributions, our current default recommendation (based on our experience) is Ubuntu Server 24.04 LTS or Ubuntu Server 22.04 LTS. However, AIStore has no special dependencies, so virtually any distribution will work.
For the local filesystem, we currently recommend xfs. But again, this default recommendation should not be interpreted as a limitation: other fine choices include zfs, ext4, f2fs and more.
Since AIS itself provides n-way mirroring and erasure coding, hardware RAID is not recommended. But it can be used and will work.
The capability called extended attributes, or xattrs
, is a long-time POSIX legacy supported by all mainstream filesystems without exceptions. Unfortunately, xattrs
may not always be enabled in Linux kernel configurations - which can be easily verified by running the setfattr
command.
If disabled, please make sure to enable xattrs in your Linux kernel configuration. To quickly check:
$ touch foo
$ setfattr -n user.bar -v ttt foo
$ getfattr -n user.bar foo
Mac
For developers, there’s also macOS aka Darwin option. Certain capabilities related to querying the state and status of local hardware resources (memory, CPU, disks) may be missing. In fact, it is easy to review specifics with a quick check on the sources:
$ find . -name "*darwin*"
./fs/fs_darwin.go
./cmn/cos/err_darwin.go
./sys/proc_darwin.go
./sys/cpu_darwin.go
./sys/mem_darwin.go
./ios/diskstats_darwin.go
./ios/dutils_darwin.go
./ios/fsutils_darwin.go
...
Benchmarking and stress-testing is done on Linux only - another reason to consider Linux (and only Linux) for production deployments.
Quick Start
This section provides the fastest way to get an AIStore cluster running on your local machine. For more detailed steps, see the Local Playground section.
Install Go (if not already installed)
Follow the official Go installation instructions for your platform (use the Linux tab for AIStore deployments).
Set up your GOPATH
environment variable when done.
Clone and Deploy AIStore
# Clone the repository
$ mkdir -p $GOPATH/src/github.com/NVIDIA
$ cd $GOPATH/src/github.com/NVIDIA
$ git clone https://github.com/NVIDIA/aistore.git
$ cd aistore
# Build CLI and `aisloader` (bench), and deploy a minimal cluster (1 gateway, 1 target)
$ make kill clean cli aisloader deploy <<< $'1\n1'
# Verify the cluster is running
$ ais show cluster
Create a Bucket and Put/Get Objects
# Create a new bucket
$ ais create ais://mybucket
# Put an object using CLI
$ echo "Hello AIStore" > hello.txt
$ ais put hello.txt ais://mybucket
# List objects in the bucket
$ ais ls ais://mybucket
# Get the object
$ ais get ais://mybucket/hello.txt downloaded.txt
$ cat downloaded.txt
At this point, it is maybe a good idea to also run (and review):
$ ais --help
$ ais alias
$ ais <TAB-TAB>
Run a Benchmark
# Run a quick benchmark with aisloader: 100% write followed by 50/50%
$ aisloader -bucket=ais://mybucket -duration=10s -numworkers=4 -pctput=100 -cleanup=false
$ aisloader -bucket=ais://mybucket -duration=10s -numworkers=8 -pctput=50 -cleanup=false
That’s it! You now have a running AIStore deployment you can experiment with. Continue reading for more detailed setup options and advanced configurations.
Next Steps
Local Playground
If you’re looking for speedy evaluation, want to experiment with supported features, get a feel of initial usage, or development - for any and all of these reasons running AIS from its GitHub source might be a good option.
Hence, we introduced (and keep maintaining) Local Playground - one of the several supported deployment options.
Some of the most popular deployment options are also summarized in this table. The list includes Local Playground, and its complementary guide here.
Local Playground is for development purposes and is not meant to provide optimal performance.
To run AIStore from source, one would typically need to have Go: compiler, linker, tools, and required packages. However:
CROSS_COMPILE
option (see below) can be used to build AIStore without having (to install) Go and its toolchain (requires Docker).
To install Go(lang) on Linux:
- Download the latest
go1.<x.y>.linux-amd64.tar.gz
from Go downloads - Follow installation instructions
Next, if not done yet, export the GOPATH
environment variable.
Here’s an additional 5-minute introduction that talks more in-depth about setting up the Go environment variables.
Once done, we can run AIS as follows (steps 1 through 4 below):
Step 1: Clone the AIStore repository and preload dependencies
We want to clone the repository into the following path so we can access some of the associated binaries through the environment variables we set up earlier.
$ cd $GOPATH/src/github.com/NVIDIA
$ git clone https://github.com/NVIDIA/aistore.git
$ cd aistore
To preload dependencies, optionally, run go mod tidy
(or same, make mod-tidy
):
$ make mod-tidy
Step 2: Deploy cluster and verify the running status using ais
cli
NOTE: For a local deployment, we do not need production filesystem paths. For more information, read about configuration basics. If you need a physical disk or virtual block device, you must add them to the fspaths config. See running local playground with emulated disks for more information.
Many useful commands are provided via top Makefile (for details, see Make section below).
In particular, we can use make
to deploy our very first 3 nodes (and 3 gateways) cluster:
$ make kill clean cli aisloader deploy <<< $'3\n3'
This make
command executes several make targets (not to confuse with AIS targets) - in particular, it:
- shuts down (via
make kill
) AIStore that may have been previously deployed in the local playground; - removes its metadata and data (
make clean
); - builds CLI (
ais
) andaisloader
tools (that we are using all the time);
and, finally:
- deploys (3 storage nodes, 3 gateways) cluster.
The cluster then can be observed as follows:
$ ais show cluster
clean_deploy.sh
Alternatively or in addition (to make deploy
), one can also use:
With no arguments, this script also builds AIStore binaries (such as aisnode
and ais
CLI). You can pass in arguments to configure the same options that the make deploy
command above uses.
$ ./scripts/clean_deploy.sh --target-cnt 1 --proxy-cnt 1 --mountpath-cnt 1 --deployment local --cleanup
Step 3: Run aisloader
tool
We can now run the aisloader
tool to benchmark our new cluster.
$ make aisloader # build aisloader tool
$ aisloader -bucket=ais://abc -duration 2m -numworkers=8 -minsize=1K -maxsize=1K -pctput=100 --cleanup=false # run aisloader for 2 minutes (8 workers, 1KB size, 100% write, no cleanup)
Step 4: Run iostat (or use any of the multiple documented ways to monitor AIS performance)
$ iostat -dxm 10 sda sdb
Running Local Playground with emulated disks
Here’s a quick walkthrough (with more references included below).
- Step 1: patch
deploy/dev/local/aisnode_config.sh
as follows:
diff --git a/deploy/dev/local/aisnode_config.sh b/deploy/dev/local/aisnode_config.sh
index c5e0e4fae..46085e19c 100755
--- a/deploy/dev/local/aisnode_config.sh
+++ b/deploy/dev/local/aisnode_config.sh
@@ -192,11 +192,12 @@ cat > $AIS_LOCAL_CONF_FILE <<EOL
"port_intra_data": "${PORT_INTRA_DATA:-10080}"
},
"fspaths": {
- $AIS_FS_PATHS
+ "/tmp/ais/mp1": "",
+ "/tmp/ais/mp2": ""
},
"test_fspaths": {
"root": "${TEST_FSPATH_ROOT:-/tmp/ais$NEXT_TIER/}",
- "count": ${TEST_FSPATH_COUNT:-0},
+ "count": 0,
"instance": ${INSTANCE:-0}
}
}
- Step 2: deploy a single target with two loopback devices (1GB size each):
$ make kill clean cli deploy <<< $'1\n1\n4\ny\ny\nn\n1G\n'
or, same:
$ TAGS=aws TEST_LOOPBACK_SIZE=1G make kill clean cli deploy <<< $'1\n1\n'
$ mount | grep dev/loop
/dev/loop23 on /tmp/ais/mp1 type ext4 (rw,relatime)
/dev/loop25 on /tmp/ais/mp2 type ext4 (rw,relatime)
- Step 3: observe a running cluster; notice the deployment type and the number of disks:
$ ais show cluster
PROXY MEM USED(%) MEM AVAIL LOAD AVERAGE UPTIME STATUS VERSION BUILD TIME
p[BOxqibgv][P] 0.14% 27.28GiB [1.2 1.1 1.1] - online 3.22.bf26375e5 2024-02-29T11:11:52-0500
TARGET MEM USED(%) MEM AVAIL CAP USED(%) CAP AVAIL LOAD AVERAGE REBALANCE UPTIME STATUS VERSION
t[IwzSpiIm] 0.14% 27.28GiB 6% 1.770GiB [1.2 1.1 1.1] - - online 3.22.bf26375e5
Summary:
Proxies: 1
Targets: 1 (num disks: 2)
Cluster Map: version 4, UUID g7sPH9dTY, primary p[BOxqibgv]
Deployment: linux
Status: 2 online
Rebalance: n/a
Authentication: disabled
Version: 3.22.bf26375e5
Build: 2024-02-29T11:11:52-0500
See also:
for developers; cluster and node configuration; supported deployments: summary table and links.
Running Local Playground remotely
AIStore (product and solution) is fully based on HTTP(S) utilizing the protocol both externally (to support both frontend interfaces and communications with remote backends) and internally, for intra-cluster streaming.
Connectivity-wise, what that means is that your local deployment at localhost:8080
can as easily run at any arbitrary HTTP(S) address.
Here’s the quick change you make to deploy Local Playground at (e.g.) 10.0.0.207
, whereby the main gateway’s listening port would still remain 8080
default:
diff --git a/deploy/dev/local/aisnode_config.sh b/deploy/dev/local/aisnode_config.sh |
index 9198c0de4..be63f50d0 100755 |
--- a/deploy/dev/local/aisnode_config.sh |
+++ b/deploy/dev/local/aisnode_config.sh |
@@ -181,7 +181,7 @@ cat > $AIS_LOCAL_CONF_FILE <<EOL |
"confdir": "${AIS_CONF_DIR:-/etc/ais/}", |
"log_dir": "${AIS_LOG_DIR:-/tmp/ais$NEXT_TIER/log}", |
"host_net": { |
- "hostname": "${HOSTNAME_LIST}", |
+ "hostname": "10.0.0.207", |
"hostname_intra_control": "${HOSTNAME_LIST_INTRA_CONTROL}", |
"hostname_intra_data": "${HOSTNAME_LIST_INTRA_DATA}", |
"port": "${PORT:-8080}", |
diff --git a/deploy/dev/local/deploy.sh b/deploy/dev/local/deploy.sh |
index e0b467d82..b18361155 100755 |
--- a/deploy/dev/local/deploy.sh |
+++ b/deploy/dev/local/deploy.sh |
@@ -68,7 +68,7 @@ else |
PORT_INTRA_DATA=${PORT_INTRA_DATA:-13080} |
NEXT_TIER="_next" |
fi |
-AIS_PRIMARY_URL="http://localhost:$PORT" |
+AIS_PRIMARY_URL="http://10.0.0.207:$PORT" |
if $AIS_USE_HTTPS; then |
AIS_PRIMARY_URL="https://localhost:$PORT" |
Make
AIS comes with its own build system that we use to build both standalone binaries and container images for a variety of deployment options.
The very first make
command you may want to execute could as well be:
$ make help
This shows all subcommands, environment variables, and numerous usage examples, including:
Example: deploy cluster locally
$ make deploy
Example: shutdown cluster and cleanup all its data and metadata
$ make kill clean
For shutdown options, see
ais cluster shutdown --help
Example: shutdown/cleanup, build CLI, and then deploy non-interactively a cluster consisting of 7 targets (4 mountpaths each) and 2 proxies
$ make kill clean cli deploy <<< $'7\n2\n4\ny\ny\nn\n'
Example: same as above but also build aisnode
executable with GCP and AWS backends
$ AIS_BACKEND_PROVIDERS="aws gcp" make kill clean cli deploy <<< $'7\n2'
Example: same as above
$ TAGS="aws gcp" make kill clean cli deploy <<< $'7\n2'
Use
TAGS
environment to specify any/all supported build tags that also include conditionally linked remote backends (see next).
Use
AIS_BACKEND_PROVIDERS
environment to select remote backends that include 3 (three) Cloud providers andht://
- namely: (aws
,gcp
,azure
,ht
)
For the complete list of supported build tags, please see conditional linkage.
Example: same as above but also build aisnode
with debug info
$ TAGS="aws gcp debug" make kill clean cli deploy <<< $'7\n2'
Further:
make kill
- terminate local AIStore.make restart
- shut it down and immediately restart using the existing configuration.make help
- show make options and usage examples.
For even more development options and tools, please refer to:
System environment variables
The variables include AIS_ENDPOINT
, AIS_AUTHN_TOKEN_FILE
, and more.
Almost in all cases, there’s an “AIS_” prefix (hint: git grep AIS_
).
And in all cases with no exception, the variable takes precedence over the corresponding configuration, if exists. For instance:
AIS_ENDPOINT=https://10.0.1.138 ais show cluster
overrides the default endpoint as per ais config cli
or (same) ais config cli --json
Endpoints are equally provided by each and every running AIS gateway (aka “proxy”) and each endpoint can be (equally) used to access the cluster. To find out what’s currently configured, run (e.g.):
$ ais config node <NODE> local host_net --json
where NODE
is, effectively, any clustered proxy (that’ll show up if you type ais config node
and press <TAB-TAB>
).
Other variables, such as AIS_PRIMARY_EP
and AIS_USE_HTTPS
can prove to be useful at deployment time.
For developers, CLI ais config cluster log.modules ec xs
(for instance) would allow to selectively raise and/or reduce logging verbosity on a per module bases - modules EC (erasure coding) and xactions (batch jobs) in this particular case.
To list all log modules, type
ais config cluster log
(orais config node NODE inherited log
) and press<TAB-TAB>
.
Finally, there’s also HTTPS configuration including X.509 certificates and options. For details, please refer to:
Multiple deployment options
AIStore deploys anywhere anytime supporting multiple deployment options summarized and further referenced here.
All containerized deployments have their own separate Makefiles
. With the exception of local playground, each specific build-able development (dev/
) and production (prod/
) option under the deploy
folder contains a pair: {Dockerfile
, Makefile
}.
This separation is typically small in size and easily readable and maintainable.
Also supported is the option not to have the required Go installed and configured. To still be able to build AIS binaries without Go on your machine, make sure that you have docker
and simply uncomment CROSS_COMPILE
line in the top Makefile
.
In the software, type of the deployment is also present in some minimal way. In particular, to overcome certain limitations of Local Playground (single disk shared by multiple targets, etc.) - we need to know the type. Which can be:
enumerated type | comment |
---|---|
dev |
development |
k8s |
Kubernetes |
linux |
Linux |
The most recently updated enumeration can be found in the source.
The type shows up in the
show cluster
output - see example above.
Kubernetes deployments
For production deployments, we developed the AIS/K8s Operator. This dedicated GitHub repository contains:
Minimal all-in-one-docker Deployment
This option has the unmatched convenience of requiring an absolute minimum time and resources - please see this README for details.
Testing your cluster
For development, health-checking a new deployment, or for any other (functional and performance testing) related reason you can run any/all of the included tests.
For example:
$ go test ./ais/test -v -run=Mirror
The go test
above will create an AIS bucket, configure it as a two-way mirror, generate thousands of random objects, read them all several times, and then destroy the replicas and eventually the bucket as well.
Alternatively, if you happen to have Amazon and/or Google Cloud account, make sure to specify the corresponding (S3 or GCS) bucket name when running go test
commands.
For example, the following will download objects from your (presumably) S3 bucket and distribute them across AIStore:
$ BUCKET=aws://myS3bucket go test ./ais/test -v -run=download
To run all tests in the category short tests:
# using randomly named ais://nnn bucket (that will be created on the fly and destroyed in the end):
$ BUCKET=ais://nnn make test-short
# with existing Google Cloud bucket gs://myGCPbucket
$ BUCKET=gs://myGCPbucket make test-short
The command randomly shuffles existing short tests and then, depending on your platform, usually takes anywhere between 15 and 30 minutes. To terminate, press Ctrl-C at any time.
Ctrl-C or any other (kind of) abnormal termination of a running test may have a side effect of leaving some test data in the test bucket.
Assorted Topics
Finding Things (Tip)
AIStore has been around for a while; the repository has accumulated quite a bit of information that can be immediately located as follows:
- See Extended Index
- Use CLI
search
command, e.g.:ais search copy
- Clone the repository and run
git grep
, e.g.:git grep -n out-of-band -- "*.md"
Any of the above will work. In particular, for any keyword or text of any kind, you can easily look up examples and descriptions via a simple find
or git grep
command. For instance:
$ git grep -n out-of-band -- "*.md"
docs/cli/archive.md:555: - detecting remote version changes (a.k.a. out-of-band updates), and
...
...
$ git grep out-of-band -- "*.md" | wc -l
44
Alternatively, use a combination of find
, xargs
, and/or grep
to search through existing texts of any kind, including source comments. For example:
$ find . -name "*.md" | xargs grep -n "out-of-band"
In addition, there’s the user-friendly CLI. For example, to search for commands related to copy, you could:
$ ais search copy
ais bucket cp
ais cp
ais download
ais job rm download
ais job start copy-bck
ais job start download
ais job start mirror
ais object cp
ais start copy-bck
ais start download
ais start mirror
...
For the CLI, remember to use the --help
option, which will universally show specific supported options and usage examples. For example:
$ ais cp --help
Running AIStore in Google Colab
To quickly set up AIStore (with AWS and GCP backends) in a Google Colab notebook, use our ready-to-use notebook:
Important Notes:
- This sample installs Go v1.23.1, the supported Go version and toolchain at the time of writing.
- AIStore runs in the background. However, if you stop any cell, it sends a “SIGINT” (termination signal) to all background processes, terminating AIStore. To restart AIStore, simply rerun the relevant cell.
Kubernetes Playground
For our development and testing, we use a local Kubernetes setup (e.g. Minikube, KinD), further documented here, to run the Kubernetes cluster on a single development machine. There’s a distinct advantage that AIStore extensions that require Kubernetes - such as Extract-Transform-Load, for example - can be developed rather efficiently.
Setting Up HTTPS Locally
So far, all examples in this getting-started document run a bunch of local web servers that listen for plain HTTP and collaborate to provide clustered storage.
There’s a separate document that tackles HTTPS topics that, in part, include:
- Generating self-signed certificates
- Deploying: 4 targets, 1 gateway, 6 mountpaths, AWS backend
- Accessing the cluster
- Testing with self-signed certificates
- Updating and reloading X.509 certificates
- Switching cluster between HTTP and HTTPS
Build, Make, and Development Tools
As noted, the project utilizes GNU make
to build and run things both locally and remotely (e.g., when deploying AIStore via Kubernetes. As the very first step, run make help
for help on:
- building AIS node binary (called
aisnode
) deployable as both storage target or an ais gateway (most of the time referred to as “proxy”); - building CLI
- building benchmark tools.
In particular, the make
provides a growing number of developer-friendly commands to:
- deploy the AIS cluster on your local development machine;
- run all or selected tests;
- instrument AIS binary with race detection, CPU and/or memory profiling and more.
Of course, local build is intended for development only. For production, there is a separate dedicated repository noted below.
In summary:
- for development using local playground, please also see local playground;
- for docker and minikube builds supported by this repository, see docker and minikube deployments;
- finally, for production build and deployment, please refer to the ais-k8s repository.
A note on conditional linkage
AIStore build supports conditional linkage of the supported remote backends: S3, GCS, Azure, OCI.
For the complete list of supported build tags, please see conditional linkage.
For the most recently updated list, please see 3rd party Backend providers.
To access remote data (and store it in-cluster), AIStore utilizes the respective provider’s SDK.
For Amazon S3, that would be
aws-sdk-go-v2
, for Azure -azure-storage-blob-go
, and so on. Each SDK can be conditionally linked intoaisnode
executable - the decision to link or not to link is made prior to deployment.
But not only supported remote backends are conditionally linked. Overall, the following list of commented examples presents almost all supported build tags (with maybe one minor exception):
# 1) build aisnode with no build tags, no debug
$ MODE="" make node
# 2) build aisnode with no build tags but with debug
$ MODE="debug" make node
# 3) all 4 cloud backends, no debug
$ AIS_BACKEND_PROVIDERS="aws azure gcp oci" MODE="" make node
# 4) cloud backends, with debug
$ AIS_BACKEND_PROVIDERS="aws azure gcp oci" MODE="debug" make node
# 5) cloud backends, debug, statsd
## Note: if `statsd` build tag is not specified `aisnode` will get built with Prometheus support.
## For AIS observability (including CLI, Prometheus, and Kubernetes integration), please see docs/monitoring-overview.md
$ TAGS="aws azure gcp statsd debug" make node
# 6) statsd, debug, nethttp (note that fasthttp is used by default)
$ TAGS="nethttp statsd debug" make node
In addition, to build AuthN, CLI, and/or aisloader, run:
make authn
make cli
make aisloader
respectively. With each of these make
s, you can also use MODE=debug
- debug mode is universally supported.
Containerized Deployments: Host Resource Sharing
The following applies to all containerized deployments:
- AIS nodes always automatically detect containerization.
- If deployed as a container, each AIS node independently discovers whether its own container’s memory and/or CPU resources are restricted.
- Finally, the node then abides by those restrictions.
To that end, each AIS node at startup loads and parses cgroup settings for the container and, if the number of CPUs is restricted, adjusts the number of allocated system threads for its goroutines.
This adjustment is accomplished via the Go runtime GOMAXPROCS variable. For in-depth information on CPU bandwidth control and scheduling in a multi-container environment, please refer to the CFS Bandwidth Control document.
Further, given the container’s cgroup/memory limitation, each AIS node adjusts the amount of memory available for itself.
Memory limits may affect dSort performance forcing it to “spill” the content associated with in-progress resharding into local drives. The same is true for erasure-coding which also requires memory to rebuild objects from slices, etc.
For technical details on AIS memory management, please see this readme.
Curl
Some will say that using AIS CLI with aistore is an order of magnitude more convenient than curl. Or two orders.
Must be a matter of taste, though, and so here are a few curl
examples.
As always,
http://localhost:8080
address (below) simply indicates Local Playground and must be understood as a placeholder for an arbitrary aistore endpoint (AIS_ENDPOINT
).
Example: PUT via aistore S3 interface; specify PUT content inline (in the curl command):
$ ais create ais://nnn ## create bucket, if doesn't exist
$ curl -L -X PUT -d "0123456789" http://localhost:8080/s3/nnn/qqq
$ ais ls ais://nnn
NAME SIZE
qqq 10B
Example: same as above using Easy URL
## notice PROVIDER/BUCKET/OBJECT notation
##
$ curl -L -X PUT -d "0123456789" http://localhost:8080/ais/nnn/eee
$ ais ls ais://nnn
NAME SIZE
eee 10B
qqq 10B
Finally, same as above using native AIS API
## notice '/v1/objects' API endpoint
##
$ curl -L -X PUT -d "0123456789" http://localhost:8080/v1/objects/nnn/uuu
$ ais ls ais://nnn
NAME SIZE
eee 10B
qqq 10B
uuu 10B