| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | import datetime | 
					
						
							|  |  |  | import logging | 
					
						
							|  |  |  | import time | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import click | 
					
						
							| 
									
										
										
										
											2024-12-24 18:38:51 +08:00
										 |  |  | from celery import shared_task  # type: ignore | 
					
						
							| 
									
										
										
										
											2024-02-06 13:21:13 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-12 12:25:38 +08:00
										 |  |  | from configs import dify_config | 
					
						
							| 
									
										
										
										
											2024-09-11 16:40:52 +08:00
										 |  |  | from core.indexing_runner import DocumentIsPausedError, IndexingRunner | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | from extensions.ext_database import db | 
					
						
							| 
									
										
										
										
											2024-02-22 17:16:22 +08:00
										 |  |  | from models.dataset import Dataset, Document | 
					
						
							|  |  |  | from services.feature_service import FeatureService | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 13:38:37 +08:00
										 |  |  | @shared_task(queue="dataset") | 
					
						
							| 
									
										
										
										
											2023-06-16 21:47:51 +08:00
										 |  |  | def document_indexing_task(dataset_id: str, document_ids: list): | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |     """
 | 
					
						
							|  |  |  |     Async process document | 
					
						
							|  |  |  |     :param dataset_id: | 
					
						
							| 
									
										
										
										
											2023-06-16 21:47:51 +08:00
										 |  |  |     :param document_ids: | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-16 11:16:28 +08:00
										 |  |  |     Usage: document_indexing_task.delay(dataset_id, document_ids) | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2023-06-16 21:47:51 +08:00
										 |  |  |     documents = [] | 
					
						
							| 
									
										
										
										
											2023-06-25 16:49:14 +08:00
										 |  |  |     start_at = time.perf_counter() | 
					
						
							| 
									
										
										
										
											2024-02-22 17:16:22 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     dataset = db.session.query(Dataset).filter(Dataset.id == dataset_id).first() | 
					
						
							| 
									
										
										
										
											2024-11-14 14:07:19 +08:00
										 |  |  |     if not dataset: | 
					
						
							|  |  |  |         logging.info(click.style("Dataset is not found: {}".format(dataset_id), fg="yellow")) | 
					
						
							|  |  |  |         return | 
					
						
							| 
									
										
										
										
											2024-02-22 17:16:22 +08:00
										 |  |  |     # check document limit | 
					
						
							|  |  |  |     features = FeatureService.get_features(dataset.tenant_id) | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         if features.billing.enabled: | 
					
						
							|  |  |  |             vector_space = features.vector_space | 
					
						
							|  |  |  |             count = len(document_ids) | 
					
						
							| 
									
										
										
										
											2024-07-12 12:25:38 +08:00
										 |  |  |             batch_upload_limit = int(dify_config.BATCH_UPLOAD_LIMIT) | 
					
						
							| 
									
										
										
										
											2024-02-22 17:16:22 +08:00
										 |  |  |             if count > batch_upload_limit: | 
					
						
							|  |  |  |                 raise ValueError(f"You have reached the batch upload limit of {batch_upload_limit}.") | 
					
						
							|  |  |  |             if 0 < vector_space.limit <= vector_space.size: | 
					
						
							| 
									
										
										
										
											2024-08-26 13:38:37 +08:00
										 |  |  |                 raise ValueError( | 
					
						
							|  |  |  |                     "Your total number of documents plus the number of uploads have over the limit of " | 
					
						
							|  |  |  |                     "your subscription." | 
					
						
							|  |  |  |                 ) | 
					
						
							| 
									
										
										
										
											2024-02-22 17:16:22 +08:00
										 |  |  |     except Exception as e: | 
					
						
							|  |  |  |         for document_id in document_ids: | 
					
						
							| 
									
										
										
										
											2024-08-26 13:38:37 +08:00
										 |  |  |             document = ( | 
					
						
							|  |  |  |                 db.session.query(Document).filter(Document.id == document_id, Document.dataset_id == dataset_id).first() | 
					
						
							|  |  |  |             ) | 
					
						
							| 
									
										
										
										
											2024-02-22 17:16:22 +08:00
										 |  |  |             if document: | 
					
						
							| 
									
										
										
										
											2024-08-26 13:38:37 +08:00
										 |  |  |                 document.indexing_status = "error" | 
					
						
							| 
									
										
										
										
											2024-02-22 17:16:22 +08:00
										 |  |  |                 document.error = str(e) | 
					
						
							| 
									
										
										
										
											2024-11-24 13:28:46 +08:00
										 |  |  |                 document.stopped_at = datetime.datetime.now(datetime.UTC).replace(tzinfo=None) | 
					
						
							| 
									
										
										
										
											2024-02-22 17:16:22 +08:00
										 |  |  |                 db.session.add(document) | 
					
						
							|  |  |  |         db.session.commit() | 
					
						
							|  |  |  |         return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-16 21:47:51 +08:00
										 |  |  |     for document_id in document_ids: | 
					
						
							| 
									
										
										
										
											2024-08-26 13:38:37 +08:00
										 |  |  |         logging.info(click.style("Start process document: {}".format(document_id), fg="green")) | 
					
						
							| 
									
										
										
										
											2023-06-16 21:47:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 13:38:37 +08:00
										 |  |  |         document = ( | 
					
						
							|  |  |  |             db.session.query(Document).filter(Document.id == document_id, Document.dataset_id == dataset_id).first() | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2023-06-16 21:47:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-12 13:30:44 +08:00
										 |  |  |         if document: | 
					
						
							| 
									
										
										
										
											2024-08-26 13:38:37 +08:00
										 |  |  |             document.indexing_status = "parsing" | 
					
						
							| 
									
										
										
										
											2024-11-24 13:28:46 +08:00
										 |  |  |             document.processing_started_at = datetime.datetime.now(datetime.UTC).replace(tzinfo=None) | 
					
						
							| 
									
										
										
										
											2023-10-12 13:30:44 +08:00
										 |  |  |             documents.append(document) | 
					
						
							|  |  |  |             db.session.add(document) | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |     db.session.commit() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         indexing_runner = IndexingRunner() | 
					
						
							| 
									
										
										
										
											2023-06-16 21:47:51 +08:00
										 |  |  |         indexing_runner.run(documents) | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |         end_at = time.perf_counter() | 
					
						
							| 
									
										
										
										
											2024-08-26 13:38:37 +08:00
										 |  |  |         logging.info(click.style("Processed dataset: {} latency: {}".format(dataset_id, end_at - start_at), fg="green")) | 
					
						
							| 
									
										
										
										
											2024-09-11 16:40:52 +08:00
										 |  |  |     except DocumentIsPausedError as ex: | 
					
						
							| 
									
										
										
										
											2024-08-26 13:38:37 +08:00
										 |  |  |         logging.info(click.style(str(ex), fg="yellow")) | 
					
						
							| 
									
										
										
										
											2023-06-25 16:49:14 +08:00
										 |  |  |     except Exception: | 
					
						
							|  |  |  |         pass |