-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfly.processing_worker.toml
52 lines (43 loc) · 1.13 KB
/
fly.processing_worker.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
app = 'processing-worker'
primary_region = 'sea'
[build]
dockerfile = 'Dockerfile.processing_worker'
[env]
PREFECT_API_URL = 'https://prefect.fly.dev/api'
[processes]
initial_disinformation_detection = ''
initial_disinformation_detection_2 = ''
audio_clipping = ''
in_depth_analysis = ''
regenerate_timestamped_transcript = ''
redo_main_detection = ''
undo_disinformation_detection = ''
undo_audio_clipping = ''
analysis_review = ''
analysis_review_2 = ''
embedding = ''
[[vm]]
processes = ["initial_disinformation_detection", "initial_disinformation_detection_2"]
memory = '4gb'
cpu_kind = 'shared'
cpus = 8
[[vm]]
processes = ["audio_clipping"]
memory = '2gb'
cpu_kind = 'shared'
cpus = 4
[[vm]]
processes = ["analysis_review", "analysis_review_2"]
memory = '2gb'
cpu_kind = 'shared'
cpus = 8
[[vm]]
processes = ["regenerate_timestamped_transcript", "in_depth_analysis", "embedding"]
memory = '1gb'
cpu_kind = 'shared'
cpus = 4
[[vm]]
processes = ["redo_main_detection", "undo_audio_clipping", "undo_disinformation_detection"]
memory = '512mb'
cpu_kind = 'shared'
cpus = 1