We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
pgbenchのページ内に存在する「トランザクション毎のログ処理」の章において、以下の文章の翻訳が間違っています。
timeはトランザクションの合計消費時間をミリ秒単位で示します。
ミリ秒単位で出力されると記載されていますが、実際はマイクロ秒単位で出力されます。
原文は以下のようになっています:
time is the total elapsed transaction time in microseconds,
またpgbench.cを確認したところ、INSTR_TIME_GET_MICROSEC()を用いてトランザクション毎のレイテンシを計算しています(3565行目あたり)。
pgbench.c
INSTR_TIME_GET_MICROSEC()
上記文章で「ミリ秒」としているところを「マイクロ秒」に変更してください。
The text was updated successfully, but these errors were encountered:
修正 pgsql-jp#1712
0c72f07
1712で指摘された箇所の修正です。
報告ありがとうございます。 #1714 で修正を送りました。
Sorry, something went wrong.
Merge pull request #1714 from noborus/fix-1712-microseconds
6559b61
修正 #1712
No branches or pull requests
重要度: 低
問題点
pgbenchのページ内に存在する「トランザクション毎のログ処理」の章において、以下の文章の翻訳が間違っています。
ミリ秒単位で出力されると記載されていますが、実際はマイクロ秒単位で出力されます。
背景
原文は以下のようになっています:
また
pgbench.c
を確認したところ、INSTR_TIME_GET_MICROSEC()
を用いてトランザクション毎のレイテンシを計算しています(3565行目あたり)。解決方法
上記文章で「ミリ秒」としているところを「マイクロ秒」に変更してください。
The text was updated successfully, but these errors were encountered: