Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
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
pikelang
pike
Commits
c3317ce8
Commit
c3317ce8
authored
5 years ago
by
Stephen R. van den Berg
Browse files
Options
Downloads
Patches
Plain Diff
pgsql: Track back deadlock, explicitly release lock, speeds up code.
parent
5f13d6fa
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/modules/Sql.pmod/pgsql_util.pmod
+41
-22
41 additions, 22 deletions
lib/modules/Sql.pmod/pgsql_util.pmod
with
41 additions
and
22 deletions
lib/modules/Sql.pmod/pgsql_util.pmod
+
41
−
22
View file @
c3317ce8
...
...
@@ -473,7 +473,7 @@ class conxion {
PD("Nostash locked by %s\n",
describe_backtrace(nostash->current_locking_thread()->backtrace()));
#endif
while (lock = (waitforreal ? nostash->lock : nostash->trylock)(1)) {
while (lock = (waitforreal
> 0
? nostash->lock : nostash->trylock)(1)) {
int mode;
if (sizeof(stash) && (mode = getstash(KEEP)) > KEEP)
sendcmd(mode); // Force out stash to the server
...
...
@@ -492,7 +492,7 @@ class conxion {
return this;
#endif
}
return bufcon(this)->start();
return
!waitforreal &&
bufcon(this)->start();
}
private int write_cb() {
...
...
@@ -894,9 +894,15 @@ class sql_result {
{
Thread.MutexKey lock = closemux->lock();
if (_fetchlimit) {
array reflock = ({ lock });
lock = 0;
_sendexecute(_fetchlimit = 0, reflock);
array reflock = ({ _fetchlimit = 0 });
for (;;) {
reflock[0] = lock;
lock = 0;
if (!_sendexecute(0, reflock)) {
lock = closemux->lock();
continue;
}
}
} else
lock = 0; // Force release before acquiring next
lock = _ddescribemux->lock();
...
...
@@ -1467,20 +1473,25 @@ class sql_result {
private void replenishrows() {
if (_fetchlimit && datarows->size() <= _fetchlimit >> 1
&& _state >= COMMITTED) {
Thread.MutexKey lock = closemux->lock();
if (_fetchlimit) {
_fetchlimit = pgsqlsess._fetchlimit;
if (bytesreceived)
_fetchlimit =
min((portalbuffersize >> 1) * index / bytesreceived || 1, _fetchlimit);
if (_fetchlimit)
if (inflight <= (_fetchlimit - 1) >> 1) {
array reflock = ({ lock });
lock = 0;
_sendexecute(_fetchlimit, reflock);
} else
PD("<%O _fetchlimit %d, inflight %d, skip execute\n",
_portalname, _fetchlimit, inflight);
Thread.MutexKey lock;
for (;;) {
lock = closemux->lock();
if (_fetchlimit) {
_fetchlimit = pgsqlsess._fetchlimit;
if (bytesreceived)
_fetchlimit = min((portalbuffersize >> 1)
* index / bytesreceived || 1, _fetchlimit);
if (_fetchlimit)
if (inflight <= (_fetchlimit - 1) >> 1) {
array reflock = ({ lock });
lock = 0;
if (!_sendexecute(_fetchlimit, reflock))
continue;
} else
PD("<%O _fetchlimit %d, inflight %d, skip execute\n",
_portalname, _fetchlimit, inflight);
}
break;
}
}
}
...
...
@@ -1522,7 +1533,7 @@ class sql_result {
array(Thread.MutexKey) reflock = ({closemux->lock()});
if (!catch(plugbuffer = c->start()))
plugbuffer->sendcmd(_closeportal(plugbuffer, reflock));
reflock = 0;
reflock
[0]
= 0;
if (_state < CLOSED) {
stmtifkey = 0;
_state = CLOSED;
...
...
@@ -1537,7 +1548,7 @@ class sql_result {
};
}
final
void
_sendexecute(int fetchlimit,
final
int
_sendexecute(int fetchlimit,
void|array(Thread.MutexKey)|bufcon|conxsess plugbuffer) {
int flushmode;
array(Thread.MutexKey) reflock;
...
...
@@ -1545,7 +1556,10 @@ class sql_result {
fetchlimit, transtype);
if (arrayp(plugbuffer)) {
reflock = plugbuffer;
plugbuffer = c->start(1);
if (!(plugbuffer = c->start(-1))) {
reflock[0] = 0;
return 0; // Found potential deadlock, release and try again
}
}
CHAIN(plugbuffer)->add_int8('E')->add_hstring(({_portalname, 0}), 4, 8)
->add_int32(fetchlimit);
...
...
@@ -1557,6 +1571,9 @@ class sql_result {
} else
inflight += fetchlimit, flushmode = FLUSHSEND;
plugbuffer->sendcmd(flushmode, this);
if (reflock)
reflock[0] = 0;
return 1;
}
inline private array setuptimeout() {
...
...
@@ -1578,6 +1595,8 @@ class sql_result {
//! @[eof()], @[send_row()]
/*semi*/final array(mixed) fetch_row() {
int|array datarow;
if (!this) // If object already destructed, return fast
return 0;
replenishrows();
if (arrayp(datarow = datarows->try_read()))
return datarow;
...
...
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