forked from griddb/python_client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmultiQuery.py
More file actions
41 lines (32 loc) · 916 Bytes
/
multiQuery.py
File metadata and controls
41 lines (32 loc) · 916 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
37
38
39
40
41
#!/usr/bin/python
import griddb_python as griddb
import sys
factory = griddb.StoreFactory.get_instance()
argv = sys.argv
NumContainer = 10
try:
store = factory.get_store(host=argv[1], port=int(argv[2]), cluster_name=argv[3], username=argv[4], password=argv[5])
print("[MultiGet S]")
listCon = []
listQuery = []
for i in range(NumContainer):
container = store.get_container("container" + str(i))
if container == None:
print("container: None")
listCon.append(container)
query = container.query("select * where count=10")
if query == None:
print("query: None")
listQuery.append(query)
store.fetch_all(listQuery)
for q in listQuery:
rs = q.get_row_set()
while rs.has_next():
row = rs.next()
print(row)
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))