-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* image correction * access method clarifications * gis tutorial link * reprojected * code and wording updates * plot updates * s3 adjustment * minor feedback updates * added queue info draft 1 * updated table with AWS instances * Added hide and show che side panel FAQ entry * Added intro paragraphs to each major section of the docs * dataset * Some clarifications - thank you for the feedback wildintellect * fix: update conf.py #417 This should resolve the RTD update compatibility. * Make image grid smaller * Reduced size of more content * v4.1.1 (#446) Co-authored-by: bsatoriu <[email protected]> * typo fix (#448) Co-authored-by: bsatoriu <[email protected]> * typo fix (#449) Co-authored-by: bsatoriu <[email protected]> --------- Co-authored-by: smk0033 <[email protected]> Co-authored-by: Rob Tapella <[email protected]> Co-authored-by: Rob Tapella <[email protected]> Co-authored-by: Sheyenne Kirkland <[email protected]> Co-authored-by: Alex I. Mandel <[email protected]> Co-authored-by: bsatoriu <[email protected]>
- Loading branch information
1 parent
b6edbc1
commit 1327e81
Showing
19 changed files
with
546 additions
and
4,774 deletions.
There are no files selected for viewing
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
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
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4,811 changes: 286 additions & 4,525 deletions
4,811
docs/source/science/NISAR/Simulated_NISAR.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,25 @@ | ||
System Reference Guide | ||
======================================= | ||
|
||
This section of documentation is intended as a technical reference for the functionality of the MAAP platform. If you are interested in learning about a particular part of the MAAP platform, this section will contain the canonical reference. | ||
|
||
It is often referenced from the application-focused Science and Technical tutorials. | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:caption: System Reference Guide: | ||
|
||
system_reference_guide/create_workspace.ipynb | ||
system_reference_guide/custom-environments.ipynb | ||
system_reference_guide/share_data.ipynb | ||
system_reference_guide/organizations.ipynb | ||
system_reference_guide/ssh.ipynb | ||
system_reference_guide/algorithm_registration.ipynb | ||
system_reference_guide/jobsui.ipynb | ||
system_reference_guide/jobs_maappy.ipynb | ||
system_reference_guide/dps_queues.ipynb | ||
system_reference_guide/work_with_git.ipynb | ||
system_reference_guide/organizations.ipynb | ||
system_reference_guide/ssh.ipynb | ||
system_reference_guide/accessing_bucket_data.ipynb | ||
system_reference_guide/ade_custom_extensions.rst | ||
system_reference_guide/faq.rst | ||
|
53 changes: 53 additions & 0 deletions
53
docs/source/system_reference_guide/accessing_bucket_data.ipynb
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"## Access workspace bucket data with temporary AWS credentials\n", | ||
"\n", | ||
"When logged into the ADE, temporary s3 credentials can be issued using the maap-py function `maap.aws.workspace_bucket_credentials()`\n", | ||
"\n", | ||
"This command issues a set of AWS credentials that grant full read/write access to your own user folder within the `maap-ops-workspace` bucket. Access is given to the directory corresponding to your `my-private-bucket` folder within the ADE. \n", | ||
"\n", | ||
"```python\n", | ||
"\n", | ||
"import json\n", | ||
"from maap.maap import MAAP\n", | ||
"maap = MAAP()\n", | ||
"\n", | ||
"print(json.dumps(maap.aws.workspace_bucket_credentials(), indent=2))\n", | ||
">>> {\n", | ||
" \"aws_access_key_id\": \"...\",\n", | ||
" \"aws_bucket_name\": \"maap-ops-workspace\",\n", | ||
" \"aws_bucket_prefix\": \"maap_user\",\n", | ||
" \"aws_secret_access_key\": \"...\",\n", | ||
" \"aws_session_expiration\": \"...\",\n", | ||
" \"aws_session_token\": \"...\"\n", | ||
"}\n", | ||
"```" | ||
] | ||
} | ||
], | ||
"metadata": { | ||
"kernelspec": { | ||
"display_name": "Python 3", | ||
"language": "python", | ||
"name": "python3" | ||
}, | ||
"language_info": { | ||
"codemirror_mode": { | ||
"name": "ipython", | ||
"version": 3 | ||
}, | ||
"file_extension": ".py", | ||
"mimetype": "text/x-python", | ||
"name": "python", | ||
"nbconvert_exporter": "python", | ||
"pygments_lexer": "ipython3", | ||
"version": "3.7.8" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 4 | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "markdown", | ||
"id": "58641795-4f3e-40af-9374-b882f2be6eb1", | ||
"metadata": {}, | ||
"source": [ | ||
"# Resource Queues" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"id": "cd3c4962", | ||
"metadata": {}, | ||
"source": [ | ||
"Resource Queues on the MAAP Data Processing Service are machines on the cloud that will be processing DPS Jobs. These are [EC2](https://aws.amazon.com/ec2/) machines on AWS and are managed by [auto scaling groups](https://docs.aws.amazon.com/autoscaling/ec2/userguide/auto-scaling-groups.html).\n", | ||
"\n", | ||
"When a user submits a job, a message is sent to the AWS Auto Scaling Group which provisions the appropriate [machine instance](https://aws.amazon.com/ec2/instance-types/) for processing, which takes about two minutes. The name of the queue provides an indication of what resources the machine will have.\n", | ||
"\n", | ||
"For example:\n", | ||
"\n", | ||
"- `maap-dps-worker-8gb` will spin a machine that has at max 8gb of RAM, like t3.large\n", | ||
"- `maap-dps-worker-16vcpu-32gb` will spin a machine that has 16 cores and 32gb RAM, like c5.4xlarge.\n", | ||
"\n", | ||
"\n", | ||
"## Queue Access and Organizations\n", | ||
"\n", | ||
"Only job queues assigned to your [organization(s)](organizations.ipynb) will be allowed for use when registering an Algorithm or submitting Jobs. When submitting Jobs via the Jobs UI, only your org-assigned queues are visible in the queue selection menu. Any publicly-accessible queues, such as the sandbox queue, are accessible to all users of the MAAP platform.\n", | ||
"\n", | ||
"## Public Queues\n", | ||
"\n", | ||
"Public queues are queues that are available to all MAAP users irrespective of their association with any organization (i.e guest accounts). Users who belong to an organization and have access to private queues are recommended to use the private queues.\n", | ||
"Currently available public queues on the MAAP platform are:\n", | ||
"\n", | ||
"\n", | ||
"| Queue | Memory | Time limit | Guest access | [AWS Instance Type](https://aws.amazon.com/ec2/instance-types/) |\n", | ||
"| --- | --- | --- | --- | --- |\n", | ||
"| `maap-dps-sandbox` | 8gb | 10 min | yes | t3.large or t3a.large |\n", | ||
"| `maap-dps-worker-8gb` | 8gb | unlimited | no | t3.large or t3a.large |\n", | ||
"| `maap-dps-worker-16gb` | 16gb | unlimited | no | t3.xlarge or t3a.xlarge |\n", | ||
"| `maap-dps-worker-32gb` | 32gb | unlimited | no | r5.xlarge or r5a.xlarge |\n", | ||
"\n", | ||
"\n", | ||
"`maap-dps-sandbox` is a queue introduced in v4.1.0 to allow users to quickly test their algorithm in DPS. This has a max job runtime of 10mins and max RAM of 8gb.\n", | ||
"\n", | ||
"Note: The platform team will start throttling users ability to submit a batch of jobs on public queues to about 10 jobs per hour.\n", | ||
"\n", | ||
"\n", | ||
"## Private Organization Queues\n", | ||
"\n", | ||
"Users and user-groups doing science on the MAAP are should reach out to the platform team to enable private organizational queues. Features of private queues are:\n", | ||
"\n", | ||
"- 24 hr time limit on individual jobs (can be increased upon request).\n", | ||
"- No job throttling.\n", | ||
"- Custom resources can be requested on the queue, like higher CPU, GPU, etc.\n", | ||
"- Dedicated queue, i.e not shared with other users on the MAAP reducing the amount of time spent waiting in the queued state.\n" | ||
] | ||
} | ||
], | ||
"metadata": { | ||
"kernelspec": { | ||
"display_name": "Python 3", | ||
"language": "python", | ||
"name": "python3" | ||
}, | ||
"language_info": { | ||
"codemirror_mode": { | ||
"name": "ipython", | ||
"version": 3 | ||
}, | ||
"file_extension": ".py", | ||
"mimetype": "text/x-python", | ||
"name": "python", | ||
"nbconvert_exporter": "python", | ||
"pygments_lexer": "ipython3", | ||
"version": "3.9.1" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 5 | ||
} |
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
Binary file added
BIN
+94.5 KB
docs/source/system_reference_guide/faq/_static/hide_che_command_palette.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+54.3 KB
docs/source/system_reference_guide/faq/_static/hide_che_view_menu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 42 additions & 0 deletions
42
docs/source/system_reference_guide/faq/hideshow_sidebar.ipynb
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "markdown", | ||
"id": "1afe36c9-6206-4366-b208-dfb4aa12cb31", | ||
"metadata": {}, | ||
"source": [ | ||
"# Can I Hide the Blue Sidebar?\n", | ||
"\n", | ||
"You can hide and show the blue sidebar (the Eclipse Che sidebar). To do so, open the Jupyter command palette and choose `Hide Che Side Panel` or `Show Che Side Panel`.\n", | ||
"\n", | ||
"Opening the Jupyter command palette:\n", | ||
"![Open Command Palette](_static/hide_che_view_menu.png)\n", | ||
"\n", | ||
"You will see options at the top to Hide or Show the Che Side Panel. You can also type in some text to filter the list and more easily select the option you would like using only the keyboard.\n", | ||
"![Hide Che Option](_static/hide_che_command_palette.png)\n", | ||
"\n" | ||
] | ||
} | ||
], | ||
"metadata": { | ||
"kernelspec": { | ||
"display_name": "Python 3", | ||
"language": "python", | ||
"name": "python3" | ||
}, | ||
"language_info": { | ||
"codemirror_mode": { | ||
"name": "ipython", | ||
"version": 3 | ||
}, | ||
"file_extension": ".py", | ||
"mimetype": "text/x-python", | ||
"name": "python", | ||
"nbconvert_exporter": "python", | ||
"pygments_lexer": "ipython3", | ||
"version": "3.9.1" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 5 | ||
} |
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
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