https://github.com/kmoppel/parallel-leader-participation-test
Test effects of Postgres parallel_leader_participation settings
https://github.com/kmoppel/parallel-leader-participation-test
Last synced: about 1 year ago
JSON representation
Test effects of Postgres parallel_leader_participation settings
- Host: GitHub
- URL: https://github.com/kmoppel/parallel-leader-participation-test
- Owner: kmoppel
- License: mit
- Created: 2025-01-21T08:58:13.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-21T22:33:21.000Z (over 1 year ago)
- Last Synced: 2025-06-10T06:38:09.806Z (about 1 year ago)
- Language: Shell
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# parallel-leader-participation-test
Test effects of Postgres parallel_leader_participation settings
# Prerequisites
* AWS CLI installed / configured
* [pg-spot-operator](https://github.com/pg-spot-ops/pg-spot-operator) Python CLI installed
* Ansible installed
# Running the test
```
./launch_vms_and_run_test.sh run1-local eu-south-2 local 100
```
# Analyzing the results
Load the pg_stat_statements dump files from `results` folder into a local Postgres instance:
```
for x in `ls -1 results/*.dump` ; do psql -f $x ; done
```
A `pgss_results` table will be created. See the queries from `analyze_results.sql` as a base line.