-
Notifications
You must be signed in to change notification settings - Fork 988
Expand file tree
/
Copy pathapp.py
More file actions
348 lines (299 loc) · 15.1 KB
/
app.py
File metadata and controls
348 lines (299 loc) · 15.1 KB
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
53
54
55
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
# Copyright (c) 2025 Stephen G. Pope
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
from flask import Flask, request
from queue import Queue
from services.webhook import send_webhook
import threading
import uuid
import os
import time
import json
from version import BUILD_NUMBER # Import the BUILD_NUMBER
from app_utils import log_job_status, discover_and_register_blueprints # Import the discover_and_register_blueprints function
from services.gcp_toolkit import trigger_cloud_run_job
MAX_QUEUE_LENGTH = int(os.environ.get('MAX_QUEUE_LENGTH', 0))
def create_app():
app = Flask(__name__)
# Create a queue to hold tasks
task_queue = Queue()
queue_id = id(task_queue) # Generate a single queue_id for this worker
# Function to process tasks from the queue
def process_queue():
while True:
job_id, data, task_func, queue_start_time = task_queue.get()
queue_time = time.time() - queue_start_time
run_start_time = time.time()
pid = os.getpid() # Get the PID of the actual processing thread
# Log job status as running
log_job_status(job_id, {
"job_status": "running",
"job_id": job_id,
"queue_id": queue_id,
"process_id": pid,
"response": None
})
response = task_func()
run_time = time.time() - run_start_time
total_time = time.time() - queue_start_time
response_data = {
"endpoint": response[1],
"code": response[2],
"id": data.get("id"),
"job_id": job_id,
"response": response[0] if response[2] == 200 else None,
"message": "success" if response[2] == 200 else response[0],
"pid": pid,
"queue_id": queue_id,
"run_time": round(run_time, 3),
"queue_time": round(queue_time, 3),
"total_time": round(total_time, 3),
"queue_length": task_queue.qsize(),
"build_number": BUILD_NUMBER # Add build number to response
}
# Log job status as done
log_job_status(job_id, {
"job_status": "done",
"job_id": job_id,
"queue_id": queue_id,
"process_id": pid,
"response": response_data
})
# Only send webhook if webhook_url has an actual value (not an empty string)
if data.get("webhook_url") and data.get("webhook_url") != "":
send_webhook(data.get("webhook_url"), response_data)
task_queue.task_done()
# Start the queue processing in a separate thread
threading.Thread(target=process_queue, daemon=True).start()
# Decorator to add tasks to the queue or bypass it
def queue_task(bypass_queue=False):
def decorator(f):
def wrapper(*args, **kwargs):
data = request.json if request.is_json else {}
# Use _cloud_job_id from payload if available (for cloud jobs), otherwise generate new UUID
job_id = data.pop('_cloud_job_id', None) or str(uuid.uuid4())
pid = os.getpid() # Get PID for non-queued tasks
start_time = time.time()
# If running inside a GCP Cloud Run Job instance, execute synchronously
if os.environ.get("CLOUD_RUN_JOB"):
# Get execution name from Google's env var
execution_name = os.environ.get("CLOUD_RUN_EXECUTION", "gcp_job")
# Log job status as running
log_job_status(job_id, {
"job_status": "running",
"job_id": job_id,
"queue_id": execution_name,
"process_id": pid,
"response": None
})
# Execute the function directly (no queue)
response = f(job_id=job_id, data=data, *args, **kwargs)
run_time = time.time() - start_time
# Build response object
response_obj = {
"endpoint": response[1],
"code": response[2],
"id": data.get("id"),
"job_id": job_id,
"response": response[0] if response[2] == 200 else None,
"message": "success" if response[2] == 200 else response[0],
"run_time": round(run_time, 3),
"queue_time": 0,
"total_time": round(run_time, 3),
"pid": pid,
"queue_id": execution_name,
"queue_length": 0,
"build_number": BUILD_NUMBER
}
# Log job status as done
log_job_status(job_id, {
"job_status": "done",
"job_id": job_id,
"queue_id": execution_name,
"process_id": pid,
"response": response_obj
})
# Send webhook if webhook_url is provided
if data.get("webhook_url") and data.get("webhook_url") != "":
send_webhook(data.get("webhook_url"), response_obj)
return response_obj, response[2]
# Check if cloud job should be disabled (env var or payload)
disable_by_env = os.environ.get("DISABLE_CLOUD_JOB", "").lower() in ["true", "1"]
disable_cloud = (
(disable_by_env and data.get("disable_cloud_job") is not False) or # Env disabled, not overridden by false
data.get("disable_cloud_job") is True # Explicitly disabled in payload
)
if os.environ.get("GCP_JOB_NAME") and data.get("webhook_url") and not disable_cloud:
try:
# Create enhanced payload with original job_id for cloud jobs
cloud_payload = data.copy()
cloud_payload['_cloud_job_id'] = job_id
overrides = {
'container_overrides': [
{
'env': [
# Environment variables to pass to the GCP Cloud Run Job
{
'name': 'GCP_JOB_PATH',
'value': request.path # Endpoint to call
},
{
'name': 'GCP_JOB_PAYLOAD',
'value': json.dumps(cloud_payload) # Enhanced payload with job_id
},
]
}
],
'task_count': 1
}
# Call trigger_cloud_run_job with the overrides dictionary
response = trigger_cloud_run_job(
job_name=os.environ.get("GCP_JOB_NAME"),
location=os.environ.get("GCP_JOB_LOCATION", "us-central1"),
overrides=overrides # Pass overrides to the job
)
if not response.get("job_submitted"):
raise Exception(f"GCP job trigger failed: {response}")
# Extract execution name and short ID for tracking
execution_name = response.get("execution_name", "")
gcp_queue_id = execution_name.split('/')[-1] if execution_name else "gcp_job"
# Prepare the response object
response_obj = {
"code": 200,
"id": data.get("id"),
"job_id": job_id,
"message": response,
"job_name": os.environ.get("GCP_JOB_NAME"),
"location": os.environ.get("GCP_JOB_LOCATION", "us-central1"),
"pid": pid,
"queue_id": gcp_queue_id,
"build_number": BUILD_NUMBER
}
log_job_status(job_id, {
"job_status": "submitted",
"job_id": job_id,
"queue_id": gcp_queue_id,
"process_id": pid,
"response": response_obj
})
return response_obj, 200 # Return 200 since it's a submission success
except Exception as e:
error_response = {
"code": 500,
"id": data.get("id"),
"job_id": job_id,
"message": f"GCP Cloud Run Job trigger failed: {str(e)}",
"job_name": os.environ.get("GCP_JOB_NAME"),
"location": os.environ.get("GCP_JOB_LOCATION", "us-central1"),
"pid": pid,
"queue_id": "gcp_job",
"build_number": BUILD_NUMBER
}
log_job_status(job_id, {
"job_status": "failed",
"job_id": job_id,
"queue_id": "gcp_job",
"process_id": pid,
"response": error_response
})
return error_response, 500
elif bypass_queue or 'webhook_url' not in data:
# Log job status as running immediately (bypassing queue)
log_job_status(job_id, {
"job_status": "running",
"job_id": job_id,
"queue_id": queue_id,
"process_id": pid,
"response": None
})
response = f(job_id=job_id, data=data, *args, **kwargs)
run_time = time.time() - start_time
response_obj = {
"endpoint": response[1],
"code": response[2],
"id": data.get("id"),
"job_id": job_id,
"response": response[0] if response[2] == 200 else None,
"message": "success" if response[2] == 200 else response[0],
"run_time": round(run_time, 3),
"queue_time": 0,
"total_time": round(run_time, 3),
"pid": pid,
"queue_id": queue_id,
"queue_length": task_queue.qsize(),
"build_number": BUILD_NUMBER # Add build number to response
}
# Log job status as done
log_job_status(job_id, {
"job_status": "done",
"job_id": job_id,
"queue_id": queue_id,
"process_id": pid,
"response": response_obj
})
return response_obj, response[2]
else:
if MAX_QUEUE_LENGTH > 0 and task_queue.qsize() >= MAX_QUEUE_LENGTH:
error_response = {
"code": 429,
"id": data.get("id"),
"job_id": job_id,
"message": f"MAX_QUEUE_LENGTH ({MAX_QUEUE_LENGTH}) reached",
"pid": pid,
"queue_id": queue_id,
"queue_length": task_queue.qsize(),
"build_number": BUILD_NUMBER # Add build number to response
}
# Log the queue overflow error
log_job_status(job_id, {
"job_status": "done",
"job_id": job_id,
"queue_id": queue_id,
"process_id": pid,
"response": error_response
})
return error_response, 429
# Log job status as queued
log_job_status(job_id, {
"job_status": "queued",
"job_id": job_id,
"queue_id": queue_id,
"process_id": pid,
"response": None
})
task_queue.put((job_id, data, lambda: f(job_id=job_id, data=data, *args, **kwargs), start_time))
return {
"code": 202,
"id": data.get("id"),
"job_id": job_id,
"message": "processing",
"pid": pid,
"queue_id": queue_id,
"max_queue_length": MAX_QUEUE_LENGTH if MAX_QUEUE_LENGTH > 0 else "unlimited",
"queue_length": task_queue.qsize(),
"build_number": BUILD_NUMBER # Add build number to response
}, 202
return wrapper
return decorator
app.queue_task = queue_task
# Register special route for Next.js root asset paths first
from routes.v1.media.feedback import create_root_next_routes
create_root_next_routes(app)
# Use the discover_and_register_blueprints function to register all blueprints
discover_and_register_blueprints(app)
return app
app = create_app()
if __name__ == '__main__':
app.run(host='0.0.0.0', port=8080)