-
Notifications
You must be signed in to change notification settings - Fork 527
SNOW-1572311:add stress test #2097
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 4 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
f7d47d3
placeholder
sfc-gh-yuwang 5f03f22
save change
sfc-gh-yuwang 68d7f35
stress test
sfc-gh-yuwang 62d7927
stress test
sfc-gh-yuwang 02c0dfb
update
sfc-gh-yuwang cfc8290
update
sfc-gh-yuwang 7c58752
address comment
sfc-gh-yuwang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| ## quick start for performance testing | ||
|
|
||
|
|
||
| ### setup | ||
|
|
||
| note: you need to put your own credentials into parameters.py | ||
|
|
||
| ```bash | ||
| git clone [email protected]:snowflakedb/snowflake-connector-python.git | ||
| cd snowflake-connector-python/test/stress | ||
| pip install -r dev_requirements.txt | ||
| touch parameters.py # set your own connection parameters | ||
| ``` | ||
|
|
||
| ### run e2e perf test | ||
|
|
||
| This test will run query against snowflake. update the script to prepare the data and run the test. | ||
|
|
||
| ```python | ||
| python e2e_iterator.py | ||
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| # | ||
| # Copyright (c) 2012-2023 Snowflake Computing Inc. All rights reserved. | ||
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| psutil | ||
| ../.. | ||
| matplotlib | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,322 @@ | ||
| # | ||
| # Copyright (c) 2012-2023 Snowflake Computing Inc. All rights reserved. | ||
| # | ||
|
|
||
| """ | ||
| This script is used for end-to-end performance test for asyncio python connector. | ||
|
|
||
| 1. select and consume rows of different types for 3 hr, (very large amount of data 10m rows) | ||
|
|
||
| - goal: timeout/retry/refresh token | ||
| - fetch_one/fetch_many/fetch_pandas_batches | ||
| - validate the fetched data is accurate | ||
|
|
||
| 2. put file | ||
| - many small files | ||
| - one large file | ||
| - verify files(etc. file amount, sha256 signature) | ||
|
|
||
| 3. get file | ||
| - many small files | ||
| - one large file | ||
| - verify files (etc. file amount, sha256 signature) | ||
| """ | ||
|
|
||
| import argparse | ||
| import asyncio | ||
| import csv | ||
| import os.path | ||
|
|
||
| import util as stress_util | ||
| from util import task_decorator | ||
|
|
||
| from parameters import CONNECTION_PARAMETERS | ||
| from snowflake.connector.aio import SnowflakeConnection | ||
|
|
||
| stress_util.print_to_console = False | ||
| can_draw = True | ||
| try: | ||
| import matplotlib.pyplot as plt | ||
| except ImportError: | ||
| print("graphs can not be drawn as matplotlib is not installed.") | ||
| can_draw = False | ||
|
|
||
|
|
||
| async def prepare_data(cursor, row_count=100, test_table_name="TEMP_ARROW_TEST_TABLE"): | ||
| await cursor.execute( | ||
| f"""\ | ||
| CREATE OR REPLACE TEMP TABLE {test_table_name} ( | ||
| C1 BIGINT, C2 BINARY, C3 BOOLEAN, C4 CHAR, C5 CHARACTER, C6 DATE, C7 DATETIME, C8 DEC(12,3), | ||
| C9 DECIMAL(12,3), C10 DOUBLE, C11 FLOAT, C12 INT, C13 INTEGER, C14 NUMBER, C15 REAL, C16 BYTEINT, | ||
| C17 SMALLINT, C18 STRING, C19 TEXT, C20 TIME, C21 TIMESTAMP, C22 TIMESTAMP_TZ, C23 TIMESTAMP_LTZ, | ||
| C24 TIMESTAMP_NTZ, C25 TINYINT, C26 VARBINARY, C27 VARCHAR); | ||
| """ | ||
| ) | ||
|
|
||
| for _ in range(row_count): | ||
| await cursor.execute( | ||
| f"""\ | ||
| INSERT INTO {test_table_name} SELECT | ||
| 123456, | ||
| TO_BINARY('HELP', 'UTF-8'), | ||
| TRUE, | ||
| 'a', | ||
| 'b', | ||
| '2023-07-18', | ||
| '2023-07-18 12:51:00', | ||
| 984.28, | ||
| 268.35, | ||
| 123.456, | ||
| 738.132, | ||
| 6789, | ||
| 23456, | ||
| 12583, | ||
| 513.431, | ||
| 10, | ||
| 9, | ||
| 'abc456', | ||
| 'def123', | ||
| '12:34:56', | ||
| '2021-01-01 00:00:00 +0000', | ||
| '2021-01-01 00:00:00 +0000', | ||
| '2021-01-01 00:00:00 +0000', | ||
| '2021-01-01 00:00:00 +0000', | ||
| 1, | ||
| TO_BINARY('HELP', 'UTF-8'), | ||
| 'vxlmls!21321#@!#!' | ||
| ; | ||
| """ | ||
| ) | ||
|
|
||
|
|
||
| async def prepare_file(cursor, stage_location): | ||
| data = { | ||
| "C1": 123456, | ||
| "C2": "SEVMUA==", | ||
| "C3": True, | ||
| "C4": "a", | ||
| "C5": "b", | ||
| "C6": "2023-07-18", | ||
| "C7": "2023-07-18 12:51:00", | ||
| "C8": 984.28, | ||
| "C9": 268.35, | ||
| "C10": 123.456, | ||
| "C11": 738.132, | ||
| "C12": 6789, | ||
| "C13": 23456, | ||
| "C14": 12583, | ||
| "C15": 513.431, | ||
| "C16": 10, | ||
| "C17": 9, | ||
| "C18": "abc456", | ||
| "C19": "def123", | ||
| "C20": "12:34:56", | ||
| "C21": "2021-01-01 00:00:00 +0000", | ||
| "C22": "2021-01-01 00:00:00 +0000", | ||
| "C23": "2021-01-01 00:00:00 +0000", | ||
| "C24": "2021-01-01 00:00:00 +0000", | ||
| "C25": 1, | ||
| "C26": "SEVMUA==", | ||
| "C27": "vxlmls!21321#@!#!", | ||
| } | ||
| if not os.path.exists("../stress_test_data/single_chunk_file_1.csv"): | ||
| with open("../stress_test_data/single_chunk_file_1.csv", "w") as f: | ||
| writer = csv.writer(f) | ||
| writer.writerow(data.keys()) | ||
| writer.writerow(data.values()) | ||
| if not os.path.exists("../stress_test_data/single_chunk_file_2.csv"): | ||
| with open("../stress_test_data/single_chunk_file_2.csv", "w") as f: | ||
| writer = csv.writer(f) | ||
| writer.writerow(data.keys()) | ||
| writer.writerow(data.values()) | ||
| if not os.path.exists("../stress_test_data/multiple_chunks_file_1.csv"): | ||
| with open("../stress_test_data/multiple_chunks_file_1.csv", "w") as f: | ||
| writer = csv.writer(f) | ||
| writer.writerow(data.keys()) | ||
| for _ in range(3000000): | ||
| writer.writerow(data.values()) | ||
| if not os.path.exists("../stress_test_data/multiple_chunks_file_2.csv"): | ||
| with open("../stress_test_data/multiple_chunks_file_2.csv", "w") as f: | ||
| writer = csv.writer(f) | ||
| writer.writerow(data.keys()) | ||
| for _ in range(3000000): | ||
| writer.writerow(data.values()) | ||
| res = await cursor.execute( | ||
| f"PUT file://../stress_test_data/multiple_chunks_file_* {stage_location} OVERWRITE = TRUE" | ||
| ) | ||
| print(f"test file uploaded to {stage_location}", await res.fetchall()) | ||
| await cursor.execute( | ||
| f"PUT file://../stress_test_data/single_chunk_file_* {stage_location} OVERWRITE = TRUE" | ||
| ) | ||
| print(f"test file uploaded to {stage_location}", await res.fetchall()) | ||
|
|
||
|
|
||
| async def task_fetch_one_row(cursor, table_name, row_count_limit=50000): | ||
| ret = await ( | ||
| await cursor.execute(f"select * from {table_name} limit {row_count_limit}") | ||
| ).fetchone() | ||
| print(ret) | ||
sfc-gh-yuwang marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
|
|
||
| async def task_fetch_rows(cursor, table_name, row_count_limit=50000): | ||
| ret = await ( | ||
| await cursor.execute(f"select * from {table_name} limit {row_count_limit}") | ||
| ).fetchall() | ||
| for _ in ret: | ||
| pass | ||
|
|
||
|
|
||
| async def task_fetch_arrow_batches(cursor, table_name, row_count_limit=50000): | ||
| ret = await ( | ||
| await cursor.execute(f"select * from {table_name} limit {row_count_limit}") | ||
| ).fetch_arrow_batches() | ||
| for _ in ret: | ||
| pass | ||
|
|
||
|
|
||
| async def put_file(cursor, stage_location, is_multiple, is_multi_chunk_file): | ||
| file_name = "multiple_chunks_file_" if is_multi_chunk_file else "single_chunk_file_" | ||
| source_file = ( | ||
| f"file://../stress_test_data/{file_name}*" | ||
| if is_multiple | ||
| else f"file://../stress_test_data/{file_name}1.csv" | ||
| ) | ||
| sql = f"PUT {source_file} {stage_location} OVERWRITE = TRUE" | ||
| res = await cursor.execute(sql) | ||
| print(await res.fetchall()) | ||
|
|
||
|
|
||
| async def get_file(cursor, stage_location, is_multiple, is_multi_chunk_file): | ||
| file_name = "multiple_chunks_file_" if is_multi_chunk_file else "single_chunk_file_" | ||
| stage_file = ( | ||
| f"{stage_location}" if is_multiple else f"{stage_location}{file_name}1.csv" | ||
| ) | ||
| sql = ( | ||
| f"GET {stage_file} file://../stress_test_data/ PATTERN = '.*{file_name}.*'" | ||
| if is_multiple | ||
| else f"GET {stage_file} file://../stress_test_data/" | ||
| ) | ||
| res = await cursor.execute(sql) | ||
| print(await res.fetchall()) | ||
|
|
||
|
|
||
| def execute_task(task, cursor, table_name, iteration_cnt): | ||
| for _ in range(iteration_cnt): | ||
| task(cursor, table_name) | ||
sfc-gh-yuwang marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
|
|
||
| async def async_wrapper(args): | ||
| conn = SnowflakeConnection( | ||
| user=CONNECTION_PARAMETERS["user"], | ||
| password=CONNECTION_PARAMETERS["password"], | ||
| host=CONNECTION_PARAMETERS["host"], | ||
| account=CONNECTION_PARAMETERS["account"], | ||
| database=CONNECTION_PARAMETERS["database"], | ||
| schema=CONNECTION_PARAMETERS["schema"], | ||
| warehouse=CONNECTION_PARAMETERS["warehouse"], | ||
| ) | ||
| await conn.connect() | ||
| cursor = conn.cursor() | ||
|
|
||
| # prepare file | ||
| await prepare_file(cursor, args.stage_location) | ||
| await prepare_data(cursor, args.row_count, args.test_table_name) | ||
|
|
||
| perf_record_file = "stress_perf_record" | ||
| memory_record_file = "stress_memory_record" | ||
| with open(perf_record_file, "w") as perf_file, open( | ||
| memory_record_file, "w" | ||
| ) as memory_file: | ||
| with task_decorator(perf_file, memory_file): | ||
| for _ in range(args.iteration_cnt): | ||
| if args.test_function == "FETCH_ONE_ROW": | ||
| await task_fetch_one_row(cursor, args.test_table_name) | ||
| if args.test_function == "FETCH_ROWS": | ||
| await task_fetch_rows(cursor, args.test_table_name) | ||
| if args.test_function == "FETCH_ARROW_BATCHES": | ||
| await task_fetch_arrow_batches(cursor, args.test_table_name) | ||
| if args.test_function == "GET_FILE": | ||
| await get_file( | ||
| cursor, | ||
| args.stage_location, | ||
| args.is_multiple_file, | ||
| args.is_multiple_chunks_file, | ||
| ) | ||
| if args.test_function == "PUT_FILE": | ||
| await put_file( | ||
| cursor, | ||
| args.stage_location, | ||
| args.is_multiple_file, | ||
| args.is_multiple_chunks_file, | ||
| ) | ||
|
|
||
| if can_draw: | ||
| with open(perf_record_file) as perf_file, open( | ||
| memory_record_file | ||
| ) as memory_file: | ||
| # sample rate | ||
| perf_lines = perf_file.readlines() | ||
| perf_records = [float(line) for line in perf_lines] | ||
|
|
||
| memory_lines = memory_file.readlines() | ||
| memory_records = [float(line) for line in memory_lines] | ||
|
|
||
| plt.plot([i for i in range(len(perf_records))], perf_records) | ||
| plt.title("per iteration execution time") | ||
| plt.show(block=False) | ||
| plt.figure() | ||
| plt.plot([i for i in range(len(memory_records))], memory_records) | ||
| plt.title("memory usage") | ||
| plt.show(block=True) | ||
|
|
||
| await conn.close() | ||
|
|
||
|
|
||
| if __name__ == "__main__": | ||
| parser = argparse.ArgumentParser() | ||
| parser.add_argument( | ||
| "--iteration_cnt", | ||
| type=int, | ||
| default=5000, | ||
| help="how many times to run the test function, default is 5000", | ||
| ) | ||
| parser.add_argument( | ||
| "--row_count", | ||
| type=int, | ||
| default=100, | ||
| help="how man rows of data to insert into the temp test able if test_table_name is not provided", | ||
| ) | ||
| parser.add_argument( | ||
| "--test_table_name", | ||
| type=str, | ||
| default="ARROW_TEST_TABLE", | ||
| help="an existing test table that has data prepared, by default the it looks for 'ARROW_TEST_TABLE'", | ||
| ) | ||
| parser.add_argument( | ||
| "--test_function", | ||
| type=str, | ||
| default="FETCH_ONE_ROW", | ||
| help="function to test, by default it is 'FETCH_ONE_ROW', it can also be 'FETCH_ROWS', 'FETCH_ARROW_BATCHES', 'GET_FILE', 'PUT_FILE'", | ||
| ) | ||
| parser.add_argument( | ||
| "--stage_location", | ||
| type=str, | ||
| default="", | ||
| help="stage location used to store files", | ||
| required=True, | ||
| ) | ||
| parser.add_argument( | ||
| "--is_multiple_file", | ||
| type=str, | ||
| default=True, | ||
| help="transfer multiple file in get or put", | ||
| ) | ||
| parser.add_argument( | ||
| "--is_multiple_chunks_file", | ||
| type=str, | ||
| default=True, | ||
| help="transfer multiple chunks file in get or put", | ||
| ) | ||
| args = parser.parse_args() | ||
|
|
||
| asyncio.run(async_wrapper(args)) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| # | ||
| # Copyright (c) 2012-2023 Snowflake Computing Inc. All rights reserved. | ||
| # | ||
|
|
||
| import time | ||
| from contextlib import contextmanager | ||
|
|
||
| import psutil | ||
|
|
||
| process = psutil.Process() | ||
|
|
||
| SAMPLE_RATE = 10 # record data evey SAMPLE_RATE execution | ||
|
|
||
|
|
||
| @contextmanager | ||
| def task_decorator(perf_file, memory_file): | ||
| count = 0 | ||
|
|
||
| start = time.time() | ||
| yield | ||
| memory_usage = ( | ||
| process.memory_info().rss / 1024 / 1024 | ||
| ) # rss is of unit bytes, we get unit in MB | ||
| period = time.time() - start | ||
| if count % SAMPLE_RATE == 0: | ||
| perf_file.write(str(period) + "\n") | ||
| print(f"execution time {count}") | ||
| print(f"memory usage: {memory_usage} MB") | ||
| print(f"execution time: {period} s") | ||
| memory_file.write(str(memory_usage) + "\n") | ||
| count += 1 | ||
sfc-gh-aling marked this conversation as resolved.
Show resolved
Hide resolved
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.