celery_remote¶
Transformation Plugin that uses the Celery framework to call remote workers.
CeleryConfig
¶
Bases: AttrDict
Celery configuration.
Source code in oteapi/strategies/transformation/celery_remote.py
25 26 27 28 29 |
|
CeleryRemoteStrategy
¶
Submit job to remote Celery runner.
Registers strategies:
("transformationType", "celery/remote")
Source code in oteapi/strategies/transformation/celery_remote.py
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
|
get(session=None)
¶
Get transformation.
Source code in oteapi/strategies/transformation/celery_remote.py
92 93 94 95 |
|
initialize(session=None)
¶
Initialize a job.
Source code in oteapi/strategies/transformation/celery_remote.py
83 84 85 |
|
run(session=None)
¶
Run a job, return a job ID.
Source code in oteapi/strategies/transformation/celery_remote.py
68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
|
status(task_id)
¶
Get job status.
Source code in oteapi/strategies/transformation/celery_remote.py
87 88 89 90 |
|
CeleryStrategyConfig
¶
Bases: TransformationConfig
Celery strategy-specific configuration.
Source code in oteapi/strategies/transformation/celery_remote.py
41 42 43 44 45 46 47 48 49 50 51 52 53 |
|
SessionUpdateCelery
¶
Bases: SessionUpdate
Class for returning values from XLSXParse.
Source code in oteapi/strategies/transformation/celery_remote.py
32 33 34 35 36 37 38 |
|