| 
									
										
										
										
											2024-11-08 14:43:47 +08:00
										 |  |  | import json | 
					
						
							| 
									
										
										
										
											2024-06-28 00:24:37 +08:00
										 |  |  | import logging | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-24 18:38:51 +08:00
										 |  |  | from celery import shared_task  # type: ignore | 
					
						
							| 
									
										
										
										
											2024-06-28 00:24:37 +08:00
										 |  |  | from flask import current_app | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-08 14:43:47 +08:00
										 |  |  | from core.ops.entities.config_entity import OPS_FILE_PATH, OPS_TRACE_FAILED_KEY | 
					
						
							| 
									
										
										
										
											2024-06-28 00:24:37 +08:00
										 |  |  | from core.ops.entities.trace_entity import trace_info_info_map | 
					
						
							|  |  |  | from core.rag.models.document import Document | 
					
						
							| 
									
										
										
										
											2024-11-08 14:43:47 +08:00
										 |  |  | from extensions.ext_redis import redis_client | 
					
						
							|  |  |  | from extensions.ext_storage import storage | 
					
						
							| 
									
										
										
										
											2024-06-28 00:24:37 +08:00
										 |  |  | from models.model import Message | 
					
						
							|  |  |  | from models.workflow import WorkflowRun | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 13:38:37 +08:00
										 |  |  | @shared_task(queue="ops_trace") | 
					
						
							| 
									
										
										
										
											2024-11-08 14:43:47 +08:00
										 |  |  | def process_trace_tasks(file_info): | 
					
						
							| 
									
										
										
										
											2024-06-28 00:24:37 +08:00
										 |  |  |     """
 | 
					
						
							|  |  |  |     Async process trace tasks | 
					
						
							|  |  |  |     :param tasks_data: List of dictionaries containing task data | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Usage: process_trace_tasks.delay(tasks_data) | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     from core.ops.ops_trace_manager import OpsTraceManager | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-08 14:43:47 +08:00
										 |  |  |     app_id = file_info.get("app_id") | 
					
						
							|  |  |  |     file_id = file_info.get("file_id") | 
					
						
							|  |  |  |     file_path = f"{OPS_FILE_PATH}{app_id}/{file_id}.json" | 
					
						
							|  |  |  |     file_data = json.loads(storage.load(file_path)) | 
					
						
							|  |  |  |     trace_info = file_data.get("trace_info") | 
					
						
							|  |  |  |     trace_info_type = file_data.get("trace_info_type") | 
					
						
							| 
									
										
										
										
											2024-08-04 00:05:51 +08:00
										 |  |  |     trace_instance = OpsTraceManager.get_ops_trace_instance(app_id) | 
					
						
							| 
									
										
										
										
											2024-06-28 00:24:37 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 13:38:37 +08:00
										 |  |  |     if trace_info.get("message_data"): | 
					
						
							|  |  |  |         trace_info["message_data"] = Message.from_dict(data=trace_info["message_data"]) | 
					
						
							|  |  |  |     if trace_info.get("workflow_data"): | 
					
						
							|  |  |  |         trace_info["workflow_data"] = WorkflowRun.from_dict(data=trace_info["workflow_data"]) | 
					
						
							|  |  |  |     if trace_info.get("documents"): | 
					
						
							|  |  |  |         trace_info["documents"] = [Document(**doc) for doc in trace_info["documents"]] | 
					
						
							| 
									
										
										
										
											2024-06-28 00:24:37 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         if trace_instance: | 
					
						
							|  |  |  |             with current_app.app_context(): | 
					
						
							|  |  |  |                 trace_type = trace_info_info_map.get(trace_info_type) | 
					
						
							|  |  |  |                 if trace_type: | 
					
						
							|  |  |  |                     trace_info = trace_type(**trace_info) | 
					
						
							|  |  |  |                 trace_instance.trace(trace_info) | 
					
						
							| 
									
										
										
										
											2024-11-08 14:43:47 +08:00
										 |  |  |         logging.info(f"Processing trace tasks success, app_id: {app_id}") | 
					
						
							| 
									
										
										
										
											2024-06-28 00:24:37 +08:00
										 |  |  |     except Exception: | 
					
						
							| 
									
										
										
										
											2024-11-08 14:43:47 +08:00
										 |  |  |         failed_key = f"{OPS_TRACE_FAILED_KEY}_{app_id}" | 
					
						
							|  |  |  |         redis_client.incr(failed_key) | 
					
						
							|  |  |  |         logging.info(f"Processing trace tasks failed, app_id: {app_id}") | 
					
						
							|  |  |  |     finally: | 
					
						
							|  |  |  |         storage.delete(file_path) |