nucliadb 6.2.1.post3067__py3-none-any.whl → 6.2.1.post3071__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- nucliadb/common/cluster/manager.py +8 -0
- nucliadb/ingest/orm/entities.py +3 -11
- {nucliadb-6.2.1.post3067.dist-info → nucliadb-6.2.1.post3071.dist-info}/METADATA +5 -5
- {nucliadb-6.2.1.post3067.dist-info → nucliadb-6.2.1.post3071.dist-info}/RECORD +8 -8
- {nucliadb-6.2.1.post3067.dist-info → nucliadb-6.2.1.post3071.dist-info}/WHEEL +0 -0
- {nucliadb-6.2.1.post3067.dist-info → nucliadb-6.2.1.post3071.dist-info}/entry_points.txt +0 -0
- {nucliadb-6.2.1.post3067.dist-info → nucliadb-6.2.1.post3071.dist-info}/top_level.txt +0 -0
- {nucliadb-6.2.1.post3067.dist-info → nucliadb-6.2.1.post3071.dist-info}/zip-safe +0 -0
@@ -104,6 +104,14 @@ class KBShardManager:
|
|
104
104
|
errors.capture_exception(exc)
|
105
105
|
raise NodeError("Node unavailable for operation") from exc
|
106
106
|
|
107
|
+
for result in results:
|
108
|
+
if isinstance(result, Exception):
|
109
|
+
errors.capture_exception(result)
|
110
|
+
raise NodeError(
|
111
|
+
f"Error while applying {aw.__name__} for all shards. Other similar errors may have been shadowed.\n"
|
112
|
+
f"{type(result).__name__}: {result}"
|
113
|
+
) from result
|
114
|
+
|
107
115
|
return results
|
108
116
|
|
109
117
|
# TODO: move to data manager
|
nucliadb/ingest/orm/entities.py
CHANGED
@@ -26,7 +26,6 @@ from nucliadb.common.cluster.base import AbstractIndexNode
|
|
26
26
|
from nucliadb.common.cluster.exceptions import (
|
27
27
|
AlreadyExists,
|
28
28
|
EntitiesGroupNotFound,
|
29
|
-
NodeError,
|
30
29
|
)
|
31
30
|
from nucliadb.common.cluster.utils import get_shard_manager
|
32
31
|
from nucliadb.common.datamanagers.entities import (
|
@@ -54,7 +53,6 @@ from nucliadb_protos.nodereader_pb2 import (
|
|
54
53
|
)
|
55
54
|
from nucliadb_protos.utils_pb2 import RelationNode
|
56
55
|
from nucliadb_protos.writer_pb2 import GetEntitiesResponse
|
57
|
-
from nucliadb_telemetry import errors
|
58
56
|
|
59
57
|
from .exceptions import EntityManagementException
|
60
58
|
|
@@ -226,10 +224,6 @@ class EntitiesManager:
|
|
226
224
|
settings.relation_search_timeout,
|
227
225
|
use_read_replica_nodes=self.use_read_replica_nodes,
|
228
226
|
)
|
229
|
-
for result in results:
|
230
|
-
if isinstance(result, Exception):
|
231
|
-
errors.capture_exception(result)
|
232
|
-
raise NodeError("Error while querying relation index")
|
233
227
|
|
234
228
|
entities = {}
|
235
229
|
for result in results:
|
@@ -305,6 +299,7 @@ class EntitiesManager:
|
|
305
299
|
shard_manager = get_shard_manager()
|
306
300
|
|
307
301
|
async def query_indexed_entities_group_names(node: AbstractIndexNode, shard_id: str) -> set[str]:
|
302
|
+
"""Search all relation types"""
|
308
303
|
request = SearchRequest(
|
309
304
|
shard=shard_id,
|
310
305
|
result_per_page=0,
|
@@ -316,10 +311,11 @@ class EntitiesManager:
|
|
316
311
|
response: SearchResponse = await query_shard(node, shard_id, request)
|
317
312
|
try:
|
318
313
|
facetresults = response.document.facets["/e"].facetresults
|
319
|
-
return {facet.tag.split("/")[-1] for facet in facetresults}
|
320
314
|
except KeyError:
|
321
315
|
# No entities found
|
322
316
|
return set()
|
317
|
+
else:
|
318
|
+
return {facet.tag.split("/")[-1] for facet in facetresults}
|
323
319
|
|
324
320
|
results = await shard_manager.apply_for_all_shards(
|
325
321
|
self.kbid,
|
@@ -327,10 +323,6 @@ class EntitiesManager:
|
|
327
323
|
settings.relation_types_timeout,
|
328
324
|
use_read_replica_nodes=self.use_read_replica_nodes,
|
329
325
|
)
|
330
|
-
for result in results:
|
331
|
-
if isinstance(result, Exception):
|
332
|
-
errors.capture_exception(result)
|
333
|
-
raise NodeError("Error while looking for relations types")
|
334
326
|
|
335
327
|
if not results:
|
336
328
|
return set()
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: nucliadb
|
3
|
-
Version: 6.2.1.
|
3
|
+
Version: 6.2.1.post3071
|
4
4
|
Home-page: https://docs.nuclia.dev/docs/management/nucliadb/intro
|
5
5
|
Author: NucliaDB Community
|
6
6
|
Author-email: nucliadb@nuclia.com
|
@@ -22,10 +22,10 @@ Classifier: Programming Language :: Python :: 3.12
|
|
22
22
|
Classifier: Programming Language :: Python :: 3 :: Only
|
23
23
|
Requires-Python: >=3.9, <4
|
24
24
|
Description-Content-Type: text/markdown
|
25
|
-
Requires-Dist: nucliadb-telemetry[all]>=6.2.1.
|
26
|
-
Requires-Dist: nucliadb-utils[cache,fastapi,storages]>=6.2.1.
|
27
|
-
Requires-Dist: nucliadb-protos>=6.2.1.
|
28
|
-
Requires-Dist: nucliadb-models>=6.2.1.
|
25
|
+
Requires-Dist: nucliadb-telemetry[all]>=6.2.1.post3071
|
26
|
+
Requires-Dist: nucliadb-utils[cache,fastapi,storages]>=6.2.1.post3071
|
27
|
+
Requires-Dist: nucliadb-protos>=6.2.1.post3071
|
28
|
+
Requires-Dist: nucliadb-models>=6.2.1.post3071
|
29
29
|
Requires-Dist: nucliadb-admin-assets>=1.0.0.post1224
|
30
30
|
Requires-Dist: nuclia-models>=0.24.2
|
31
31
|
Requires-Dist: uvicorn
|
@@ -47,7 +47,7 @@ nucliadb/common/cluster/base.py,sha256=kklDqyvsubNX0W494ttl9f3E58lGaX6AXqAd8XX8Z
|
|
47
47
|
nucliadb/common/cluster/exceptions.py,sha256=V3c_fgH00GyJ-a5CaGLhwTuhwhUNR9YAGvS5jaRuc_Y,1495
|
48
48
|
nucliadb/common/cluster/grpc_node_dummy.py,sha256=L85wBnfab7Rev0CfsfUjPxQC6DiHPsETKrZAOLx9XHg,3510
|
49
49
|
nucliadb/common/cluster/index_node.py,sha256=g38H1kiAliF3Y6et_CWYInpn_xPxf7THAFJ7RtgLNZo,3246
|
50
|
-
nucliadb/common/cluster/manager.py,sha256=
|
50
|
+
nucliadb/common/cluster/manager.py,sha256=cj8yNIspsmdyGUq3vbyW--r-LcxAUqA4S9tocz6MsCM,15695
|
51
51
|
nucliadb/common/cluster/rebalance.py,sha256=jSEYsPgs_Dobv3FOaKl5arBko4s8JlWkahm8LOzgNnE,9135
|
52
52
|
nucliadb/common/cluster/rollover.py,sha256=dx6AF9ywKP10iBNlcoJgRV40921fOPpVWaCUU54hztE,25823
|
53
53
|
nucliadb/common/cluster/settings.py,sha256=TMoym-cZsQ2soWfLAce0moSa2XncttQyhahL43LrWTo,3384
|
@@ -128,7 +128,7 @@ nucliadb/ingest/fields/text.py,sha256=tFvSQJAe0W7ePpp2_WDfLiE2yglR1OTU0Zht9acvOF
|
|
128
128
|
nucliadb/ingest/orm/__init__.py,sha256=cp15ZcFnHvpcu_5-aK2A4uUyvuZVV_MJn4bIXMa20ks,835
|
129
129
|
nucliadb/ingest/orm/brain.py,sha256=UND5EsNUdd7XdjScYqRqg4r_xCx3l-My8alGw5M9CWg,28398
|
130
130
|
nucliadb/ingest/orm/broker_message.py,sha256=ZEMueoGuuRKO4tHgzc0P0AM1Ls1TTYey_4UvRQf0BpY,6915
|
131
|
-
nucliadb/ingest/orm/entities.py,sha256=
|
131
|
+
nucliadb/ingest/orm/entities.py,sha256=sBhg8eahsWVwO34KoAJV2YRix4Uw5GINx3srJWxRC9k,15148
|
132
132
|
nucliadb/ingest/orm/exceptions.py,sha256=k4Esv4NtL4TrGTcsQpwrSfDhPQpiYcRbB1SpYmBX5MY,1432
|
133
133
|
nucliadb/ingest/orm/knowledgebox.py,sha256=IGOPvBR1qXqDxE5DeiOdYCLdPgjzOVVpsASJ2zYvWwQ,23651
|
134
134
|
nucliadb/ingest/orm/metrics.py,sha256=OkwMSPKLZcKba0ZTwtTiIxwBgaLMX5ydhGieKvi2y7E,1096
|
@@ -329,9 +329,9 @@ nucliadb/writer/tus/local.py,sha256=7jYa_w9b-N90jWgN2sQKkNcomqn6JMVBOVeDOVYJHto,
|
|
329
329
|
nucliadb/writer/tus/s3.py,sha256=vF0NkFTXiXhXq3bCVXXVV-ED38ECVoUeeYViP8uMqcU,8357
|
330
330
|
nucliadb/writer/tus/storage.py,sha256=ToqwjoYnjI4oIcwzkhha_MPxi-k4Jk3Lt55zRwaC1SM,2903
|
331
331
|
nucliadb/writer/tus/utils.py,sha256=MSdVbRsRSZVdkaum69_0wku7X3p5wlZf4nr6E0GMKbw,2556
|
332
|
-
nucliadb-6.2.1.
|
333
|
-
nucliadb-6.2.1.
|
334
|
-
nucliadb-6.2.1.
|
335
|
-
nucliadb-6.2.1.
|
336
|
-
nucliadb-6.2.1.
|
337
|
-
nucliadb-6.2.1.
|
332
|
+
nucliadb-6.2.1.post3071.dist-info/METADATA,sha256=mbRwoP8OS4lUygXdPQgnAcU7Q3o7AunTre_KXI5E66o,4603
|
333
|
+
nucliadb-6.2.1.post3071.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
334
|
+
nucliadb-6.2.1.post3071.dist-info/entry_points.txt,sha256=XqGfgFDuY3zXQc8ewXM2TRVjTModIq851zOsgrmaXx4,1268
|
335
|
+
nucliadb-6.2.1.post3071.dist-info/top_level.txt,sha256=hwYhTVnX7jkQ9gJCkVrbqEG1M4lT2F_iPQND1fCzF80,20
|
336
|
+
nucliadb-6.2.1.post3071.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
337
|
+
nucliadb-6.2.1.post3071.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|