Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
82e42979
Commit
82e42979
authored
12 years ago
by
Simon Riggs
Browse files
Options
Downloads
Patches
Plain Diff
Add microsecs/op display to pg_test_fsync utility
e.g. fsync 2103.613 ops/sec ( 475 microsecs/op) Peter Geoghegan
parent
bc433317
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
contrib/pg_test_fsync/pg_test_fsync.c
+4
-2
4 additions, 2 deletions
contrib/pg_test_fsync/pg_test_fsync.c
doc/src/sgml/pgtestfsync.sgml
+8
-5
8 additions, 5 deletions
doc/src/sgml/pgtestfsync.sgml
with
12 additions
and
7 deletions
contrib/pg_test_fsync/pg_test_fsync.c
+
4
−
2
View file @
82e42979
...
...
@@ -25,7 +25,8 @@
#define LABEL_FORMAT " %-32s"
#define NA_FORMAT "%18s"
#define OPS_FORMAT "%9.3f ops/sec"
#define OPS_FORMAT "%9.3f ops/sec (%6.f microsecs/op)"
#define USECS_SEC 1000000
/* These are macros to avoid timing the function call overhead. */
#ifndef WIN32
...
...
@@ -568,8 +569,9 @@ print_elapse(struct timeval start_t, struct timeval stop_t, int ops)
double
total_time
=
(
stop_t
.
tv_sec
-
start_t
.
tv_sec
)
+
(
stop_t
.
tv_usec
-
start_t
.
tv_usec
)
*
0
.
000001
;
double
per_second
=
ops
/
total_time
;
double
avg_op_time_us
=
(
total_time
/
ops
)
*
USECS_SEC
;
printf
(
OPS_FORMAT
"
\n
"
,
per_second
);
printf
(
OPS_FORMAT
"
\n
"
,
per_second
,
avg_op_time_us
);
}
#ifndef WIN32
...
...
This diff is collapsed.
Click to expand it.
doc/src/sgml/pgtestfsync.sgml
+
8
−
5
View file @
82e42979
...
...
@@ -30,11 +30,14 @@
<application>pg_test_fsync</> is intended to give you a reasonable
idea of what the fastest <xref linkend="guc-wal-sync-method"> is on your
specific system,
as well as supplying diagnostic information in the event of an
identified I/O problem. However, differences shown by <application>pg_test_fsync</application>
might not make any difference in real database throughput, especially
since many database servers are not speed-limited by their transaction
logs.
as well as supplying diagnostic information in the event of an identified I/O
problem. However, differences shown by
<application>pg_test_fsync</application> might not make any significant
difference in real database throughput, especially since many database servers
are not speed-limited by their transaction logs.
<application>pg_test_fsync</application> reports average file sync operation
time in microseconds for each wal_sync_method, which can be used to inform
efforts to optimize the value of <varname>commit_delay</varname>.
</para>
</refsect1>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment