Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

setting priority random #376

Merged
merged 1 commit into from
May 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions gokart/task.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import hashlib
import inspect
import os
import random
import types
from importlib import import_module
from logging import getLogger
Expand Down Expand Up @@ -86,6 +87,10 @@ class TaskOnKart(luigi.Task):
)
should_lock_run: bool = ExplicitBoolParameter(default=False, significant=False, description='Whether to use redis lock or not at task run.')

@property
def priority(self):
return random.Random().random() # seed is fixed, so we need to use random.Random().random() instead f random.random()

def __init__(self, *args, **kwargs):
self._add_configuration(kwargs, 'TaskOnKart')
# 'This parameter is dumped into "workspace_directory/log/task_log/" when this task finishes with success.'
Expand Down