Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
Base Worker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container 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
Workers
Base Worker
Merge requests
!76
Merge parents caches into the current task one
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Merge parents caches into the current task one
merge-parents-cache
into
master
Overview
2
Commits
11
Pipelines
1
Changes
4
Merged
Eva Bardou
requested to merge
merge-parents-cache
into
master
4 years ago
Overview
2
Commits
11
Pipelines
1
Changes
4
Expand
Closes
#45 (closed)
Edited
4 years ago
by
Eva Bardou
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
328e7c9b
11 commits,
4 years ago
4 files
+
337
−
8
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
arkindex_worker/cache.py
+
60
−
1
Options
# -*- coding: utf-8 -*-
import
json
import
logging
import
os
import
sqlite3
from
peewee
import
(
BooleanField
,
@@ -58,6 +60,11 @@ class CachedTranscription(Model):
table_name
=
"
transcriptions
"
# Add all the managed models in that list
# It's used here, but also in unit tests
MODELS
=
[
CachedElement
,
CachedTranscription
]
def
init_cache_db
(
path
):
db
.
init
(
path
,
@@ -75,4 +82,56 @@ def create_tables():
"""
Creates the tables in the cache DB only if they do not already exist.
"""
db
.
create_tables
([
CachedElement
,
CachedTranscription
])
db
.
create_tables
(
MODELS
)
def
merge_parents_cache
(
parent_ids
,
current_database
,
data_dir
=
"
/data
"
,
chunk
=
None
):
"""
Merge all the potential parent task
'
s databases into the existing local one
"""
assert
isinstance
(
parent_ids
,
list
)
assert
os
.
path
.
isdir
(
data_dir
)
assert
os
.
path
.
exists
(
current_database
)
# Handle possible chunk in parent task name
# This is needed to support the init_elements databases
filenames
=
[
"
db.sqlite
"
,
]
if
chunk
is
not
None
:
filenames
.
append
(
f
"
db_
{
chunk
}
.sqlite
"
)
# Find all the paths for these databases
paths
=
list
(
filter
(
lambda
p
:
os
.
path
.
isfile
(
p
),
[
os
.
path
.
join
(
data_dir
,
parent
,
name
)
for
parent
in
parent_ids
for
name
in
filenames
],
)
)
if
not
paths
:
logger
.
info
(
"
No parents cache to use
"
)
return
# Open a connection on current database
connection
=
sqlite3
.
connect
(
current_database
)
cursor
=
connection
.
cursor
()
# Merge each table into the local database
for
idx
,
path
in
enumerate
(
paths
):
logger
.
info
(
f
"
Merging parent db
{
path
}
into
{
current_database
}
"
)
statements
=
[
"
PRAGMA page_size=80000;
"
,
"
PRAGMA synchronous=OFF;
"
,
f
"
ATTACH DATABASE
'
{
path
}
'
AS source_
{
idx
}
;
"
,
f
"
REPLACE INTO elements SELECT * FROM source_
{
idx
}
.elements;
"
,
f
"
REPLACE INTO transcriptions SELECT * FROM source_
{
idx
}
.transcriptions;
"
,
]
for
statement
in
statements
:
cursor
.
execute
(
statement
)
connection
.
commit
()
Loading