You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some adcp files ** are not being imported into the ERDDAP dataset. Initial tests by @n-a-t-e suggest that this is due to insufficient memory while the ERDDAP dataset is being constructed.
Other points:
The ADCP dataset is the largest one amongst the IOS datasets
Dividing the millar1* file into 3 smaller files seems to get around this problem. Note sure why this is the case. Dividing the file into smaller files is not an ideal solution and ERDDAP ought to be able to handle much larger files.
** Problem file(s):
millar1_20171007_20181015_0018m.adcp.L1.nc
The text was updated successfully, but these errors were encountered:
Last year at the Ann Arbour Code Sprint I asked Bob about the size of files in ERDDAP - was it better to use a few large files or many smaller ones. His answer was that it's better to use many smaller files - according to him, this is true whether it's local or remote (especially if retrieving files from a remote location like Amazon S3).
ERDDAP will do some internal indexing and map what files contain what data - many smaller files actually end up being more efficient.
If it is convenient, it's still always a good idea to split huge tabular data files into several smaller files based on some criteria like stationID and/or time. ERDDAP will often only have to open one of the small files in response to a user's request, and thus be able to respond much faster.
Also, you might want to try bumping up the memory available to ERDDAP to be 8GB (or higher), that might help as well - when in doubt throw more RAM at the problem!
This was a strange one, as the problematic file isn't really that big, and also isn't the largest one in the dataset. I tried bumping RAM to 12GB and it still causes ERDDAP to crash. But splitting up the file does make it work, so we can do that for now.
Some adcp files ** are not being imported into the ERDDAP dataset. Initial tests by @n-a-t-e suggest that this is due to insufficient memory while the ERDDAP dataset is being constructed.
Other points:
** Problem file(s):
millar1_20171007_20181015_0018m.adcp.L1.nc
The text was updated successfully, but these errors were encountered: