Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
swh-provenance
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
Package registry
Model registry
Operate
Environments
Terraform modules
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
Nicolas Dandrimont
swh-provenance
Commits
5d89e09d
Commit
5d89e09d
authored
1 year ago
by
vlorentz
Committed by
vlorentz
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
postgresql: Sort rows before upsertion to avoid deadlocks
parent
1245ec5f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
swh/provenance/storage/postgresql.py
+14
-7
14 additions, 7 deletions
swh/provenance/storage/postgresql.py
with
14 additions
and
7 deletions
swh/provenance/storage/postgresql.py
+
14
−
7
View file @
5d89e09d
...
...
@@ -110,15 +110,17 @@ class ProvenanceStoragePostgreSql:
@handle_raise_on_commit
def
content_add
(
self
,
cnts
:
Dict
[
Sha1Git
,
datetime
])
->
bool
:
if
cnts
:
# Upsert in consistent order to avoid deadlocks
rows
=
sorted
(
cnts
.
items
())
sql
=
"""
INSERT INTO content(sha1, date) VALUES %s
ON CONFLICT (sha1) DO
UPDATE SET date=LEAST(EXCLUDED.date,content.date)
"""
page_size
=
self
.
page_size
or
len
(
cnt
s
)
page_size
=
self
.
page_size
or
len
(
row
s
)
with
self
.
transaction
()
as
cursor
:
psycopg2
.
extras
.
execute_values
(
cursor
,
sql
,
argslist
=
cnts
.
items
()
,
page_size
=
page_size
cursor
,
sql
,
argslist
=
rows
,
page_size
=
page_size
)
return
True
...
...
@@ -160,7 +162,8 @@ class ProvenanceStoragePostgreSql:
@statsd.timed
(
metric
=
STORAGE_DURATION_METRIC
,
tags
=
{
"
method
"
:
"
directory_add
"
})
@handle_raise_on_commit
def
directory_add
(
self
,
dirs
:
Dict
[
Sha1Git
,
DirectoryData
])
->
bool
:
data
=
[(
sha1
,
rev
.
date
,
rev
.
flat
)
for
sha1
,
rev
in
dirs
.
items
()]
# Upsert in consistent order to avoid deadlocks
data
=
sorted
((
sha1
,
rev
.
date
,
rev
.
flat
)
for
sha1
,
rev
in
dirs
.
items
())
if
data
:
sql
=
"""
INSERT INTO directory(sha1, date, flat) VALUES %s
...
...
@@ -220,7 +223,8 @@ class ProvenanceStoragePostgreSql:
@statsd.timed
(
metric
=
STORAGE_DURATION_METRIC
,
tags
=
{
"
method
"
:
"
location_add
"
})
@handle_raise_on_commit
def
location_add
(
self
,
paths
:
Dict
[
Sha1Git
,
bytes
])
->
bool
:
values
=
[(
path
,)
for
path
in
paths
.
values
()]
# Upsert in consistent order to avoid deadlocks
values
=
sorted
((
path
,)
for
path
in
paths
.
values
())
if
values
:
sql
=
"""
INSERT INTO location(path) VALUES %s
...
...
@@ -243,16 +247,18 @@ class ProvenanceStoragePostgreSql:
@handle_raise_on_commit
def
origin_add
(
self
,
orgs
:
Dict
[
Sha1Git
,
str
])
->
bool
:
if
orgs
:
# Upsert in consistent order to avoid deadlocks
rows
=
sorted
(
orgs
.
items
())
sql
=
"""
INSERT INTO origin(sha1, url) VALUES %s
ON CONFLICT DO NOTHING
"""
page_size
=
self
.
page_size
or
len
(
org
s
)
page_size
=
self
.
page_size
or
len
(
row
s
)
with
self
.
transaction
()
as
cursor
:
psycopg2
.
extras
.
execute_values
(
cur
=
cursor
,
sql
=
sql
,
argslist
=
orgs
.
items
()
,
argslist
=
rows
,
page_size
=
page_size
,
)
return
True
...
...
@@ -285,7 +291,8 @@ class ProvenanceStoragePostgreSql:
@handle_raise_on_commit
def
revision_add
(
self
,
revs
:
Dict
[
Sha1Git
,
RevisionData
])
->
bool
:
if
revs
:
data
=
[(
sha1
,
rev
.
date
,
rev
.
origin
)
for
sha1
,
rev
in
revs
.
items
()]
# Upsert in consistent order to avoid deadlocks
data
=
sorted
((
sha1
,
rev
.
date
,
rev
.
origin
)
for
sha1
,
rev
in
revs
.
items
())
sql
=
"""
INSERT INTO revision(sha1, date, origin)
(SELECT V.rev AS sha1, V.date::timestamptz AS date, O.id AS origin
...
...
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