mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-17 17:21:02 +02:00
Iron out collection problems
This commit is contained in:
parent
feac569cd1
commit
66190689ee
4 changed files with 40 additions and 15 deletions
|
|
@ -37,7 +37,6 @@ class Processor(Consumer):
|
|||
)
|
||||
|
||||
self.last_collection = None
|
||||
self.last_dim = None
|
||||
|
||||
self.client = QdrantClient(url=store_uri)
|
||||
|
||||
|
|
@ -57,7 +56,7 @@ class Processor(Consumer):
|
|||
str(dim)
|
||||
)
|
||||
|
||||
if dim != self.last_dim:
|
||||
if collection != self.last_collection:
|
||||
|
||||
if not self.client.collection_exists(collection):
|
||||
|
||||
|
|
@ -73,7 +72,6 @@ class Processor(Consumer):
|
|||
raise e
|
||||
|
||||
self.last_collection = collection
|
||||
self.last_dim = dim
|
||||
|
||||
self.client.upsert(
|
||||
collection_name=collection,
|
||||
|
|
|
|||
|
|
@ -37,7 +37,6 @@ class Processor(Consumer):
|
|||
)
|
||||
|
||||
self.last_collection = None
|
||||
self.last_dim = None
|
||||
|
||||
self.client = QdrantClient(url=store_uri)
|
||||
|
||||
|
|
@ -55,7 +54,7 @@ class Processor(Consumer):
|
|||
str(dim)
|
||||
)
|
||||
|
||||
if dim != self.last_dim:
|
||||
if collection != self.last_collection:
|
||||
|
||||
if not self.client.collection_exists(collection):
|
||||
|
||||
|
|
@ -71,7 +70,6 @@ class Processor(Consumer):
|
|||
raise e
|
||||
|
||||
self.last_collection = collection
|
||||
self.last_dim = dim
|
||||
|
||||
self.client.upsert(
|
||||
collection_name=collection,
|
||||
|
|
|
|||
|
|
@ -47,13 +47,22 @@ class Processor(Consumer):
|
|||
|
||||
table = (v.metadata.user, v.metadata.collection)
|
||||
|
||||
if self.table is None or self.table != self.table:
|
||||
self.tg = TrustGraph(
|
||||
hosts=self.graph_host,
|
||||
keyspace=v.metadata.user, table=v.metadata.collection,
|
||||
)
|
||||
self.table = table
|
||||
if self.table is None or self.table != table:
|
||||
|
||||
self.tg = None
|
||||
|
||||
try:
|
||||
self.tg = TrustGraph(
|
||||
hosts=self.graph_host,
|
||||
keyspace=v.metadata.user, table=v.metadata.collection,
|
||||
)
|
||||
except Exception as e:
|
||||
print("Exception", e, flush=True)
|
||||
time.sleep(1)
|
||||
raise e
|
||||
|
||||
self.table = table
|
||||
|
||||
self.tg.insert(
|
||||
v.s.value,
|
||||
v.p.value,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue