2022-06-23 02:20:56 +00:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
2022-08-11 13:56:39 +00:00
|
|
|
import argparse
|
2022-06-23 02:20:56 +00:00
|
|
|
import json
|
2022-08-11 13:56:39 +00:00
|
|
|
import os
|
|
|
|
import shlex
|
2022-06-23 02:20:56 +00:00
|
|
|
from concurrent.futures import ProcessPoolExecutor
|
2022-08-11 13:56:39 +00:00
|
|
|
from subprocess import check_output, CalledProcessError, STDOUT
|
2022-06-23 02:20:56 +00:00
|
|
|
|
2022-08-11 13:56:39 +00:00
|
|
|
parser = argparse.ArgumentParser()
|
2022-06-23 02:20:56 +00:00
|
|
|
parser.add_argument('--size', help='Upload objects size in kb')
|
|
|
|
parser.add_argument('--containers', help='Number of containers to create')
|
|
|
|
parser.add_argument('--out', help='JSON file with output')
|
|
|
|
parser.add_argument('--preload_obj', help='Number of pre-loaded objects')
|
2022-08-11 13:56:39 +00:00
|
|
|
parser.add_argument(
|
|
|
|
"--policy",
|
|
|
|
help="Container placement policy",
|
|
|
|
default="REP 1 IN X CBF 1 SELECT 1 FROM * AS X"
|
|
|
|
)
|
2022-06-23 02:20:56 +00:00
|
|
|
parser.add_argument('--endpoint', help='Node address')
|
|
|
|
parser.add_argument('--update', help='Save existed containers')
|
|
|
|
|
2022-08-11 13:56:39 +00:00
|
|
|
args = parser.parse_args()
|
2022-06-23 02:20:56 +00:00
|
|
|
print(args)
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
container_list = []
|
|
|
|
objects_struct = []
|
2022-10-25 14:43:20 +00:00
|
|
|
payload_filepath = '/tmp/data_file'
|
2022-06-23 02:20:56 +00:00
|
|
|
|
|
|
|
if args.update:
|
|
|
|
# Open file
|
|
|
|
with open(args.out) as f:
|
|
|
|
data_json = json.load(f)
|
|
|
|
container_list = data_json['containers']
|
|
|
|
else:
|
|
|
|
print(f"Create containers: {args.containers}")
|
|
|
|
with ProcessPoolExecutor(max_workers=10) as executor:
|
|
|
|
containers_runs = {executor.submit(create_container): _ for _ in range(int(args.containers))}
|
|
|
|
|
|
|
|
for run in containers_runs:
|
|
|
|
if run.result() is not None:
|
2022-10-25 14:43:20 +00:00
|
|
|
container_list.append(run.result())
|
2022-06-23 02:20:56 +00:00
|
|
|
|
|
|
|
print("Create containers: Completed")
|
|
|
|
|
|
|
|
print(f" > Containers: {container_list}")
|
2022-10-26 19:30:55 +00:00
|
|
|
if not container_list:
|
|
|
|
return
|
2022-06-23 02:20:56 +00:00
|
|
|
|
|
|
|
print(f"Upload objects to each container: {args.preload_obj} ")
|
|
|
|
random_payload(payload_filepath)
|
|
|
|
print(" > Create random payload: Completed")
|
|
|
|
|
|
|
|
for container in container_list:
|
|
|
|
print(f" > Upload objects for container {container}")
|
|
|
|
with ProcessPoolExecutor(max_workers=50) as executor:
|
2022-10-25 14:43:20 +00:00
|
|
|
objects_runs = {executor.submit(upload_object, container, payload_filepath): _ for _ in
|
|
|
|
range(int(args.preload_obj))}
|
2022-06-23 02:20:56 +00:00
|
|
|
|
|
|
|
for run in objects_runs:
|
|
|
|
if run.result() is not None:
|
2022-10-25 14:43:20 +00:00
|
|
|
objects_struct.append({'container': container, 'object': run.result()})
|
2022-06-23 02:20:56 +00:00
|
|
|
print(f" > Upload objects for container {container}: Completed")
|
|
|
|
|
|
|
|
print("Upload objects to each container: Completed")
|
|
|
|
|
2022-10-25 14:43:20 +00:00
|
|
|
data = {'containers': container_list, 'objects': objects_struct, 'obj_size': args.size + " Kb"}
|
2022-06-23 02:20:56 +00:00
|
|
|
|
2022-10-25 15:01:08 +00:00
|
|
|
with open(args.out, 'w+') as f:
|
2022-10-25 14:43:20 +00:00
|
|
|
json.dump(data, f, ensure_ascii=False)
|
2022-06-23 02:20:56 +00:00
|
|
|
|
|
|
|
print(f"Result:")
|
|
|
|
print(f" > Total Containers has been created: {len(container_list)}.")
|
|
|
|
print(f" > Total Objects has been created: {len(objects_struct)}.")
|
|
|
|
|
|
|
|
|
|
|
|
def random_payload(payload_filepath):
|
2022-10-25 15:01:08 +00:00
|
|
|
with open('%s' % payload_filepath, 'w+b') as fout:
|
2022-10-25 14:43:20 +00:00
|
|
|
fout.write(os.urandom(1024 * int(args.size)))
|
2022-06-23 02:20:56 +00:00
|
|
|
|
2022-08-11 13:56:39 +00:00
|
|
|
|
2022-06-23 02:20:56 +00:00
|
|
|
def execute_cmd(cmd_line):
|
|
|
|
args = shlex.split(cmd_line)
|
|
|
|
output = ""
|
|
|
|
try:
|
|
|
|
output = check_output(args, stderr=STDOUT).decode()
|
2022-10-25 14:43:20 +00:00
|
|
|
success = True
|
2022-06-23 02:20:56 +00:00
|
|
|
|
|
|
|
except CalledProcessError as e:
|
|
|
|
output = e.output.decode()
|
|
|
|
success = False
|
|
|
|
|
|
|
|
return output, success
|
|
|
|
|
|
|
|
|
|
|
|
def create_container():
|
2022-10-17 11:42:59 +00:00
|
|
|
cmd_line = f"neofs-cli --rpc-endpoint {args.endpoint} container create -g --policy '{args.policy}' --basic-acl public-read-write --await"
|
2022-09-02 19:23:33 +00:00
|
|
|
output, success = execute_cmd(cmd_line)
|
2022-06-23 02:20:56 +00:00
|
|
|
|
|
|
|
if not success:
|
2022-10-25 15:01:08 +00:00
|
|
|
print(f" > Container has not been created:\n{output}")
|
2022-06-23 02:20:56 +00:00
|
|
|
else:
|
|
|
|
try:
|
2022-09-02 19:23:33 +00:00
|
|
|
fst_str = output.split('\n')[0]
|
2022-06-23 02:20:56 +00:00
|
|
|
except Exception:
|
2022-09-02 19:23:33 +00:00
|
|
|
print(f"Got empty output: {output}")
|
2022-10-25 14:43:20 +00:00
|
|
|
return
|
2022-06-23 02:20:56 +00:00
|
|
|
splitted = fst_str.split(": ")
|
|
|
|
if len(splitted) != 2:
|
|
|
|
raise ValueError(f"no CID was parsed from command output: \t{fst_str}")
|
|
|
|
return splitted[1]
|
|
|
|
|
|
|
|
|
|
|
|
def upload_object(container, payload_filepath):
|
|
|
|
object_name = ""
|
|
|
|
cmd_line = f"neofs-cli --rpc-endpoint {args.endpoint} object put -g --file {payload_filepath} --cid {container} --no-progress"
|
|
|
|
out, success = execute_cmd(cmd_line)
|
|
|
|
|
|
|
|
if not success:
|
2022-10-25 15:01:08 +00:00
|
|
|
print(f" > Object {object_name} has not been uploaded:\n{out}")
|
2022-06-23 02:20:56 +00:00
|
|
|
else:
|
|
|
|
try:
|
|
|
|
# taking second string from command output
|
|
|
|
snd_str = out.split('\n')[1]
|
|
|
|
except:
|
|
|
|
print(f"Got empty input: {out}")
|
2022-10-25 14:43:20 +00:00
|
|
|
return
|
2022-06-23 02:20:56 +00:00
|
|
|
splitted = snd_str.split(": ")
|
|
|
|
if len(splitted) != 2:
|
|
|
|
raise Exception(f"no OID was parsed from command output: \t{snd_str}")
|
|
|
|
return splitted[1]
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|