-
Notifications
You must be signed in to change notification settings - Fork 18
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
Consolidate cubes to make them much faster #141
Labels
enhancement
New feature or request
important
This is very important for the project
urgent
High external pressure to address this ASAP
xcube gen
This is related to data cube generation, CLI "xcube gen"
xcube serve
This is related to server component, CLI "xcube serve"
Comments
forman
added
enhancement
New feature or request
urgent
High external pressure to address this ASAP
important
This is very important for the project
xcube serve
This is related to server component, CLI "xcube serve"
xcube gen
This is related to data cube generation, CLI "xcube gen"
labels
Aug 7, 2019
|
Merged
@AliceBalfanz, @dzelge: I believe we may/should now remove |
I think, that sounds right.
…------------------------
Helge
Brockmann Consult
Von: Norman Fomferra <notifications@github.com>
Gesendet: Montag, 12. August 2019 14:49
An: dcs4cop/xcube <xcube@noreply.github.com>
Cc: Helge Dzierzon <helge.dzierzon@brockmann-consult.de>; Mention <mention@noreply.github.com>
Betreff: Re: [dcs4cop/xcube] Consolidate cubes to make them much faster (#141)
@AliceBalfanz <https://github.com/AliceBalfanz> , @dzelge <https://github.com/dzelge> : I believe we may/should now remove xcube prune and instead make pruning an option of xcube optimize. What do you think?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub <#141> , or mute the thread <https://github.com/notifications/unsubscribe-auth/AKDZYIIUMOUB24IPPH6GESDQEFL2XANCNFSM4IJ5BMUQ> . <https://github.com/notifications/beacon/AKDZYIPJZAMWNWOBLEDVPADQEFL2XA5CNFSM4IJ5BMU2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD4CNPMY.gif>
|
I agree. |
Done. |
Reopened, as xcube server does not yet support the consolidated flag. |
This was referenced Sep 26, 2019
Done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
enhancement
New feature or request
important
This is very important for the project
urgent
High external pressure to address this ASAP
xcube gen
This is related to data cube generation, CLI "xcube gen"
xcube serve
This is related to server component, CLI "xcube serve"
Is your feature request related to a problem? Please describe.
Opening larger cubes from OTC Object Storage or AWS S3 takes too long. Analysis has shown that this is caused mainly by the many HTTP requests made for
.zarray
and.zattrs
metadata files, either by checking for existence or to load them;chunks={'time': 1, 'lat': 1000, 'lon': 1000)
.Describe the solution you'd like
"Consolidate" cubes after each append, insert, and overwrite of time slices using
xcube gen
. That includesTODO
consolidate <dataset>
so we can consolidate existing cubes.consolidate_dataset
consolidate_dataset
fromxcube gen
after creating or extending cubesxcube serve
, use xarray's open_zarr function with theconsolidated=True
flag.Additional context
CyanoAlert cubes in OTC OBS take up to a few minutes to open, see #131 and xcube-dev/xcube-viewer#61
The text was updated successfully, but these errors were encountered: