Quick start
In this Quick Start, you will:
- Deploy an Aerospike database
- Set up your development environment
- Connect to the Aerospike database
- Write a record
- Read a record
Prerequisites
This quick start assumes a basic understanding of application development, and experience issuing commands in a terminal.
Deploy Aerospike with Docker
To get up and running quickly, Docker and Aerospike work together nicely without much effort.
The following command creates a single node Aerospike Enterprise database, using the latest version, fully equipped with a single node feature key and template configuration. No additional setup is needed.
docker run -d --name aerospike -p 3000-3002:3000-3002 aerospike/aerospike-server:latest
If you’d like to customize your deployment, check out configuring Aerospike for more information.
Aerospike has a variety of options when it comes to deploying the database.
- AeroLab is an amazing community-supported tool that allows you to quickly spin up development clusters.
- Deploy containers directly through Docker, or using our Kubernetes Operator.
- Aerospike supports the three major cloud providers, AWS, GCP, and Azure.
- Bare metal deployments are also available with a variety of Linux distributions as well.
Set up your development environment
Grab your favorite IDE and create a new project.
For this quick start we’ll be using Maven for our build manager. After creating your project, add the following dependency to the pom.xml
file.
<dependencies> <dependency> <groupId>com.aerospike</groupId> <artifactId>aerospike-client</artifactId> <version>7.0.0</version> </dependency></dependencies>
If you’re using a different build manager, or looking for more information on getting started with the Java client, check out the Java client install docs.
The compiled C# client library dll is available on NuGet. To install, run the following command in the Package Manager Console.
PM> Install-Package Aerospike.Client
If you’re looking for more information on getting started with the C# client, check out the C# client install docs.
After setting up your Go project, run the following to get the Aerospike Go Client in your $GOPATH
.
go get github.com/aerospike/aerospike-client-go/v7@v7.6.0go run -tags as_proxy main.go
If you’re looking for more information on getting started with the Go client, check out the Go client install docs.
Using Python3 and pip
, run the following command to install the Aerospike client.
python3 -m pip install aerospike
If you’re looking for more information on getting started with the Python client, check out the Python client install docs.
Using npm to install Aerospike, run the following command inside your project directory.
npm install aerospike
If you’re looking for more information on getting started with the Node.js client, check out the Node.js client install docs.
Application basics
The following code block contains the necessary imports and basic application shell to get started.
package com.sample;
import com.aerospike.client.IAerospikeClient;import com.aerospike.client.AerospikeClient;import com.aerospike.client.AerospikeException;import com.aerospike.client.Bin;import com.aerospike.client.Host;import com.aerospike.client.Key;import com.aerospike.client.Record;import com.aerospike.client.policy.WritePolicy;import com.aerospike.client.policy.Policy;
public class App{ public static void main( String[] args ) {
}}
using System;using Aerospike.Client;
public class App{ public static void main() {
}}
package main
import ( "log" "time" "github.com/aerospike/aerospike-client-go/v7@v7.6.0")
func main() {
}
import aerospikefrom aerospike import exception as ex
const Aerospike = require('aerospike');
const main = async () => {
}
main();
Client connection
The minimum information you need to connect to an Aerospike database is the server IP address
and port number
. If you’re using the basic Docker install from step one, the following information should work just fine.
If your database is deployed with a cloud provider or installed elsewhere, you’ll need information specific to your cluster setup.
Create variables to store the connection information, as well as the namespace and set name.
Using the address
and port
from above, instantiate the Aerospike client.
String address = "127.0.0.1"; // Aerospike addressInteger port = 3000; // Aerospike portString namespace = "test"; // Cluster namespaceString set = "foo"; // Set name within namespace
IAerospikeClient client = new AerospikeClient(address, port);
string address = "127.0.0.1"; // Aerospike addressint port = 3000; // Aerospike portstring name_space = "test"; // Cluster namespacestring set = "foo"; // Set name within namespace
AerospikeClient client = new AerospikeClient(null, new Host(address, port));
address := "127.0.0.1" // Aerospike addressport := 3000 // Aerospike portnamespace := "test" // Cluster namespaceset := "foo" // Set name within namespace
// Create the client and connect to the databaseclient, err := aerospike.NewClient(address, port)if err != nil { log.Fatal(err)}defer client.Close()
address = "127.0.0.1" # Aerospike addressport = 3000 # Aerospike portnamespace = "test" # Cluster namespacesetname = "foo" # Set name within namespace
client = aerospike.client({'hosts': [(address, port)]})
const address = "127.0.0.1"; // Aerospike addressconst port = "3000"; // Aerospike portconst namespace = "test"; // Cluster namespaceconst set = "foo"; // Set name within namespace
let client = await Aerospike.connect({ hosts: `${address}:${port}` });
Write a record
-
Create a
WritePolicy
to set thetotalTimeout
for writes.WritePolicy writePolicy = new WritePolicy();writePolicy.totalTimeout = 5000; -
Create the record key, a tuple consisting of namespace, set name, and user defined key
Key key = new Key(namespace, set, "bar"); -
Create a bin to store data within the new record
Bin bin = new Bin("myBin", "Hello World!"); -
Write the record to Aerospike.
try {client.put(writePolicy, key, bin);System.out.println("Successfully wrote record");}catch (AerospikeException e) {e.printStackTrace();}
-
Create a
WritePolicy
to set thetotalTimeout
for writes.WritePolicy writePolicy = new WritePolicy();writePolicy.totalTimeout = 5000; -
Create the record key, a tuple consisting of namespace, set name, and user defined key
Key key = new Key(name_space, set, "bar"); -
Create a bin to store data within the new record
Bin bin = new Bin("myBin", "Hello World!"); -
Write the record to Aerospike.
try{client.Put(writePolicy, key, bin);Console.WriteLine("Successfully wrote record");}catch (AerospikeException e){Console.WriteLine(e);}
-
Create a
WritePolicy
to set theTotalTimeout
for writes.writePolicy := aerospike.NewWritePolicy(0, 0)writePolicy.TotalTimeout = 5000 * time.Millisecond -
Create the record key, a tuple consisting of namespace, set name, and user defined key
key, err := aerospike.NewKey(namespace, set, "bar")if err != nil {log.Fatal(err)} -
Create a bin to store data within the new record
bin := aerospike.NewBin("myBin", "Hello World!") -
Write the record to Aerospike.
err = client.PutBins(writePolicy, key, bin)if err != nil {log.Fatal(err)}log.Println("Succesfully wrote record")
-
Create a
WritePolicy
to set thetotalTimeout
for writes.write_policy = {'total_timeout': 5000} -
Create the record key, a tuple consisting of namespace, set name, and user defined key
key = (namespace, setname, "bar") -
Create a bin to store data within the new record
bins = {'myBin': 'Hello World!'} -
Write the record to Aerospike.
try:client.put(key, bins, policy=write_policy)print("Successfully wrote record")except ex.ClientError as e:print(e)
-
Create a
WritePolicy
to set thetotalTimeout
for writes.let writePolicy = new Aerospike.WritePolicy({totalTimeout: 5000}); -
Create the record key, a tuple consisting of namespace, set name, and user defined key
let key = new Aerospike.Key(namespace, set, "bar"); -
Create a bin to store data within the new record
let bin = { myBin: "Hello World!" }; -
Write the record to Aerospike.
try {await client.put(key, bin, [], writePolicy);console.info("Successfully wrote record");}catch (err) {console.error(err);}
Read a record
-
Create a
Policy
to set thetotalTimeout
for reads.Policy readPolicy = new Policy();readPolicy.totalTimeout = 5000; -
Using the same key from our write command, read the record back.
try {Record record = client.get(readPolicy, key);System.out.format("Record: %s", record.bins);}catch (AerospikeException e) {e.printStackTrace();}finally {client.close();}
-
Create a
Policy
to set thetotalTimeout
for reads.Policy readPolicy = new Policy();readPolicy.totalTimeout = 5000; -
Using the same key from our write command, read the record back.
try{client.Get(readPolicy, key);Console.WriteLine("Record: {0}", record);}catch (AerospikeException e){Console.WriteLine(e);}finally{client.Close();}
-
Create a
Policy
to set theTotalTimeout
for reads.readPolicy := aerospike.NewPolicy()readPolicy.TotalTimeout = 5000 * time.Millisecond -
Read the record.
record, err := client.Get(readPolicy, key)if err != nil {log.Fatal(err)}log.Printf("Record: %s", record.Bins)
-
Create a
Policy
to set thetotalTimeout
for reads.read_policy = {'total_timeout': 5000} -
Using the same key from our write command, read the record back.
try:(key_, meta, bins) = client.get(key, policy=read_policy)print(bins)except ex.ClientError as e:print(e)finally:client.close()
-
Create a
Policy
to set thetotalTimeout
for reads.let readPolicy = new Aerospike.ReadPolicy({totalTimeout: 5000}); -
Using the same key from our write command, read the record back.
try {let record = await client.get(key, readPolicy);console.info("Record: %o", record);}catch (err) {console.error(err);}finally {client.close();}
Check out the Develop topic for more in-depth code samples and content to help you get started!
Put it all together
Check out the full code sample
package com.sample;
import com.aerospike.client.IAerospikeClient;import com.aerospike.client.AerospikeClient;import com.aerospike.client.AerospikeException;import com.aerospike.client.Bin;import com.aerospike.client.Host;import com.aerospike.client.Key;import com.aerospike.client.Record;import com.aerospike.client.policy.WritePolicy;import com.aerospike.client.policy.Policy;
public class App{ public static void main( String[] args ) { // *** // Setup // ***
String address = "127.0.0.1"; // Aerospike address Integer port = 3000; // Aerospike port String namespace = "test"; // Cluster namespace String set = "foo"; // Set name within namespace
// Create the client and connect to the database IAerospikeClient client = new AerospikeClient(address, port);
// *** // Write a record // ***
// Create a new write policy WritePolicy writePolicy = new WritePolicy(); writePolicy.totalTimeout = 5000;
// Create the record key // A tuple consisting of namespace, set name, and user defined key Key key = new Key(namespace, set, "bar");
// Create a bin to store data within the new record Bin bin = new Bin("myBin", "Hello World!");
//Write the record to your database try { client.put(writePolicy, key, bin); System.out.println("Successfully wrote record"); } catch (AerospikeException e) { e.printStackTrace(); }
// *** // Read back the record we just wrote // ***
// Create a new read policy Policy readPolicy = new Policy(); readPolicy.totalTimeout = 5000;
// Read the record try { Record record = client.get(readPolicy, key); System.out.format("Record: %s", record.bins); } catch (AerospikeException e) { e.printStackTrace(); } finally { client.close(); } }}
using System;using Aerospike.Client;
public class App{ public static void main() { // *** // Setup // ***
string address = "127.0.0.1"; // Aerospike address int port = 3000; // Aerospike port string namespace = "test"; // Cluster namespace string set = "foo"; // Set name within namespace
// Create the client and connect to the database AerospikeClient client = new AerospikeClient(null, new Host(address, port));
// *** // Write a record // ***
// Create a new write policy WritePolicy writePolicy = new WritePolicy(); writePolicy.totalTimeout = 5000;
// Create the record key // A tuple consisting of namespace, set name, and user defined key Key key = new Key(namespace, set, "bar");
// Create a bin to store data within the new record Bin bin = new Bin("myBin", "Hello World!");
//Write the record to your database try { client.Put(writePolicy, key, bin); Console.WriteLine("Successfully wrote record"); } catch (AerospikeException e) { Console.WriteLine(e); }
// *** // Read back the record we just wrote // ***
// Create a new read policy Policy readPolicy = new Policy(); readPolicy.totalTimeout = 5000;
// Read the record try { Record record = client.Get(readPolicy, key); Console.WriteLine("Record: {0}", record); } catch (AerospikeException e) { Console.WriteLine(e); } finally { client.Close(); } }}
package main
import ( "log" "time" "github.com/aerospike/aerospike-client-go/v7@v7.6.0")
func main() { // *** // Setup // ***
address := "127.0.0.1" // Aerospike address port := 3000 // Aerospike port namespace := "test" // Cluster namespace set := "foo" // Set name within namespace
// Create the client and connect to the database client, err := aerospike.NewClient(address, port) if err != nil { log.Fatal(err) } defer client.Close()
// *** // Write a record // ***
// Create a WritePolicy to set the TotalTimeout for writes // default 1000 ms writePolicy := aerospike.NewWritePolicy(0, 0) writePolicy.TotalTimeout = 5000 * time.Millisecond
// Create the record key // A tuple consisting of namespace, set name, and user defined key key, err := aerospike.NewKey(namespace, set, "bar") if err != nil { log.Fatal(err) }
// Create a bin to store data within the new record bin := aerospike.NewBin("myBin", "Hello World!")
//Write the record to your database err = client.PutBins(writePolicy, key, bin) if err != nil { log.Fatal(err) } log.Println("Succesfully wrote record")
// *** // Read back the record we just wrote // ***
// Create a Policy to set the TotalTimeout for reads // default 1000 ms readPolicy := aerospike.NewPolicy() readPolicy.TotalTimeout = 5000 * time.Millisecond
// Read the record record, err := client.Get(readPolicy, key) if err != nil { log.Fatal(err) }
log.Printf("Record: %s", record.Bins)}
import aerospike
# ***# Setup# ***
address = "127.0.0.1" # Aerospike addressport = 3000 # Aerospike portnamespace = "test" # Cluster namespacesetname = "foo" # Set name within namespace
# Create the client and connect to the databaseclient = aerospike.client({'hosts': [(address, port)]})
# ***# Write a record# ***
# Create a new write policywrite_policy = {'total_timeout': 5000}
# Create the record key# A tuple consisting of namespace, set name, and user defined keykey = (namespace, setname, "bar")
# Create a bin to store data within the new recordbins = {'myBin': 'Hello World!'}
# Write the record to your databasetry: client.put(key, bins, policy=write_policy) print("Successfully wrote record")except ex.ClientError as e: print(e)
# ***# Read back the record we just wrote# ***
# Create a new read policyread_policy = {'total_timeout': 5000}
# Read the recordtry: (key_, meta, bins) = client.get(key, policy=read_policy) print(bins)except ex.ClientError as e: print(e)finally: client.close()
const Aerospike = require('aerospike');
const main = async () => { // *** // Setup // ***
const address = "127.0.0.1"; // Aerospike address const port = "3000"; // Aerospike port const namespace = "test"; // Cluster namespace const set = "foo"; // Set name within namespace
// Create the client and connect to the database let client = await Aerospike.connect({ hosts: `${address}:${port}` });
// *** // Write a record // ***
// Create a new write policy let writePolicy = new Aerospike.WritePolicy({ totalTimeout: 5000 });
// Create the record key // A tuple consisting of namespace, set name, and user defined key let key = new Aerospike.Key(namespace, set, "bar");
// Create a bin to store data within the new record let bin = { myBin: "Hello World!" };
//Write the record to your database try { await client.put(key, bin, [], writePolicy); console.info("Successfully wrote record"); } catch (err) { console.error(err); }
// *** // Read back the record we just wrote // ***
// Create a new read policy let readPolicy = new Aerospike.ReadPolicy({ totalTimeout: 5000 });
// Read the record try { let record = await client.get(key, readPolicy); console.info("Record: %o", record); } catch (err) { console.error(err); } finally { client.close(); }}
main();