rapidata 2.40.2__py3-none-any.whl → 2.40.4__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.

Potentially problematic release.


This version of rapidata might be problematic. Click here for more details.

rapidata/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
- __version__ = "2.40.2"
1
+ __version__ = "2.40.4"
2
2
 
3
3
  from .rapidata_client import (
4
4
  RapidataClient,
@@ -90,7 +90,6 @@ class RapidataTracer:
90
90
  )
91
91
 
92
92
  self._tracer_provider = TracerProvider(resource=resource)
93
- trace.set_tracer_provider(self._tracer_provider)
94
93
 
95
94
  exporter = OTLPSpanExporter(
96
95
  endpoint="https://otlp-sdk.rapidata.ai/v1/traces",
@@ -100,7 +99,7 @@ class RapidataTracer:
100
99
  span_processor = BatchSpanProcessor(exporter)
101
100
  self._tracer_provider.add_span_processor(span_processor)
102
101
 
103
- self._real_tracer = trace.get_tracer(self._name)
102
+ self._real_tracer = self._tracer_provider.get_tracer(self._name)
104
103
  self._otlp_initialized = True
105
104
 
106
105
  except Exception as e:
@@ -32,10 +32,11 @@ class ProgressTracker:
32
32
  return self.openapi_service.dataset_api.dataset_dataset_id_progress_get(
33
33
  self.dataset_id
34
34
  )
35
- except Exception: # noqa: BLE001
35
+ except Exception:
36
36
  return None
37
37
 
38
38
  def complete(self) -> None:
39
+ logger.debug("Upload complete, setting upload_complete to True")
39
40
  self.upload_complete = True
40
41
 
41
42
  def run(self) -> None:
@@ -45,6 +46,7 @@ class ProgressTracker:
45
46
  desc="Uploading datapoints",
46
47
  disable=rapidata_config.logging.silent_mode,
47
48
  ) as pbar:
49
+ final_pass = False
48
50
  while True:
49
51
  current_progress = self._get_progress_or_none()
50
52
  if current_progress is None:
@@ -65,6 +67,12 @@ class ProgressTracker:
65
67
  break
66
68
 
67
69
  if self.upload_complete and current_progress.pending == 0:
70
+ if not final_pass:
71
+ logger.debug("Final pass")
72
+ time.sleep(self.progress_poll_interval)
73
+ final_pass = True
74
+ continue
75
+ logger.debug("Final pass done, breaking out of loop")
68
76
  break
69
77
 
70
78
  pbar.close()
@@ -76,12 +84,13 @@ class ProgressTracker:
76
84
  )
77
85
 
78
86
  logger.info(
79
- "Upload complete: %s ready, %s failed (%s%% success rate)",
87
+ "Upload complete: %s ready, %s failed, %s pending (%s%% success rate)",
80
88
  current_progress.ready,
81
89
  current_progress.failed,
90
+ current_progress.pending,
82
91
  success_rate,
83
92
  )
84
- except Exception as e: # noqa: BLE001
93
+ except Exception as e:
85
94
  logger.error("Progress tracking thread error: %s", str(e))
86
95
  raise RuntimeError("Progress tracking failed, aborting uploads")
87
96
 
@@ -89,8 +89,6 @@ class RapidataClient:
89
89
  logger.debug("Initializing RapidataBenchmarkManager")
90
90
  self.mri = RapidataBenchmarkManager(openapi_service=self._openapi_service)
91
91
 
92
- self._check_beta_features()
93
-
94
92
  def reset_credentials(self):
95
93
  """Reset the credentials saved in the configuration file for the current environment."""
96
94
  self._openapi_service.reset_credentials()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: rapidata
3
- Version: 2.40.2
3
+ Version: 2.40.4
4
4
  Summary: Rapidata package containing the Rapidata Python Client to interact with the Rapidata Web API in an easy way.
5
5
  License: Apache-2.0
6
6
  Author: Rapidata AG
@@ -1,4 +1,4 @@
1
- rapidata/__init__.py,sha256=nNNJT2nQfhHYe5yS9T3V-0MeyarzPFCtE_66Wnit6ho,917
1
+ rapidata/__init__.py,sha256=eYKN-_zLrN6w3N-Mnd0w7MckYzcZC1w_nm9yq-O8xTY,917
2
2
  rapidata/api_client/__init__.py,sha256=utY2iWepKJQO_iGz6aIg_qSoqoDkV9pBMAA58pIFE4M,36016
3
3
  rapidata/api_client/api/__init__.py,sha256=07qqwzQiBYt5V2BtnzbXhZL2cmVHATyZmCSGshIXLck,1603
4
4
  rapidata/api_client/api/benchmark_api.py,sha256=Mlx2qDDJcgPjWvaBnps9dxvVd0re1knG0SyoLUiHKSc,119756
@@ -586,7 +586,7 @@ rapidata/rapidata_client/config/logging_config.py,sha256=ePCh7X6v0Yzkgq1MhFNsHwL
586
586
  rapidata/rapidata_client/config/managed_print.py,sha256=2T6dwgR1EZzFAdOEyPp_BBUsa-qrEuhOXgFhsSQKvRo,185
587
587
  rapidata/rapidata_client/config/order_config.py,sha256=XxRZERzUUA9md6-PVlV__eCw8DD2kPbT_UmMwG1mAS4,615
588
588
  rapidata/rapidata_client/config/rapidata_config.py,sha256=mURnKdl5-2sE4e_IYY9-aBkix6a12t47otEErGE_q0c,1507
589
- rapidata/rapidata_client/config/tracer.py,sha256=h3GXzaX79HPcip4fBhLaLW0mRlXttR7D3KA78ZT0KVw,4736
589
+ rapidata/rapidata_client/config/tracer.py,sha256=9P27QybtkjJ0U5ocPkIu58DUQB-MgVksQOMhuwKHKcY,4687
590
590
  rapidata/rapidata_client/config/upload_config.py,sha256=hjefl-w9WaCNeCEe6hdnrAQEMjgDy-r1zgUUIFR68wk,473
591
591
  rapidata/rapidata_client/country_codes/__init__.py,sha256=FB9Dcks44J6C6YBSYmTmNZ71tE130x6NO_3aLJ8fKzQ,40
592
592
  rapidata/rapidata_client/country_codes/country_codes.py,sha256=ePHqeb7y9DWQZAnddBzPx1puYBcrgUjdR2sbFijuFD8,283
@@ -632,12 +632,12 @@ rapidata/rapidata_client/filter/response_count_filter.py,sha256=i2u2YQD3_RLQRZyq
632
632
  rapidata/rapidata_client/filter/user_score_filter.py,sha256=4B3Zzp7aosDFmte3nLPTlXMN4zatT6Wcq5QLIoXqhgI,1910
633
633
  rapidata/rapidata_client/order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
634
634
  rapidata/rapidata_client/order/_rapidata_order_builder.py,sha256=C-TbKELNuLjQiZt9Gsl6LdtzIUtsu0sNLKGIcLvJEHk,17120
635
- rapidata/rapidata_client/order/dataset/_progress_tracker.py,sha256=PkTSYrLVNgtXjklXj5ikBEcgF6qaYXoafYyUZQHRn9M,3109
635
+ rapidata/rapidata_client/order/dataset/_progress_tracker.py,sha256=2e9aVMwpdBSO9P3LYn5lygNbtIGzOaJD3b9J7jYaxko,3570
636
636
  rapidata/rapidata_client/order/dataset/_rapidata_dataset.py,sha256=ONH56htEvoVZvkSItuTi3_88kaDWohmYYABSoAPEn4Q,10724
637
637
  rapidata/rapidata_client/order/rapidata_order.py,sha256=FvZi3t4dARRNsKWvYiNxVvM50AzPwQYR3AzI4utD6OI,14497
638
638
  rapidata/rapidata_client/order/rapidata_order_manager.py,sha256=XiV_BpJxG6d8o0rFDYhnB3_mb576CQG5hY-qVXlJZKY,42592
639
639
  rapidata/rapidata_client/order/rapidata_results.py,sha256=weL4S14fzug3ZOJbQk9Oj-4tv2jx5aZAMp7VJ-a6Qq4,8437
640
- rapidata/rapidata_client/rapidata_client.py,sha256=Dm7ZW2tv0QNL1pMk8NHY79vpFXyPeKU6s0WMFHHIH20,5728
640
+ rapidata/rapidata_client/rapidata_client.py,sha256=yEwUsxR0OZbCb2B6QXS23WEVfNZPxRTMi2Hxto2hynw,5687
641
641
  rapidata/rapidata_client/referee/__init__.py,sha256=J8oZJNUduPr-Tmn8iJwR-qBiSv7owhUFcEzXTRETecw,155
642
642
  rapidata/rapidata_client/referee/_base_referee.py,sha256=aoH3Werw-AtQo2TncG69OmCVvnbXYJBfsRCQry_Pll0,497
643
643
  rapidata/rapidata_client/referee/_early_stopping_referee.py,sha256=_JyFcTpncI0PrLf7Ix78FtLto31sdyGDS-2QbVTuvr8,2079
@@ -690,7 +690,7 @@ rapidata/service/credential_manager.py,sha256=T3yL4tXVnibRytxjQkOC-ex3kFGQR5KcKU
690
690
  rapidata/service/local_file_service.py,sha256=0Q4LdoEtPFKzgXK2oZ1cQ-X7FipakscjGnnBH8dRFRQ,855
691
691
  rapidata/service/openapi_service.py,sha256=k3V4eMNcAjBcxEv17lDivK8LV5TEjRTL9B_5KBlhcas,5482
692
692
  rapidata/types/__init__.py,sha256=gSGrmWV5gEA6pPfAR5vwSy_DvibO5IjCZDiB7LtlMOQ,6134
693
- rapidata-2.40.2.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
694
- rapidata-2.40.2.dist-info/METADATA,sha256=j6edMuFl30ALoelOUbusmBXYPwMCJjfUZbWfzk2GsdY,1406
695
- rapidata-2.40.2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
696
- rapidata-2.40.2.dist-info/RECORD,,
693
+ rapidata-2.40.4.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
694
+ rapidata-2.40.4.dist-info/METADATA,sha256=VWYYAZVvVOsnGQ3LytBR37ttKupkFH_Xo9acIWN-IRo,1406
695
+ rapidata-2.40.4.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
696
+ rapidata-2.40.4.dist-info/RECORD,,