-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update page.md (Globus Guide) (#370)
Added optional concurrency modification Globus users can make for better throughput
- Loading branch information
1 parent
8abd355
commit 0777bbf
Showing
1 changed file
with
11 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -155,7 +155,7 @@ Storage Gateway Created: 7187a9a0-68e4-48ea-b3b9-7fd06630f8ab | |
|
||
If you forget the id of a storage gateway, use the command [**globus-connect-server storage-gateway list**](https://docs.globus.org/globus-connect-server/v5/reference/storage-gateway/list) to get a list of the storage gateways on the endpoint. | ||
|
||
### Create S3 user credential | ||
### Create S3 User Credential | ||
|
||
First register user credentials with the Globus storage gateway using `globus-connect-server user-credentials s3-create`. For more details see [here](https://docs.globus.org/globus-connect-server/v5/reference/user-credentials/s3-create/). | ||
|
||
|
@@ -173,9 +173,9 @@ Created credential 9bb3d1d1-f506-41f1-b161-41c372b7da19 for | |
<[email protected]> | ||
``` | ||
|
||
### Create collection | ||
### Create Collection | ||
|
||
Create a collection (addition details [here](https://docs.globus.org/premium-storage-connectors/v5/aws-s3/#collection)) | ||
Create a collection (additional details [here](https://docs.globus.org/premium-storage-connectors/v5/aws-s3/#collection)) | ||
|
||
The STORAGE_GATEWAY_ID is from the previous step of “Create S3 Gateway” | ||
|
||
|
@@ -188,3 +188,11 @@ globus-connect-server collection create STORAGE_GATEWAY_ID BASE_PATH DISPLAY_NA | |
Enter the COLLECTION ID from the previous step | ||
|
||
To be able to view collection follow the instructions [here](https://docs.globus.org/how-to/get-started/#the_file_manager) | ||
|
||
### Optional - Increase Concurrency for Better Throughput | ||
|
||
The Globus Endpoint can be modified with the ["custom" network-use flag](https://docs.globus.org/globus-connect-server/v5.4/reference/endpoint/update/) to modify the number of files to transfer concurrently. To make this modification, use the following command (replace N with an integer, not to exceed the number of CPU cores on your Globus Connect Server): | ||
|
||
```shell | ||
globus-connect-server endpoint update --network-use "custom" --max-concurrency N --preferred-concurrency N | ||
``` |