Basic CRUD (Create, Read, Update, and Delete) operations in Aerospike,
and how multiple operations on a record are performed in a single
command.
This notebook requires an Aerospike database running
on localhost and that Python and the Aerospike Python client are
installed (pip install aerospike). Visit Aerospike notebooks
repo for
additional details and the Docker container.
Ensure the database is running
This notebook requires that the Aerospike database is running.
!asd >&/dev/null
!pgrep -x asd >/dev/null && echo "Aerospike database is running!"|| echo "**Aerospike database is not running!**"
Output
Aerospike database is running!
Initialize the client
Initialize the client and connect it to the database.
import aerospike
import sys
config = {
'hosts': [ ('127.0.0.1', 3000) ]
}
try:
client = aerospike.client(config).connect()
except:
import sys
print("failed to connect to the cluster with", config['hosts'])
sys.exit(1)
print('Client initialized and connected to database')
Output
Client initialized and connected to database
Understanding records in Aerospike
Data in Aerospike consists of records. A record belongs to a namespace
(equivalent to a database) and optionally to a set (equivalent to a
table). A record has multiple bins (or fields), which are named,
strongly-typed containers that hold both atomic (string, integer, bytes)
and complex (map, list) data types.
A record has two metadata values:
generation: the number of times it has been modified
ttl: seconds remaining until record expiration (default = 0; never
expire)
Expired records are garbage-collected by the database. On write or
touch commands, a record’s ttl is updated based on the specified
policy.
Record structure
The following code cell illustrates the record structure.
# Record structure
# key: (namespace, set, user_key, digest), digest is computed from first three values
There are multiple ways to read records from Aerospike database, get
being the simplest one. You will need the key as the record unique
identifier as discussed above. Note the record was written above.
It returns:
key — The key tuple of the record that was read.
meta — The dict containing the record metadata gen and ttl fields.
bins — The dict containing the bins of the record.
Meta and bins are None if the record is not found.
It is possible to project or read specific bins of a record. The
following example illustrates this. Note that the second argument is a
tuple of bin names to project.
To delete records from the database, use the remove command.
An exception is thrown if the record does not exist.
# Key of the record to be deleted
key1 = ('test', 'demo', 'key1')
# Delete the record
try:
client.remove(key1)
except:
print('failed to delete record: ', key1)
sys.exit(1)
(key, metadata) = client.exists(key1, policy)
print('Key, metadata: ', key1, metadata)
print('Successfully deleted ', key1)
# will throw an exception
nokey = ('test', 'demo', 'non-existent')
try:
client.remove(key)
except:
print('failed to delete record: ', nokey)
Output
Key, metadata: ('test', 'demo', 'key1') None
Successfully deleted ('test', 'demo', 'key1')
failed to delete record: ('test', 'demo', 'non-existent')
Multiple operations on a single record
Multiple operations on a single a record can be conveniently performed
in a single-record command. Multiple updates as well as reads of a record
may be performed atomically in a single operate command. Commands are
performed in the order they are specified. Below is a full example of a
multi-operaton command.
from __future__ import print_function
import aerospike
from aerospike_helpers.operations import operations as op_helpers
Bins: {'name': 'Phillip J. Fry', 'career': 'delivery boy', 'age': 1025}
Multi-op example: read and delete in one request
The example shows reading and deleting a record in a single command.
The record was created above.
from aerospike_helpers.operations import operations
key = ('test', 'demo', 1)
ops =[ operations.read('name'),
operations.delete() ]
_, _, bins = client.operate(key, ops)
print('Bins: ', bins)
# will throw an exception
(key_, metadata) = client.exists(key, policy)
print('Key, metadata: ', key, metadata)
print('Successfully deleted ', key)
Output
Bins: {'name': 'Phillip J. Fry'}
Key, metadata: ('test', 'demo', 1) None
Successfully deleted ('test', 'demo', 1)
Next steps
Visit Aerospike notebooks
repo to
run additional Aerospike notebooks. To run a different notebook,
download the notebook from the repo to your local machine, and then
click on File > Open, and select Upload.