forked from gridgain/python-thin-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathread_binary.py
More file actions
131 lines (119 loc) · 5.4 KB
/
Copy pathread_binary.py
File metadata and controls
131 lines (119 loc) · 5.4 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#
# Copyright 2022 GridGain Systems, Inc. and Contributors.
#
# Licensed under the GridGain Community Edition License (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.gridgain.com/products/software/community-edition/gridgain-community-edition-license
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
from pprint import pprint
from helpers.converters import obj_to_dict
from helpers.sql_helper import TableNames, Query, TestData
from pygridgain import Client
from pygridgain.datatypes.prop_codes import PROP_NAME, PROP_QUERY_ENTITIES
# establish connection
client = Client()
with client.connect('127.0.0.1', 10800):
# create tables
for query in [
Query.COUNTRY_CREATE_TABLE,
Query.CITY_CREATE_TABLE,
Query.LANGUAGE_CREATE_TABLE,
]:
client.sql(query)
# create indices
for query in [Query.CITY_CREATE_INDEX, Query.LANGUAGE_CREATE_INDEX]:
client.sql(query)
# load data
for row in TestData.COUNTRY:
client.sql(Query.COUNTRY_INSERT, query_args=row)
for row in TestData.CITY:
client.sql(Query.CITY_INSERT, query_args=row)
for row in TestData.LANGUAGE:
client.sql(Query.LANGUAGE_INSERT, query_args=row)
# examine the storage
result = client.get_cache_names()
pprint(result)
# ['SQL_PUBLIC_CITY', 'SQL_PUBLIC_COUNTRY', 'SQL_PUBLIC_COUNTRYLANGUAGE']
city_cache = client.get_or_create_cache('SQL_PUBLIC_CITY')
pprint(city_cache.settings[PROP_NAME])
# 'SQL_PUBLIC_CITY'
pprint(city_cache.settings[PROP_QUERY_ENTITIES])
# [{'field_name_aliases': [{'alias': 'DISTRICT', 'field_name': 'DISTRICT'},
# {'alias': 'POPULATION', 'field_name': 'POPULATION'},
# {'alias': 'COUNTRYCODE', 'field_name': 'COUNTRYCODE'},
# {'alias': 'ID', 'field_name': 'ID'},
# {'alias': 'NAME', 'field_name': 'NAME'}],
# 'key_field_name': None,
# 'key_type_name': 'SQL_PUBLIC_CITY_081f37cc8ac72b10f08ab1273b744497_KEY',
# 'query_fields': [{'default_value': None,
# 'is_key_field': True,
# 'is_notnull_constraint_field': False,
# 'name': 'ID',
# 'precision': -1,
# 'scale': -1,
# 'type_name': 'java.lang.Integer'},
# {'default_value': None,
# 'is_key_field': False,
# 'is_notnull_constraint_field': False,
# 'name': 'NAME',
# 'precision': 35,
# 'scale': -1,
# 'type_name': 'java.lang.String'},
# {'default_value': None,
# 'is_key_field': True,
# 'is_notnull_constraint_field': False,
# 'name': 'COUNTRYCODE',
# 'precision': 3,
# 'scale': -1,
# 'type_name': 'java.lang.String'},
# {'default_value': None,
# 'is_key_field': False,
# 'is_notnull_constraint_field': False,
# 'name': 'DISTRICT',
# 'precision': 20,
# 'scale': -1,
# 'type_name': 'java.lang.String'},
# {'default_value': None,
# 'is_key_field': False,
# 'is_notnull_constraint_field': False,
# 'name': 'POPULATION',
# 'precision': -1,
# 'scale': -1,
# 'type_name': 'java.lang.Integer'}],
# 'query_indexes': [],
# 'table_name': 'CITY',
# 'value_field_name': None,
# 'value_type_name': 'SQL_PUBLIC_CITY_081f37cc8ac72b10f08ab1273b744497'}]
print('-' * 20)
with city_cache.scan() as cursor:
for line in next(cursor):
pprint(obj_to_dict(line))
# {'COUNTRYCODE': 'USA',
# 'ID': 3793,
# 'type_name': 'SQL_PUBLIC_CITY_081f37cc8ac72b10f08ab1273b744497_KEY'}
# {'DISTRICT': 'New York',
# 'NAME': 'New York',
# 'POPULATION': 8008278,
# 'type_name': 'SQL_PUBLIC_CITY_081f37cc8ac72b10f08ab1273b744497'}
print('-' * 20)
with client.sql('SELECT _KEY, _VAL FROM CITY WHERE ID = ?', query_args=[1890]) as cursor:
for line in next(cursor):
pprint(obj_to_dict(line))
# {'COUNTRYCODE': 'CHN',
# 'ID': 1890,
# 'type_name': 'SQL_PUBLIC_CITY_081f37cc8ac72b10f08ab1273b744497_KEY'}
# {'DISTRICT': 'Shanghai',
# 'NAME': 'Shanghai',
# 'POPULATION': 9696300,
# 'type_name': 'SQL_PUBLIC_CITY_081f37cc8ac72b10f08ab1273b744497'}
# clean up
for table_name in TableNames:
result = client.sql(Query.DROP_TABLE.format(table_name.value))