Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arkindex
Backend
Commits
5bad6691
Commit
5bad6691
authored
1 week ago
by
Erwan Rouchet
Committed by
Bastien Abadie
1 week ago
Browse files
Options
Downloads
Patches
Plain Diff
Make ProcessBuilder overridable and add helper for WorkerRuns with costs
parent
b8c174de
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!2536
Make ProcessBuilder overridable and add helper for WorkerRuns with costs
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
arkindex/process/models.py
+15
-1
15 additions, 1 deletion
arkindex/process/models.py
with
15 additions
and
1 deletion
arkindex/process/models.py
+
15
−
1
View file @
5bad6691
...
...
@@ -11,12 +11,12 @@ from django.db.models import Exists, F, OuterRef, Q
from
django.urls
import
reverse
from
django.utils
import
timezone
from
django.utils.functional
import
cached_property
from
django.utils.module_loading
import
import_string
from
enumfields
import
Enum
,
EnumField
import
pgtrigger
from
arkindex.documents.models
import
Classification
,
Element
from
arkindex.ponos.models
import
FINAL_STATES
,
STATES_ORDERING
,
State
,
Task
,
token_default
from
arkindex.process.builder
import
ProcessBuilder
from
arkindex.process.managers
import
(
ActivityManager
,
CorpusWorkerVersionManager
,
...
...
@@ -32,6 +32,10 @@ from arkindex.project.validators import MaxValueValidator
from
arkindex.training.models
import
ModelVersion
,
ModelVersionState
from
arkindex.users.models
import
Role
ProcessBuilder
=
import_string
(
getattr
(
settings
,
"
PROCESS_BUILDER_CLASS
"
,
None
)
or
"
arkindex.process.builder.ProcessBuilder
"
)
def
process_max_chunks
():
"""
...
...
@@ -964,6 +968,16 @@ class WorkerRun(models.Model):
# we add the WorkerRun ID at the end of the slug
return
f
"
{
self
.
version
.
worker
.
slug
}
_
{
str
(
self
.
id
)[
:
6
]
}
"
@property
def
has_costs
(
self
)
->
bool
:
"""
Whether running a task created from this WorkerRun could incur costs in a budget
"""
# Use either the CPU or GPU cost depending on how we are running this worker
hourly_cost
=
self
.
version
.
worker
.
cost_gpu_hour
if
self
.
use_gpu
else
self
.
version
.
worker
.
cost_cpu_hour
# Only apply the cost per element when the process might have worker activities
return
hourly_cost
>
0
or
(
self
.
process
.
activity_state
!=
ActivityState
.
Disabled
and
self
.
version
.
worker
.
cost_1k_elements
>
0
)
def
build_task
(
self
,
process
,
env
,
import_task_name
,
elements_path
,
run
=
0
,
chunk
=
None
,
workflow_runs
=
None
,
active_gpu_agents
=
False
):
"""
Build the Task that will represent this WorkerRun in ponos using :
...
...
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