-
Notifications
You must be signed in to change notification settings - Fork 29
Add OCS/GCS backend support #342
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
Merged
mschubert
merged 3 commits into
mschubert:master
from
ernst-bablick:feature/ocs-gcs-backend
Mar 28, 2026
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,3 +18,4 @@ src/Makevars | |
| windows | ||
| /doc/ | ||
| /Meta/ | ||
| .idea/ | ||
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| # Submit client should only show the job ID of the new job on success | ||
| #$ -terse | ||
|
|
||
| # Name of the job visible in OCS | ||
| #$ -N {{ job_name }} | ||
|
|
||
| # Join error and output file. | ||
| #$ -j y | ||
|
|
||
| # Location of the output file | ||
| #$ -o {{ log_file | /dev/null }} | ||
|
|
||
| # Start R job in the working directory | ||
| #$ -cwd | ||
|
|
||
| # Export the full environment to the R job (e.g if *LD_LIBRARY_PATH* is required). | ||
| # Depending on security settings might require a cluster manager to set | ||
| # ENABLE_SUBMIT_LIB_PATH=1 as *qmaster_param* | ||
| #$ -V | ||
|
|
||
| # Spawns workload as tasks of an array job into the scheduler (one job with multiple tasks) | ||
| #$ -t 1-{{ n_jobs }} | ||
|
|
||
| # Each array task will allocate one slot in the cluster, if not other specified. | ||
| #$ -pe mytestpe {{ cores | 1 }} | ||
|
|
||
| # Per slot the job will get one power core (C) assuming R code is single-threaded, if not other specified. | ||
| #$ -bunit C | ||
| #$ -bamount {{ threads | 1 }} | ||
|
|
||
| # Cores on a host are packed (cores on a die or chiplet sharing same NUMA node and caches if possible) | ||
| #$ -bstrategy packed | ||
| #$ -btype host | ||
|
|
||
| # The scheduler will do the binding via *HWLOC*. | ||
| # Change to *env* if scheduler should make binding decision but not do the binding itself. | ||
| #$ -binstance set | ||
|
|
||
| # Allows to set resource requests like memory (1 GB [in bytes]) | ||
| # to set runtime limits (1 hour [in seconds]) | ||
| # or to influence scheduler resource selection (job will be executed in all.q queue) | ||
| #$ -l mem_free={{ memory | 1073741824 }},h_rt={{ walltime | 3600 }},q=all.q | ||
|
|
||
| # Tag the job so that it can be identified later on (e.g. in a JSV script before | ||
| # submission so the job can get adapted or for filtering later on) | ||
| #$ -ac application=clustermq | ||
|
|
||
| ulimit -v $(( 1024 * {{ memory | 4096 }} )) | ||
| CMQ_AUTH={{ auth }} R --no-save --no-restore -e 'clustermq:::worker("{{ master }}")' |
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| # Submit client should only show the job ID of the new job on success | ||
| #$ -terse | ||
|
|
||
| # Name of the job visible in OCS | ||
| #$ -N {{ job_name }} | ||
|
|
||
| # Join error and output file | ||
| #$ -j y | ||
|
|
||
| # Location of the output file | ||
| #$ -o {{ log_file | /dev/null }} | ||
|
|
||
| # Start R job in the working directory | ||
| #$ -cwd | ||
|
|
||
| # Export the full environment to the R job (e.g if *LD_LIBRARY_PATH* is required) | ||
| # depending on security settings might require a cluster manager to set | ||
| # ENABLE_SUBMIT_LIB_PATH=1 as *qmaster_param* | ||
| #$ -V | ||
|
|
||
| # Spawns workload as tasks of an array job into the scheduler (one job with multiple tasks) | ||
| #$ -t 1-{{ n_jobs }} | ||
|
|
||
| # Each array task will allocate one slot in the cluster, if not other specified. | ||
| #$ -pe mytestpe {{ cores | 1 }} | ||
|
|
||
| # Per slot the job will get one power core (C) assuming R code is single-threaded, if not other specified. | ||
| #$ -bunit C | ||
| #$ -bamount {{ threads | 1 }} | ||
|
|
||
| # Allows to set resource requests like memory (default 1 GB in bytes) | ||
| # to set runtime limits (default 1 hour in seconds) | ||
| # or to influence scheduler resource selection (job will be executed in all.q) | ||
| #$ -l mem_free={{ memory | 1073741824 }},h_rt={{ runtime | 3600 }},q=all.q | ||
|
|
||
| ulimit -v $(( 1024 * {{ memory | 4096 }} )) | ||
| CMQ_AUTH={{ auth }} R --no-save --no-restore -e 'clustermq:::worker("{{ master }}")' |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.