-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgenerate_schain_allocation.py
193 lines (153 loc) · 6.81 KB
/
generate_schain_allocation.py
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# -*- coding: utf-8 -*-
#
# This file is part of SKALE.py
#
# Copyright (C) 2021-Present SKALE Labs
#
# SKALE.py is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# SKALE.py is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with SKALE.py. If not, see <https://www.gnu.org/licenses/>.
import os
import yaml
import math
def calc_disk_factor(divider, decimals=3):
factor = 10 ** decimals
disk_factor_raw = 1 - (1 / (divider + 1))
return math.floor(disk_factor_raw * factor) / factor
LARGE_DIVIDER = 1
MEDIUM_DIVIDER = 8
TEST_DIVIDER = 8
SMALL_DIVIDER = 128
VOLUME_CHUNK = 512 * SMALL_DIVIDER
DISK_FACTOR = calc_disk_factor(MEDIUM_DIVIDER)
class Alloc:
def to_dict(self):
return self.values
class ResourceAlloc(Alloc):
def __init__(self, value, fractional=False):
self.values = {
'test4': value / TEST_DIVIDER,
'test': value / TEST_DIVIDER,
'small': value / SMALL_DIVIDER,
'medium': value / MEDIUM_DIVIDER,
'large': value / LARGE_DIVIDER
}
if not fractional:
for k in self.values:
self.values[k] = int(self.values[k])
class DiskResourceAlloc(Alloc):
def __init__(self, value, fractional=False):
self.values = {
'test4': value / TEST_DIVIDER,
'test': value / TEST_DIVIDER,
'small': value / SMALL_DIVIDER,
'medium': value / MEDIUM_DIVIDER,
'large': value / LARGE_DIVIDER
}
if not fractional:
for k in self.values:
self.values[k] = int(self.values[k])
class SChainVolumeAlloc(Alloc):
def __init__(self, disk_alloc_dict: dict, proportions: dict):
self.values = {}
for size_name in disk_alloc_dict:
self.values[size_name] = {}
for key, value in proportions.items():
lim = int(value * disk_alloc_dict[size_name])
self.values[size_name][key] = lim
class LevelDBAlloc(Alloc):
def __init__(self, disk_alloc_dict: dict, proportions: dict):
self.values = {}
for size_name in disk_alloc_dict:
self.values[size_name] = {}
for key, value in proportions.items():
lim = int(value * disk_alloc_dict[size_name]['max_skaled_leveldb_storage_bytes']) # noqa
self.values[size_name][key] = lim
def calculate_free_disk_space(disk_size: int) -> int:
return int(disk_size * DISK_FACTOR) // VOLUME_CHUNK * VOLUME_CHUNK
def calculate_shared_space_size(disk_size: int, shared_space_coefficient: float) -> int:
return int(disk_size * (1 - DISK_FACTOR) * shared_space_coefficient) // VOLUME_CHUNK * VOLUME_CHUNK # noqa
def safe_load_yaml(filepath):
with open(filepath, 'r') as stream:
try:
return yaml.safe_load(stream)
except yaml.YAMLError as exc:
print(exc)
def save_yaml(filepath, data, comments=None):
with open(filepath, 'w') as outfile:
if comments:
outfile.write(comments)
yaml.dump(data, outfile, default_flow_style=False)
def generate_disk_alloc(configs: dict,
env_type_name: str,
schain_allocation: dict) -> DiskResourceAlloc:
"""Generates disk allocation for the provided env type"""
disk_size_bytes = configs['envs'][env_type_name]['server']['disk'] # noqa
free_disk_space = calculate_free_disk_space(disk_size_bytes)
disk_alloc = DiskResourceAlloc(free_disk_space)
schain_allocation[env_type_name]['disk'] = disk_alloc.to_dict()
return disk_alloc
def generate_volume_alloc(configs: dict, env_type_name: str,
schain_allocation: dict,
disk_alloc: ResourceAlloc) -> SChainVolumeAlloc:
"""Generates volume partitioning """
"""for the provided env type and disk allocation"""
proportions = configs['common']['schain']['volume_limits']
volume_alloc = SChainVolumeAlloc(disk_alloc.to_dict(), proportions)
schain_allocation[env_type_name]['volume_limits'] = volume_alloc.to_dict()
return volume_alloc
def generate_leveldb_alloc(configs: dict,
env_type_name: str, schain_allocation: dict,
volume_alloc: SChainVolumeAlloc) -> LevelDBAlloc:
"""Generates LevelDB partitioning """
"""for the provided env type and volume partitioning"""
leveldb_proportions = configs['common']['schain']['leveldb_limits']
leveldb_alloc = LevelDBAlloc(volume_alloc.to_dict(), leveldb_proportions)
schain_allocation[env_type_name]['leveldb_limits'] = leveldb_alloc.to_dict()
return leveldb_alloc
def generate_shared_space_value(
configs: dict,
env_type_name: str,
schain_allocation: dict
) -> int:
disk_size_bytes = configs['envs'][env_type_name]['server']['disk'] # noqa
shared_space_coefficient = configs['common']['schain']['shared_space_coefficient'] # noqa
shared_space_size_bytes = calculate_shared_space_size(disk_size_bytes, shared_space_coefficient)
schain_allocation[env_type_name]['shared_space'] = shared_space_size_bytes # noqa
return shared_space_size_bytes
def generate_schain_allocation(skale_node_path: str) -> None:
configs_filepath = os.path.join(skale_node_path, 'environment_params.yaml')
schain_allocation_filepath = os.path.join(
skale_node_path, 'schain_allocation.yml'
)
configs = safe_load_yaml(configs_filepath)
schain_allocation = {}
for env_type_name in configs['envs']:
schain_allocation[env_type_name] = {}
disk_alloc = generate_disk_alloc(
configs, env_type_name, schain_allocation)
volume_alloc = generate_volume_alloc(
configs, env_type_name, schain_allocation, disk_alloc)
generate_leveldb_alloc(
configs, env_type_name, schain_allocation, volume_alloc)
generate_shared_space_value(
configs, env_type_name, schain_allocation)
save_yaml(
filepath=schain_allocation_filepath,
data=schain_allocation,
comments='# DO NOT MODIFY THIS FILE MANUALLY!\n# Use generate_schain_allocation.py script from helper-scripts repo.\n\n' # noqa
)
print('Generated schain_allocation.yml, '
f'results saved to {schain_allocation_filepath}')
if __name__ == "__main__":
skale_node_path = os.environ['SKALE_NODE_PATH']
generate_schain_allocation(skale_node_path)