Skip to content

Commit

Permalink
Add new S3 parameter (#4196)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lauren committed Mar 28, 2019
1 parent 77cdb31 commit 8b084f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions _includes/v19.1/misc/external-urls.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

| Location | Scheme | Host | Parameters |
|-------------------------------------------------------------+-------------+--------------------------------------------------+----------------------------------------------------------------------------|
| Amazon S3 | `s3` | Bucket name | `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY` |
| Amazon S3 | `s3` | Bucket name | `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY`, `AWS_SESSION_TOKEN ` |
| Azure | `azure` | N/A (see [Example file URLs](#example-file-urls) | `AZURE_ACCOUNT_KEY`, `AZURE_ACCOUNT_NAME` |
| Google Cloud&nbsp;[<sup>1</sup>](#considerations) | `gs` | Bucket name | `AUTH` (optional): can be `default` or `implicit` |
| HTTP&nbsp;[<sup>2</sup>](#considerations) | `http` | Remote host | N/A |
| NFS/Local&nbsp;[<sup>3</sup>](#considerations) | `nodelocal` | N/A (see [Example file URLs](#example-file-urls) | N/A |
| S3-compatible services&nbsp;[<sup>4</sup>](#considerations) | `s3` | Bucket name | `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY`, `AWS_REGION`&nbsp;[<sup>5</sup>](#considerations) (optional), `AWS_ENDPOINT` |
| S3-compatible services&nbsp;[<sup>4</sup>](#considerations) | `s3` | Bucket name | `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY`, `AWS_SESSION_TOKEN, `AWS_REGION`&nbsp;[<sup>5</sup>](#considerations) (optional), `AWS_ENDPOINT` |

{{site.data.alerts.callout_info}}
The location parameters often contain special characters that need to be URI-encoded. Use Javascript's [encodeURIComponent](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent) function or Go language's [url.QueryEscape](https://golang.org/pkg/net/url/#QueryEscape) function to URI-encode the parameters. Other languages provide similar functions to URI-encode special characters.
Expand Down
2 changes: 1 addition & 1 deletion v19.1/change-data-capture.md
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,7 @@ In this example, you'll set up a changefeed for a single-node cluster that is co
This will start up the changefeed in the background and return the `job_id`. The changefeed writes to AWS.
10. Monitor your changefeed on the Admin UI (http://localhost:8080/#/metrics/changefeeds/cluster). For more information, see Changefeeds Dashboard.
10. Monitor your changefeed on the Admin UI (http://localhost:8080/#/metrics/changefeeds/cluster). For more information, see [Changefeeds Dashboard](admin-ui-cdc-dashboard.html).
11. When you are done, exit the SQL shell (`\q`).
Expand Down

0 comments on commit 8b084f6

Please sign in to comment.