2022-12-05 18:38:37 +01:00
|
|
|
from typing import cast
|
2022-11-10 06:29:33 +01:00
|
|
|
|
|
|
|
from asgiref.sync import async_to_sync
|
|
|
|
from django.apps import apps
|
|
|
|
from django.core.management.base import BaseCommand
|
|
|
|
|
2022-11-18 16:28:15 +01:00
|
|
|
from core.models import Config
|
2022-11-10 06:29:33 +01:00
|
|
|
from stator.models import StatorModel
|
|
|
|
from stator.runner import StatorRunner
|
|
|
|
|
|
|
|
|
|
|
|
class Command(BaseCommand):
|
2022-11-19 18:20:13 +01:00
|
|
|
help = "Runs a Stator runner"
|
2022-11-10 06:29:33 +01:00
|
|
|
|
|
|
|
def add_arguments(self, parser):
|
2022-11-14 02:42:47 +01:00
|
|
|
parser.add_argument(
|
|
|
|
"--concurrency",
|
|
|
|
"-c",
|
|
|
|
type=int,
|
|
|
|
default=30,
|
|
|
|
help="How many tasks to run at once",
|
|
|
|
)
|
2022-11-19 18:20:13 +01:00
|
|
|
parser.add_argument(
|
|
|
|
"--liveness-file",
|
|
|
|
type=str,
|
|
|
|
default=None,
|
|
|
|
help="A file to touch at least every 30 seconds to say the runner is alive",
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"--schedule-interval",
|
|
|
|
"-s",
|
|
|
|
type=int,
|
|
|
|
default=30,
|
|
|
|
help="How often to run cleaning and scheduling",
|
|
|
|
)
|
2022-11-27 19:03:52 +01:00
|
|
|
parser.add_argument(
|
|
|
|
"--run-for",
|
|
|
|
"-r",
|
|
|
|
type=int,
|
|
|
|
default=0,
|
|
|
|
help="How long to run for before exiting (defaults to infinite)",
|
|
|
|
)
|
2022-11-10 06:29:33 +01:00
|
|
|
parser.add_argument("model_labels", nargs="*", type=str)
|
|
|
|
|
2022-11-19 18:20:13 +01:00
|
|
|
def handle(
|
|
|
|
self,
|
2022-12-05 18:38:37 +01:00
|
|
|
model_labels: list[str],
|
2022-11-19 18:20:13 +01:00
|
|
|
concurrency: int,
|
|
|
|
liveness_file: str,
|
|
|
|
schedule_interval: int,
|
2022-11-27 19:03:52 +01:00
|
|
|
run_for: int,
|
2022-11-19 18:20:13 +01:00
|
|
|
*args,
|
|
|
|
**options
|
|
|
|
):
|
2022-11-18 16:28:15 +01:00
|
|
|
# Cache system config
|
|
|
|
Config.system = Config.load_system()
|
2022-11-10 06:29:33 +01:00
|
|
|
# Resolve the models list into names
|
|
|
|
models = cast(
|
2022-12-05 18:38:37 +01:00
|
|
|
list[type[StatorModel]],
|
2022-11-10 06:29:33 +01:00
|
|
|
[apps.get_model(label) for label in model_labels],
|
|
|
|
)
|
|
|
|
if not models:
|
|
|
|
models = StatorModel.subclasses
|
|
|
|
print("Running for models: " + " ".join(m._meta.label_lower for m in models))
|
|
|
|
# Run a runner
|
2022-11-19 18:20:13 +01:00
|
|
|
runner = StatorRunner(
|
|
|
|
models,
|
|
|
|
concurrency=concurrency,
|
|
|
|
liveness_file=liveness_file,
|
|
|
|
schedule_interval=schedule_interval,
|
2022-11-27 19:03:52 +01:00
|
|
|
run_for=run_for,
|
2022-11-19 18:20:13 +01:00
|
|
|
)
|
2022-11-10 06:29:33 +01:00
|
|
|
async_to_sync(runner.run)()
|