-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
10 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -1,13 +1,23 @@ | ||
# Noisia | ||
Harmful workload generator for PostgreSQL. | ||
- idle transactions | ||
- rollbacks | ||
- waiting transactions | ||
- deadlocks | ||
- see built-in help for more runtime options. | ||
# Noisia | ||
|
||
**ATTENTION: Use only for testing purposes, don't execute against production, reckless usage might cause problems.** | ||
**Harmful workload generator for PostgreSQL.** | ||
|
||
--- | ||
#### TODO | ||
- temporary files | ||
|
||
Supported workloads: | ||
- `idle transactions` - transactions that do nothing during its lifetime. | ||
|
||
- `rollbacks` - transactions performed some work but rolled back in the end. | ||
|
||
- `waiting transactions` - transaction locked by other transactions and thus waiting. | ||
|
||
- `deadlocks` - simultaneous transactions where each hold locks that the other transactions wants. | ||
|
||
- `temporary files` - queries that produce on-disk temporary files due to lack of `work_mem`. | ||
|
||
- ...see built-in help for more runtime options. | ||
|
||
--- | ||
**ATTENTION: Use only for testing purposes, don't execute against production, reckless usage will cause problems.** | ||
|
||
**DISCLAIMER: THIS SOFTWARE PROVIDED AS-IS WITH NO CARES AND GUARANTEES RELATED TO YOU DATABASES. USE AT YOUR OWN RISK.** |