nominal 1.111.0__py3-none-any.whl → 1.111.2__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.
CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.111.2](https://github.com/nominal-io/nominal-client/compare/v1.111.1...v1.111.2) (2026-02-04)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * prevent decimated exports from bricking polars export handler ([#596](https://github.com/nominal-io/nominal-client/issues/596)) ([8106f74](https://github.com/nominal-io/nominal-client/commit/8106f74dbc985c3f62946dbc4861eefa8e064964))
9
+
10
+ ## [1.111.1](https://github.com/nominal-io/nominal-client/compare/v1.111.0...v1.111.1) (2026-01-29)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * update bounds on dataset ([#598](https://github.com/nominal-io/nominal-client/issues/598)) ([9d57d3a](https://github.com/nominal-io/nominal-client/commit/9d57d3ae515359dce3ae4c102ffe230e3bf91faf))
16
+
3
17
  ## [1.111.0](https://github.com/nominal-io/nominal-client/compare/v1.110.0...v1.111.0) (2026-01-29)
4
18
 
5
19
 
nominal/core/dataset.py CHANGED
@@ -118,8 +118,8 @@ class Dataset(DataSource, RefreshableMixin[scout_catalog.EnrichedDataset]):
118
118
  end=_SecondsNanos.from_flexible(end).to_nanoseconds(),
119
119
  )
120
120
  request = scout_catalog.UpdateBoundsRequest(bounds=bounds._to_conjure())
121
- updated_dataset = self._clients.catalog.update_bounds(self._clients.auth_header, request, self.rid)
122
- return self._refresh_from_api(updated_dataset)
121
+ self._clients.catalog.update_global_dataset_bounds(self._clients.auth_header, request, self.rid)
122
+ return self.refresh()
123
123
 
124
124
  def _handle_ingest_response(self, response: ingest_api.IngestResponse) -> DatasetFile:
125
125
  if response.details.dataset is None:
@@ -42,6 +42,10 @@ DEFAULT_POINTS_PER_DATAFRAME = 25_000_000
42
42
  # Maximum number of channels to get data for within a single request to Nominal
43
43
  DEFAULT_CHANNELS_PER_REQUEST = 25
44
44
 
45
+ # Maximum number of buckets / decimated points exported per compute query.
46
+ # TODO(drake) raise 1000 limit once backend limit is raised
47
+ MAX_NUM_BUCKETS = 1000
48
+
45
49
  DEFAULT_EXPORTED_TIMESTAMP_COL_NAME = "timestamp"
46
50
  _INTERNAL_TS_COL = "__nmnl_ts__" # internal join key, chosen to avoid collision with channel names
47
51
 
@@ -133,8 +137,8 @@ def _batch_channel_points_per_second(
133
137
  if not channels:
134
138
  logger.warning("No channels given!")
135
139
  return {}
136
- elif num_buckets > 1000:
137
- raise ValueError("num_buckets must be <=1000")
140
+ elif num_buckets > MAX_NUM_BUCKETS:
141
+ raise ValueError(f"num_buckets ({num_buckets}) must be <= {MAX_NUM_BUCKETS}")
138
142
 
139
143
  # For each channel that has data with the given tags within the provided time range, add a
140
144
  # compute expression to later retrieve decimated bucket stats
@@ -683,6 +687,27 @@ class PolarsExportHandler:
683
687
  if None not in (buckets, resolution):
684
688
  raise ValueError("Cannot export data decimated with both buckets and resolution")
685
689
 
690
+ if resolution is not None:
691
+ # If the batch duration is higher than this number, and data is actually downsampled with the
692
+ # given resolution, then it would error today if the batch duration is any larger than this.
693
+ computed_batch_duration = datetime.timedelta(seconds=(resolution * MAX_NUM_BUCKETS) / 1e9)
694
+ if batch_duration is None:
695
+ logger.info(
696
+ "Manually setting batch_duration to %fs (resolution=%dns)",
697
+ computed_batch_duration.total_seconds(),
698
+ resolution,
699
+ )
700
+ batch_duration = computed_batch_duration
701
+ elif computed_batch_duration < batch_duration:
702
+ logger.warning(
703
+ "Configured batch_duration of %fs would result in failing exports with resolution=%dns. "
704
+ "Setting batch_duration to %fs instead.",
705
+ batch_duration.total_seconds(),
706
+ resolution,
707
+ computed_batch_duration.total_seconds(),
708
+ )
709
+ batch_duration = computed_batch_duration
710
+
686
711
  # Determine download schedule
687
712
  export_jobs = self._compute_export_jobs(
688
713
  channels, _TimeRange(start, end), timestamp_type, tags or {}, buckets, resolution, batch_duration
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nominal
3
- Version: 1.111.0
3
+ Version: 1.111.2
4
4
  Summary: Automate Nominal workflows in Python
5
5
  Project-URL: Homepage, https://nominal.io
6
6
  Project-URL: Documentation, https://docs.nominal.io
@@ -21,7 +21,7 @@ Requires-Dist: click<9,>=8
21
21
  Requires-Dist: conjure-python-client<4,>=3.1.0
22
22
  Requires-Dist: ffmpeg-python>=0.2.0
23
23
  Requires-Dist: nominal-api==0.1079.0
24
- Requires-Dist: nominal-streaming==0.5.8; platform_python_implementation == 'CPython' and python_version >= '3.10' and ((sys_platform == 'win32' and platform_machine == 'AMD64') or (sys_platform == 'darwin' and platform_machine == 'arm64') or (sys_platform == 'linux' and (platform_machine == 'x86_64' or platform_machine == 'armv7l')))
24
+ Requires-Dist: nominal-streaming==0.7.12; platform_python_implementation == 'CPython' and python_version >= '3.10' and ((sys_platform == 'win32' and platform_machine == 'AMD64') or (sys_platform == 'darwin' and platform_machine == 'arm64') or (sys_platform == 'linux' and (platform_machine == 'x86_64' or platform_machine == 'armv7l' or platform_machine == 'aarch64' or platform_machine == 'arm64')))
25
25
  Requires-Dist: openpyxl>=0.0.0
26
26
  Requires-Dist: pandas>=0.0.0
27
27
  Requires-Dist: polars>=0.0.0
@@ -1,4 +1,4 @@
1
- CHANGELOG.md,sha256=kMJRSF1lP8evZvrdsVNE9E-a4A9JhWBGMFhTl7sbON0,91733
1
+ CHANGELOG.md,sha256=N98MknWWJvVP9TF_wOjm8wgAofSWzf2v0kOHmv34MvQ,92404
2
2
  LICENSE,sha256=zEGHG9mjDjaIS3I79O8mweQo-yiTbqx8jJvUPppVAwk,1067
3
3
  README.md,sha256=KKe0dxh_pHXCtB7I9G4qWGQYvot_BZU8yW6MJyuyUHM,311
4
4
  nominal/__init__.py,sha256=rbraORnXUrNn1hywLXM0XwSQCd9UmQt20PDYlsBalfE,2167
@@ -43,7 +43,7 @@ nominal/core/client.py,sha256=RjMQCU8DmvHcp7lypVCFLY54caoTXu76EwN-oxaFjsw,68091
43
43
  nominal/core/connection.py,sha256=LYllr3a1H2xp8-i4MaX1M7yK8X-HnwuIkciyK9XgLtQ,5175
44
44
  nominal/core/containerized_extractors.py,sha256=fUz3-NHoNWYKqOCD15gLwGXDKVfdsW-x_kpXnkOI3BE,10224
45
45
  nominal/core/data_review.py,sha256=8pyoJiP-6KCSSB4NE_LKjp1JfenEigHTmEVdF1xF1bA,11674
46
- nominal/core/dataset.py,sha256=rSMB9CKw0OhCIxiPV4Jz84I4QLL71ZGLYZqD3GBfzVo,48674
46
+ nominal/core/dataset.py,sha256=gnI_nZT1U1kAT_qGp40LgdKjLfRzFIhqst0Mk5vvWzE,48646
47
47
  nominal/core/dataset_file.py,sha256=1cvEsf3IXGCOIr5kWIBBSwfHpZMAY-BEUEtewR6RjNc,16789
48
48
  nominal/core/datasource.py,sha256=lW9CqeA_4gNqeSjx0u-hyp0W1yeyWuMLqUXFhF5e0QM,18604
49
49
  nominal/core/event.py,sha256=8trZXyuAqRlKedgcqSgDIimXAAJBmEfDLyHkOOBwUC0,7762
@@ -109,12 +109,12 @@ nominal/thirdparty/matlab/_matlab.py,sha256=qtrO_wP_o9J2oqiwhriSfL0LYO7rBzssoHyg
109
109
  nominal/thirdparty/pandas/__init__.py,sha256=wnPcbvZrTCNM5cphvwn198dCn7Dcp1QJFDK12mcdd8w,361
110
110
  nominal/thirdparty/pandas/_pandas.py,sha256=QcM1tk-Z5W8bKd9oYz5rD6M3qIHZ0N5uUe_UOVOQC08,16367
111
111
  nominal/thirdparty/polars/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
- nominal/thirdparty/polars/polars_export_handler.py,sha256=hGCSwXX9dC4MG01CmmjlTbcajktMYDb-GpNNTwLUsRw,32951
112
+ nominal/thirdparty/polars/polars_export_handler.py,sha256=1XjdOYWpiU2ilSU5tcjNpoLoRw1GrgrhtcgwR8Cobxo,34301
113
113
  nominal/thirdparty/tdms/__init__.py,sha256=6n2ImFr2Wiil6JM1P5Q7Mpr0VzLcnDkmup_ftNpPq-s,142
114
114
  nominal/thirdparty/tdms/_tdms.py,sha256=m4gxbpxB9MTLi2FuYvGlbUGSyDAZKFxbM3ia2x1wIz0,8746
115
115
  nominal/ts/__init__.py,sha256=hmd0ENvDhxRnzDKGLxIub6QG8LpcxCgcyAct029CaEs,21442
116
- nominal-1.111.0.dist-info/METADATA,sha256=Ysxt0asOhclp8ByoO1yzp3-gWL_WLoKEYHTps_ACIU8,2307
117
- nominal-1.111.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
118
- nominal-1.111.0.dist-info/entry_points.txt,sha256=-mCLhxgg9R_lm5efT7vW9wuBH12izvY322R0a3TYxbE,66
119
- nominal-1.111.0.dist-info/licenses/LICENSE,sha256=zEGHG9mjDjaIS3I79O8mweQo-yiTbqx8jJvUPppVAwk,1067
120
- nominal-1.111.0.dist-info/RECORD,,
116
+ nominal-1.111.2.dist-info/METADATA,sha256=7Bx_PWaPm2gNVpTzZAfRp7s0s3LOlBhYaGOIuWFuF7s,2372
117
+ nominal-1.111.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
118
+ nominal-1.111.2.dist-info/entry_points.txt,sha256=-mCLhxgg9R_lm5efT7vW9wuBH12izvY322R0a3TYxbE,66
119
+ nominal-1.111.2.dist-info/licenses/LICENSE,sha256=zEGHG9mjDjaIS3I79O8mweQo-yiTbqx8jJvUPppVAwk,1067
120
+ nominal-1.111.2.dist-info/RECORD,,