Skip to content

Commit 65c80ff

Browse files
GeraldIrGerald Walter Irsiegler
and
Gerald Walter Irsiegler
authored
Upd: persist rechunked array to cluster first to avoid multiple file calls (#174)
persist rechunked array to cluster first to avoid multiple file calls Co-authored-by: Gerald Walter Irsiegler <gerald@Irsiegler-P14s>
1 parent 2c8f1cc commit 65c80ff

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

openeo_processes_dask/process_implementations/ml/curve_fitting.py

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ def fit_curve(
5858

5959
# The dimension along which to fit the curves cannot be chunked!
6060
rechunked_data = data.chunk(chunking)
61+
rechunked_data.persist()
6162

6263
def wrapper(f):
6364
def _wrap(*args, **kwargs):

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "openeo-processes-dask"
3-
version = "2023.10.3"
3+
version = "2023.10.4"
44
description = "Python implementations of many OpenEO processes, dask-friendly by default."
55
authors = ["Lukas Weidenholzer <lukas.weidenholzer@eodc.eu>", "Sean Hoyal <sean.hoyal@eodc.eu>", "Valentina Hutter <valentina.hutter@eodc.eu>"]
66
maintainers = ["EODC Staff <support@eodc.eu>"]

0 commit comments

Comments
 (0)