Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

When reading multiple files, warn instead of raising on corrupted files. #29

Merged
merged 2 commits into from
Dec 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions tests/test_routines.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import numpy as np
import pytest

import xdas as xd
from xdas.core.coordinates import Coordinates
from xdas.core.dataarray import DataArray
from xdas.core.routines import Bag, CompatibilityError, combine_by_coords
Expand Down Expand Up @@ -193,3 +194,23 @@ def test_expand_scalar_coordinate(self):
assert dc.shape == (2, 10)
assert dc.dims == ("space", "time")
assert dc.coords["space"].values.tolist() == [0, 1]


class TestOpenMFDataArray:
def test_warn_on_corrupted_files(self, tmp_path):
expected = DataArray(
np.random.rand(10, 5),
coords={
"time": np.arange(10),
"space": np.arange(5),
}, # TODO: should work without coords
)
for index, chunk in enumerate(xd.split(expected, 3, "time"), start=1):
chunk.to_netcdf(tmp_path / f"chunk_{index}.nc")
result = xd.open_mfdataarray(str(tmp_path / "*.nc")) # TODO: should accept Path
assert result.equals(expected)
with (tmp_path / "corrupted.nc").open("wb") as f:
f.write(b"corrupted")
with pytest.warns(RuntimeWarning):
result = xd.open_mfdataarray(str(tmp_path / "*.nc"))
assert result.equals(expected)
23 changes: 16 additions & 7 deletions xdas/core/routines.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os
import re
import warnings
from collections import defaultdict
from concurrent.futures import ProcessPoolExecutor, as_completed
from glob import glob
Expand Down Expand Up @@ -323,19 +324,27 @@ def open_mfdataarray(
)
max_workers = 1 if engine == "miniseed" else None # TODO: dirty fix
with ProcessPoolExecutor(max_workers=max_workers) as executor:
futures = [
executor.submit(open_dataarray, path, engine=engine, **kwargs)
futures_to_paths = {
executor.submit(open_dataarray, path, engine=engine, **kwargs): path
for path in paths
]
}
if verbose:
iterator = tqdm(
as_completed(futures),
total=len(futures),
as_completed(futures_to_paths),
total=len(futures_to_paths),
desc="Fetching metadata from files",
)
else:
iterator = as_completed(futures)
objs = [future.result() for future in iterator]
iterator = as_completed(futures_to_paths)
objs = []
for future in iterator:
try:
obj = future.result()
except Exception as e:
path = futures_to_paths[future]
warnings.warn(f"could not open {path}: {e}", RuntimeWarning)
else:
objs.append(obj)
return combine_by_coords(objs, dim, tolerance, squeeze, None, verbose)


Expand Down
Loading