Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
aa14bc41
Commit
aa14bc41
authored
May 31, 2016
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix whitespace
parent
6d69ea33
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
23 additions
and
23 deletions
+23
-23
doc/src/sgml/bloom.sgml
doc/src/sgml/bloom.sgml
+3
-3
doc/src/sgml/fdwhandler.sgml
doc/src/sgml/fdwhandler.sgml
+1
-1
doc/src/sgml/gin.sgml
doc/src/sgml/gin.sgml
+1
-1
doc/src/sgml/maintenance.sgml
doc/src/sgml/maintenance.sgml
+1
-1
doc/src/sgml/postgres-fdw.sgml
doc/src/sgml/postgres-fdw.sgml
+1
-1
doc/src/sgml/ref/pg_rewind.sgml
doc/src/sgml/ref/pg_rewind.sgml
+3
-3
doc/src/sgml/ref/pgbench.sgml
doc/src/sgml/ref/pgbench.sgml
+13
-13
No files found.
doc/src/sgml/bloom.sgml
View file @
aa14bc41
doc/src/sgml/fdwhandler.sgml
View file @
aa14bc41
doc/src/sgml/gin.sgml
View file @
aa14bc41
doc/src/sgml/maintenance.sgml
View file @
aa14bc41
doc/src/sgml/postgres-fdw.sgml
View file @
aa14bc41
doc/src/sgml/ref/pg_rewind.sgml
View file @
aa14bc41
doc/src/sgml/ref/pgbench.sgml
View file @
aa14bc41
...
@@ -1064,7 +1064,7 @@ f(x) = exp(-parameter * (x - min) / (max - min + 1)) / (1 - exp(-parameter))
...
@@ -1064,7 +1064,7 @@ f(x) = exp(-parameter * (x - min) / (max - min + 1)) / (1 - exp(-parameter))
function of the standard normal distribution, with mean <literal>mu</>
function of the standard normal distribution, with mean <literal>mu</>
defined as <literal>(max + min) / 2.0</>, with
defined as <literal>(max + min) / 2.0</>, with
<literallayout>
<literallayout>
f(x) = PHI(2.0 * parameter * (x - mu) / (max - min + 1)) /
f(x) = PHI(2.0 * parameter * (x - mu) / (max - min + 1)) /
(2.0 * PHI(parameter) - 1)
(2.0 * PHI(parameter) - 1)
</literallayout>
</literallayout>
then value <replaceable>i</> between <replaceable>min</> and
then value <replaceable>i</> between <replaceable>min</> and
...
@@ -1158,22 +1158,22 @@ END;
...
@@ -1158,22 +1158,22 @@ END;
<para>
<para>
Here is a snippet of the log file generated:
Here is a snippet of the log file generated:
<screen>
<screen>
0 199 2241 0 1175850568 995598
0 199 2241 0 1175850568 995598
0 200 2465 0 1175850568 998079
0 200 2465 0 1175850568 998079
0 201 2513 0 1175850569 608
0 201 2513 0 1175850569 608
0 202 2038 0 1175850569 2663
0 202 2038 0 1175850569 2663
</screen>
</screen>
Another example with --rate=100 and --latency-limit=5 (note the additional
Another example with --rate=100 and --latency-limit=5 (note the additional
<replaceable>schedule_lag</> column):
<replaceable>schedule_lag</> column):
<screen>
<screen>
0 81 4621 0 1412881037 912698 3005
0 81 4621 0 1412881037 912698 3005
0 82 6173 0 1412881037 914578 4304
0 82 6173 0 1412881037 914578 4304
0 83 skipped 0 1412881037 914578 5217
0 83 skipped 0 1412881037 914578 5217
0 83 skipped 0 1412881037 914578 5099
0 83 skipped 0 1412881037 914578 5099
0 83 4722 0 1412881037 916203 3108
0 83 4722 0 1412881037 916203 3108
0 84 4142 0 1412881037 918023 2333
0 84 4142 0 1412881037 918023 2333
0 85 2465 0 1412881037 919759 740
0 85 2465 0 1412881037 919759 740
</screen>
</screen>
In this example, transaction 82 was late, because its latency (6.173 ms) was
In this example, transaction 82 was late, because its latency (6.173 ms) was
over the 5 ms limit. The next two transactions were skipped, because they
over the 5 ms limit. The next two transactions were skipped, because they
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment