Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions test/stress/aio/README.md
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
```
3 changes: 3 additions & 0 deletions test/stress/aio/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#
# Copyright (c) 2012-2023 Snowflake Computing Inc. All rights reserved.
#
6 changes: 6 additions & 0 deletions test/stress/aio/dev_requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
psutil
../..
matplotlib
aiohttp
pandas
asyncio
Loading
Loading