mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-30 10:56:23 +02:00
* Tech spec * Address multi-tenant queue option problems in CLI * Modified collection service to use config * Changed storage management to use the config service definition
89 lines
2.7 KiB
Python
Executable file
89 lines
2.7 KiB
Python
Executable file
|
|
"""
|
|
Accepts entity/vector pairs and writes them to a Milvus store.
|
|
"""
|
|
|
|
import logging
|
|
|
|
from .... direct.milvus_doc_embeddings import DocVectors
|
|
from .... base import DocumentEmbeddingsStoreService, CollectionConfigHandler
|
|
from .... base import AsyncProcessor, Consumer, Producer
|
|
from .... base import ConsumerMetrics, ProducerMetrics
|
|
|
|
# Module logger
|
|
logger = logging.getLogger(__name__)
|
|
|
|
default_ident = "de-write"
|
|
default_store_uri = 'http://localhost:19530'
|
|
|
|
class Processor(CollectionConfigHandler, DocumentEmbeddingsStoreService):
|
|
|
|
def __init__(self, **params):
|
|
|
|
store_uri = params.get("store_uri", default_store_uri)
|
|
|
|
super(Processor, self).__init__(
|
|
**params | {
|
|
"store_uri": store_uri,
|
|
}
|
|
)
|
|
|
|
self.vecstore = DocVectors(store_uri)
|
|
|
|
# Register for config push notifications
|
|
self.register_config_handler(self.on_collection_config)
|
|
|
|
async def store_document_embeddings(self, message):
|
|
|
|
for emb in message.chunks:
|
|
|
|
if emb.chunk is None or emb.chunk == b"": continue
|
|
|
|
chunk = emb.chunk.decode("utf-8")
|
|
if chunk == "": continue
|
|
|
|
for vec in emb.vectors:
|
|
self.vecstore.insert(
|
|
vec, chunk,
|
|
message.metadata.user,
|
|
message.metadata.collection
|
|
)
|
|
|
|
@staticmethod
|
|
def add_args(parser):
|
|
|
|
DocumentEmbeddingsStoreService.add_args(parser)
|
|
|
|
parser.add_argument(
|
|
'-t', '--store-uri',
|
|
default=default_store_uri,
|
|
help=f'Milvus store URI (default: {default_store_uri})'
|
|
)
|
|
|
|
async def create_collection(self, user: str, collection: str, metadata: dict):
|
|
"""
|
|
Create collection via config push - collections are created lazily on first write
|
|
with the correct dimension determined from the actual embeddings.
|
|
"""
|
|
try:
|
|
logger.info(f"Collection create request for {user}/{collection} - will be created lazily on first write")
|
|
self.vecstore.create_collection(user, collection)
|
|
|
|
except Exception as e:
|
|
logger.error(f"Failed to create collection {user}/{collection}: {e}", exc_info=True)
|
|
raise
|
|
|
|
async def delete_collection(self, user: str, collection: str):
|
|
"""Delete the collection for document embeddings via config push"""
|
|
try:
|
|
self.vecstore.delete_collection(user, collection)
|
|
logger.info(f"Successfully deleted collection {user}/{collection}")
|
|
|
|
except Exception as e:
|
|
logger.error(f"Failed to delete collection {user}/{collection}: {e}", exc_info=True)
|
|
raise
|
|
|
|
def run():
|
|
|
|
Processor.launch(default_ident, __doc__)
|
|
|