nucliadb 6.1.0.post2507__py3-none-any.whl → 6.1.0.post2518__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.
@@ -291,56 +291,7 @@ class IngestProcessedConsumer(IngestConsumer):
291
291
  other writes are going to be coming from user actions and we don't want to slow them down.
292
292
  """
293
293
 
294
- async def get_stream_last_seqid(self) -> Optional[int]:
295
- """
296
- XXX NOTE: Getting the last sequence id of the stream for the processed pull consumer is only needed when the new pull consumer is created.
297
-
298
- For environments where we had the previous push consumer, we need to get the last sequence id from the old consumer info so that
299
- we can start from there.
300
-
301
- This code must be deleted once the new pull consumers are deployed on all environments and all the old push consumers have been deleted.
302
- From then on, we will rely on the nats server to keep track of the last sequence id.
303
- """
304
- if has_feature(const.Features.PULL_PROCESSED_CONSUMERS_DEPLOYED):
305
- logger.warning(
306
- f"Feature flag {const.Features.PULL_PROCESSED_CONSUMERS_DEPLOYED} is enabled. Relying on nats to keep track of the last sequence id."
307
- )
308
- return None
309
-
310
- try:
311
- push_consumer_info: nats.js.api.ConsumerInfo = (
312
- await self.nats_connection_manager.js.consumer_info(
313
- stream=const.Streams.INGEST_PROCESSED.name,
314
- # This is the old consumer name
315
- consumer="nucliadb-processed",
316
- timeout=2,
317
- )
318
- )
319
- # Start from the last non-acked message
320
- if push_consumer_info.ack_floor is None:
321
- logger.warning(
322
- f"Nats consumer {push_consumer_info.name} has no ack floor. Starting from scratch."
323
- )
324
- return 1
325
- last_seqid = push_consumer_info.ack_floor.stream_seq + 1
326
- logger.info(
327
- f"Starting from last sequence id {last_seqid} for {const.Streams.INGEST_PROCESSED.name}"
328
- )
329
- return last_seqid
330
- except (nats.js.errors.NotFoundError, nats.errors.TimeoutError):
331
- logger.warning(
332
- f"Could not get last sequence id for {const.Streams.INGEST_PROCESSED.name}. Starting from scratch."
333
- )
334
- # Start from scratch
335
- return 1
336
-
337
294
  async def setup_nats_subscription(self):
338
- last_sequence_id = await self.get_stream_last_seqid()
339
- if last_sequence_id is None:
340
- delivery_policy = nats.js.api.DeliverPolicy.ALL
341
- else:
342
- delivery_policy = nats.js.api.DeliverPolicy.BY_START_SEQUENCE
343
-
344
295
  subject = const.Streams.INGEST_PROCESSED.subject
345
296
  durable_name = const.Streams.INGEST_PROCESSED.group
346
297
  self.subscription = await self.nats_connection_manager.pull_subscribe(
@@ -352,8 +303,7 @@ class IngestProcessedConsumer(IngestConsumer):
352
303
  config=nats.js.api.ConsumerConfig(
353
304
  durable_name=durable_name,
354
305
  ack_policy=nats.js.api.AckPolicy.EXPLICIT,
355
- deliver_policy=delivery_policy,
356
- opt_start_seq=last_sequence_id,
306
+ deliver_policy=nats.js.api.DeliverPolicy.ALL,
357
307
  max_ack_pending=1,
358
308
  max_deliver=nats_consumer_settings.nats_max_deliver,
359
309
  ack_wait=nats_consumer_settings.nats_ack_wait,
@@ -49,7 +49,7 @@ from nucliadb.writer.tus.exceptions import (
49
49
  from nucliadb.writer.tus.storage import BlobStore, FileStorageManager
50
50
  from nucliadb.writer.tus.utils import to_str
51
51
  from nucliadb_protos.resources_pb2 import CloudFile
52
- from nucliadb_utils.storages.gcs import CHUNK_SIZE, MIN_UPLOAD_SIZE
52
+ from nucliadb_utils.storages.gcs import CHUNK_SIZE, MIN_UPLOAD_SIZE, TIMEOUT
53
53
 
54
54
 
55
55
  class GoogleCloudException(Exception):
@@ -142,7 +142,7 @@ class GCloudBlobStore(BlobStore):
142
142
  self._credentials = None
143
143
 
144
144
  loop = asyncio.get_event_loop()
145
- self.session = aiohttp.ClientSession(loop=loop)
145
+ self.session = aiohttp.ClientSession(loop=loop, timeout=TIMEOUT)
146
146
 
147
147
  async def check_exists(self, bucket_name: str):
148
148
  if self.session is None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: nucliadb
3
- Version: 6.1.0.post2507
3
+ Version: 6.1.0.post2518
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.1.0.post2507
26
- Requires-Dist: nucliadb-utils[cache,fastapi,storages]>=6.1.0.post2507
27
- Requires-Dist: nucliadb-protos>=6.1.0.post2507
28
- Requires-Dist: nucliadb-models>=6.1.0.post2507
25
+ Requires-Dist: nucliadb-telemetry[all]>=6.1.0.post2518
26
+ Requires-Dist: nucliadb-utils[cache,fastapi,storages]>=6.1.0.post2518
27
+ Requires-Dist: nucliadb-protos>=6.1.0.post2518
28
+ Requires-Dist: nucliadb-models>=6.1.0.post2518
29
29
  Requires-Dist: nucliadb-admin-assets>=1.0.0.post1224
30
30
  Requires-Dist: nucliadb-node-binding>=2.26.0
31
31
  Requires-Dist: uvicorn
@@ -115,7 +115,7 @@ nucliadb/ingest/settings.py,sha256=SDQpMRsTsNyi6IDxCJy6BZVUSKUzwAMuxf6ktp31VMM,3
115
115
  nucliadb/ingest/utils.py,sha256=l1myURu3r8oA11dx3GpHw-gNTUc1AFX8xdPm9Lgl2rA,2275
116
116
  nucliadb/ingest/consumer/__init__.py,sha256=cp15ZcFnHvpcu_5-aK2A4uUyvuZVV_MJn4bIXMa20ks,835
117
117
  nucliadb/ingest/consumer/auditing.py,sha256=EJoqRRr4dk2eUMK0GOY6b9xHO0YLQ0LjoP_xZBLACZo,7280
118
- nucliadb/ingest/consumer/consumer.py,sha256=G4YIDSTqbZALMf9COAeitPrFmDbxNUvmBMIC0h_bUvo,16341
118
+ nucliadb/ingest/consumer/consumer.py,sha256=y9XF4U3cZN5JFzC-ZnBCn7z5viJDMmjoeEprxm7VghE,13941
119
119
  nucliadb/ingest/consumer/materializer.py,sha256=7ofLbwjldJA8TWXDRZRM4U5EviZt3qNSQ8oadmkzS0Y,3840
120
120
  nucliadb/ingest/consumer/metrics.py,sha256=ji1l_4cKiHJthQd8YNem1ft4iMbw9KThmVvJmLcv3Xg,1075
121
121
  nucliadb/ingest/consumer/pull.py,sha256=EYT0ImngMQgatStG68p2GSrPQBbJxeuq8nFm8DdAbwk,9280
@@ -326,14 +326,14 @@ nucliadb/writer/tus/__init__.py,sha256=huWpKnDnjsrKlBBJk30ta5vamlA-4x0TbPs_2Up8h
326
326
  nucliadb/writer/tus/azure.py,sha256=XhWAlWTM0vmXcXtuEPYjjeEhuZjiZXZu8q9WsJ7omFE,4107
327
327
  nucliadb/writer/tus/dm.py,sha256=UTY1pW6mk9xrCWKMS4ncibGHKlywNrceUYPbLIKP3co,5487
328
328
  nucliadb/writer/tus/exceptions.py,sha256=WfZSSjsHfoy63wUFlH3QoHx7FMoCNA1oKJmWpZZDnCo,2156
329
- nucliadb/writer/tus/gcs.py,sha256=q23QxvOUl0itGhIyWiqsjnimeBYrtlEayThnqxRq-rg,14034
329
+ nucliadb/writer/tus/gcs.py,sha256=nApFHim3zPqoP8L1oFz7R7uB4MTJ8azA7SUyIDFBcvs,14060
330
330
  nucliadb/writer/tus/local.py,sha256=7jYa_w9b-N90jWgN2sQKkNcomqn6JMVBOVeDOVYJHto,5193
331
331
  nucliadb/writer/tus/s3.py,sha256=vF0NkFTXiXhXq3bCVXXVV-ED38ECVoUeeYViP8uMqcU,8357
332
332
  nucliadb/writer/tus/storage.py,sha256=ToqwjoYnjI4oIcwzkhha_MPxi-k4Jk3Lt55zRwaC1SM,2903
333
333
  nucliadb/writer/tus/utils.py,sha256=MSdVbRsRSZVdkaum69_0wku7X3p5wlZf4nr6E0GMKbw,2556
334
- nucliadb-6.1.0.post2507.dist-info/METADATA,sha256=gKMwO_dELa98uXILkFVpuVeT4F-lVyO0FZ_yg47Qja8,4390
335
- nucliadb-6.1.0.post2507.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
336
- nucliadb-6.1.0.post2507.dist-info/entry_points.txt,sha256=XqGfgFDuY3zXQc8ewXM2TRVjTModIq851zOsgrmaXx4,1268
337
- nucliadb-6.1.0.post2507.dist-info/top_level.txt,sha256=hwYhTVnX7jkQ9gJCkVrbqEG1M4lT2F_iPQND1fCzF80,20
338
- nucliadb-6.1.0.post2507.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
339
- nucliadb-6.1.0.post2507.dist-info/RECORD,,
334
+ nucliadb-6.1.0.post2518.dist-info/METADATA,sha256=vlXI0isiN0iNukrmEoWn-GRTtBdRk4re7b-NXIv-wTA,4390
335
+ nucliadb-6.1.0.post2518.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
336
+ nucliadb-6.1.0.post2518.dist-info/entry_points.txt,sha256=XqGfgFDuY3zXQc8ewXM2TRVjTModIq851zOsgrmaXx4,1268
337
+ nucliadb-6.1.0.post2518.dist-info/top_level.txt,sha256=hwYhTVnX7jkQ9gJCkVrbqEG1M4lT2F_iPQND1fCzF80,20
338
+ nucliadb-6.1.0.post2518.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
339
+ nucliadb-6.1.0.post2518.dist-info/RECORD,,