This notebook
requires Aerospike database running on localhost and that python and the
Aerospike python client have been installed (pip install aerospike).
Visit Aerospike notebooks
repo for
additional details and the docker container.
Ensure database is running
This notebook requires that 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!
Connect to database and populate test data
The test data has ten records with user-key “id1-10”, two bins (fields)
“name” and “age”, in the namespace “test” and set “demo”.
# import the module
from __future__ import print_function
import aerospike
# Configure the client
config = {
'hosts': [ ('127.0.0.1', 3000) ],
'policy' : {'key': aerospike.POLICY_KEY_SEND}
}
# Create a client and connect it to the cluster
try:
client = aerospike.client(config).connect()
except:
import sys
print("failed to connect to the cluster with", config['hosts'])
sys.exit(1)
# Records are addressable via a tuple of (namespace, set, key)
In addition to retrieving records with the primary index using the
key-value store APIs, the Aerospike Python client provides an API to
query records using secondary indexes. To use the query API, a secondary
index must exist on the query field.
Use the Query APIs to query the database using secondary indexes.
Create a query
The API client.query() takes the namespace (required) and set (optional)
arguments. The parameter set can be omitted or None, in which case
records in the namespace that are outside any set are returned. The
return value is a new aerospike.Query class instance.
This example creates a query on the test namespace, demo set.
query = client.query('test','demo')
print('Query object created.')
Output:
Query object created.
Project bins
Project (or select) bins using select() on the Query class instance. The
select() API accepts one or many bin names (strings).
This example selects “name” and “age” bins from the specified records.
query.select('name','age')
print('Bins name and age selected.')
Output:
Bins name and age selected.
Add query predicate
Define predicates using the where() API on the Query class instance. The
where() API accepts a predicate created using one of the functions in
aerospike.predicates including:
equals(bin, value) — Find records containing the bin with the
specified value (integer or string).
between(bin, min, max) — Find records containing the bin with a
value in the min and max range (integer only).
This example adds the between() predicate to a query.
from aerospike import predicates as p
query.where( p.between('age',14,25))
print('Predicate defined.')
Output:
Predicate defined.
Define foreach function
In order to executer the query and read the results, we need to use the
foreach() API in the Query class instance. The foreach() API accepts a
callback function for each record read from the query. The callback
function must accept a single argument as a tuple:
key tuple — The tuple to identify the record.
metadata — The dict containing the record metadata (TTL and
generation).
record — The dict containing the record bins.
If the callback returns False, the client stops reading results.
This examples executes the query and prints results as they are read.
To print the records as they are read, we define a print_result
function.
defprint_result(result_tuple):
print(result_tuple)
print('Foreach function defined.')
Output:
Foreach function defined.
Execute query and foreach
Now we are ready to execute the query by passing in the print_result
that will be called for each record. Based on the data we populated
earlier, we expect 2 results between ages 14 and 25.
Please feel free to play with the “equals” predicate, adding secondary
indexes on other fields, populating more test data to the “null” set and
querying those records, and so on.
Clean up
# Close the connection to the Aerospike cluster
client.close()
print('Connection closed.')
Output:
Connection closed.
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.