Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vospace-transfer-service
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
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
VOSpace INAF
vospace-transfer-service
Commits
eadb656d
Commit
eadb656d
authored
1 month ago
by
Cristiano Urban
Browse files
Options
Downloads
Patches
Plain Diff
Reduced 'execWaitTime' minimum value.
Signed-off-by:
Cristiano Urban
<
cristiano.urban@inaf.it
>
parent
fef6a65a
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
transfer_service/config/vos_ts.conf.sample
+2
-2
2 additions, 2 deletions
transfer_service/config/vos_ts.conf.sample
transfer_service/task_executor.py
+2
-2
2 additions, 2 deletions
transfer_service/task_executor.py
with
4 additions
and
4 deletions
transfer_service/config/vos_ts.conf.sample
+
2
−
2
View file @
eadb656d
...
...
@@ -80,8 +80,8 @@ max_terminated_jobs = 8
; maximum number of jobs within the 'clean' ('read' only) queue, default is 8
max_clean_jobs = 8
; minimum time interval in seconds between two consecutive checks on
; job queues, default is 1
5
s, minimum allowed is
10
s
exec_wait_time = 1
5
; job queues, default is 1
0
s, minimum allowed is
5
s
exec_wait_time = 1
0
[transfer]
; split data to be retrieved in blocks of a given size
...
...
This diff is collapsed.
Click to expand it.
transfer_service/task_executor.py
+
2
−
2
View file @
eadb656d
...
...
@@ -23,8 +23,8 @@ class TaskExecutor(Process):
self
.
maxTerminatedJobs
=
params
.
getint
(
"
max_terminated_jobs
"
)
self
.
maxCleanJobs
=
params
.
getint
(
"
max_clean_jobs
"
)
self
.
execWaitTime
=
params
.
getint
(
"
exec_wait_time
"
)
if
self
.
execWaitTime
<
10
:
self
.
execWaitTime
=
10
if
self
.
execWaitTime
<
5
:
self
.
execWaitTime
=
5
self
.
srcQueue
=
None
self
.
destQueue
=
None
super
(
TaskExecutor
,
self
).
__init__
()
...
...
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