forked from griddb/python_client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmultiGet.py
More file actions
36 lines (27 loc) · 866 Bytes
/
multiGet.py
File metadata and controls
36 lines (27 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/python
import griddb_python as griddb
import sys
factory = griddb.StoreFactory.get_instance()
argv = sys.argv
NumContainer = 10
NumRow = 2
try:
gridstore = factory.get_store(host=argv[1], port=int(argv[2]), cluster_name=argv[3], username=argv[4], password=argv[5])
print("[MultiGet S]")
predEntry = {}
for i in range(NumContainer):
keys = []
pred = gridstore.create_row_key_predicate(griddb.Type.STRING)
for j in range(NumRow):
keys.append("name" + str(j))
pred.set_distinct_keys(keys)
predEntry.update({"container" + str(i): pred})
resultDict = gridstore.multi_get(predEntry)
for containerName, rows in resultDict.items():
print(containerName, rows)
print("[MultiGet E]")
except griddb.GSException as e:
for i in range(e.get_error_stack_size()):
print("[", i, "]")
print(e.get_error_code(i))
print(e.get_message(i))