Skip to content
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

Add Logging per second in database sizing #7

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions WSO2-Identity-Server-Deployment-Guide/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,10 +310,10 @@ Connection pooling does not apply to LDAPS connections (SSL-enabled LDAP connect

Most of our customers found it is difficult to project the sizing for their database. Here is some formula for the initial calculation. However, please note that this will be a rough value for calculating estimation of the database size, the actual values may differ depending on use cases and the database types used.

Assumption is 1 - 3 KB per a transaction, and if the projected **TPS** is **50** for the deployment. Here is the formula for calculating the rough size of the database required for a DAY use.
Assumption is 1 - 3 KB per a Logging request, and if the projected **Logins per Second(LPS)** is **50** for the deployment. Here is the formula for calculating the rough size of the database required for a DAY use.

```
(TPS * ConvertSecondsToDay * KBPerTransaction) / (ConvertKBtoGB)(50 * 3600 * 24 * 2) / (1024 * 1024)
(LPS * ConvertSecondsToDay * KBPerTransaction) / (ConvertKBtoGB)(50 * 3600 * 24 * 2) / (1024 * 1024)
8 GB per Day
```

Expand Down