Skip to content

Commit

Permalink
download_message: Remove CMS references from the message of big downl…
Browse files Browse the repository at this point in the history
…oads. Increase the limit to 1GB.
  • Loading branch information
psaiz committed Sep 9, 2024
1 parent 5105f6a commit 737921f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cernopendata/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ def _query_parser_and(qstr=None):
FILES_REST_FILE_URI_MAX_LEN = os.environ.get("FILES_REST_FILE_URI_MAX_LEN", 512)
#: Files max size threshold(bytes)
CERNOPENDATA_MAX_DOWNLOAD_SIZE = os.environ.get(
"CERNOPENDATA_MAX_DOWNLOAD_SIZE", 200000000
"CERNOPENDATA_MAX_DOWNLOAD_SIZE", 1000000000
)
#: Make download availalbe for Root files
CERNOPENDATA_DISABLE_DOWNLOADS = os.environ.get("CERNOPENDATA_DISABLE_DOWNLOADS", False)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ export default function DownloadWarningModal({
connection, it may take several hours to download it.
</p>
<p>
Moreover, if you use one of the provided{" "}
<a href="/VM/CMS">Virtual Machines</a> to perform your analyses, then
you don't need to download datasets manually, because the VM will
fetch all the necessary file chunks via the XRootD protocol.
Most collaborations provide container images or virtual machine images allowing to perform analyses.
If you use one of those, then you do not need to download datasets manually,
because all the necessary file chunks will be accessed via the XRootD protocol during the live analysis.
Please check the corresponding <a href="/search?q=&f=type%3ADocumentation%2Bsubtype%3AGuide">getting started</a> guides for more details.
</p>
<p>
Manual download of files via HTTP is only necessary if you would
Expand Down

0 comments on commit 737921f

Please sign in to comment.