forked from lucianpls/mod_mrf
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Bug fix for extremely large index files #1
Open
lucianpls
wants to merge
91
commits into
nasa-gibs:master
Choose a base branch
from
lucianpls:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Module will use an updated configuration if one exists in the request…
The gzipped content gets sent as such if the request headers declare support for gzip Otherwise, mod_deflate is used to inflate the content. If mod_deflate is not found when needed, a warning is issued Visual Studio project updated to VS2017
c->size.z is 64bit, which will promote the math to 64bit, signed. This is safe until the index file is under 2^63 - 1 bytes.
libpar-2 is still in dev, but it seems to work fine
- Use the subrequest filter stack for receive instead of the main request. This allows stacking of filters - Clean up the subrequest when done
Retry fetching data from remote source when the initial request fails. The number to set is in addition to the first fetch. By default it will try 5 times.
Untested
Is this even necessary?
When set, the module only responds to internal subrequests
Makes more sense to have the indirect flag in the httpd configuration. Also moved the index read in a separate function
MRF_RegExp appears in the apache configuration, not in the control file
Should write a HOWTO to make it easier to understand
This will improve performance for m-dimensional tile services, while still preserving the fast response for the "current" data
Matching libahtse lerc1 branch
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
One of the commits fixes a but that appears when the index per level is larger than 2GB.