2023-05-15 08:51:32 +08:00
|
|
|
import logging
|
|
|
|
import time
|
|
|
|
|
|
|
|
import click
|
|
|
|
from celery import shared_task
|
2024-02-06 13:21:13 +08:00
|
|
|
|
2024-02-22 23:31:57 +08:00
|
|
|
from core.rag.index_processor.index_processor_factory import IndexProcessorFactory
|
2023-05-15 08:51:32 +08:00
|
|
|
from extensions.ext_database import db
|
2024-01-12 12:34:01 +08:00
|
|
|
from models.dataset import Dataset, DocumentSegment
|
2023-05-15 08:51:32 +08:00
|
|
|
|
|
|
|
|
2023-07-31 13:13:08 +08:00
|
|
|
@shared_task(queue='dataset')
|
2024-02-22 23:31:57 +08:00
|
|
|
def clean_document_task(document_id: str, dataset_id: str, doc_form: str):
|
2023-05-15 08:51:32 +08:00
|
|
|
"""
|
|
|
|
Clean document when document deleted.
|
|
|
|
:param document_id: document id
|
|
|
|
:param dataset_id: dataset id
|
2024-02-22 23:31:57 +08:00
|
|
|
:param doc_form: doc_form
|
2023-05-15 08:51:32 +08:00
|
|
|
|
|
|
|
Usage: clean_document_task.delay(document_id, dataset_id)
|
|
|
|
"""
|
|
|
|
logging.info(click.style('Start clean document when document deleted: {}'.format(document_id), fg='green'))
|
|
|
|
start_at = time.perf_counter()
|
|
|
|
|
|
|
|
try:
|
|
|
|
dataset = db.session.query(Dataset).filter(Dataset.id == dataset_id).first()
|
|
|
|
|
|
|
|
if not dataset:
|
|
|
|
raise Exception('Document has no dataset')
|
|
|
|
|
|
|
|
segments = db.session.query(DocumentSegment).filter(DocumentSegment.document_id == document_id).all()
|
2023-10-12 13:30:44 +08:00
|
|
|
# check segment is exist
|
|
|
|
if segments:
|
|
|
|
index_node_ids = [segment.index_node_id for segment in segments]
|
2024-02-22 23:31:57 +08:00
|
|
|
index_processor = IndexProcessorFactory(doc_form).init_index_processor()
|
|
|
|
index_processor.clean(dataset, index_node_ids)
|
2023-05-15 08:51:32 +08:00
|
|
|
|
2023-10-12 13:30:44 +08:00
|
|
|
for segment in segments:
|
|
|
|
db.session.delete(segment)
|
2023-06-25 16:49:14 +08:00
|
|
|
|
2023-10-12 13:30:44 +08:00
|
|
|
db.session.commit()
|
|
|
|
end_at = time.perf_counter()
|
|
|
|
logging.info(
|
|
|
|
click.style('Cleaned document when document deleted: {} latency: {}'.format(document_id, end_at - start_at), fg='green'))
|
2023-05-15 08:51:32 +08:00
|
|
|
except Exception:
|
|
|
|
logging.exception("Cleaned document when document deleted failed")
|