Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions hadoop-hdds/docs/content/interface/S3.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ summary: Ozone supports Amazon's Simple Storage Service (S3) protocol. In fact,

Ozone provides S3 compatible REST interface to use the object store data with any S3 compatible tools.

S3 buckets are stored under the `/s3v`(Default is s3v, which can be setted through ozone.s3g.volume.name) volume, which needs to be created by an administrator first.
S3 buckets are stored under the `/s3v`(Default is s3v, which can be setted through ozone.s3g.volume.name) volume.
Comment thread
bharatviswa504 marked this conversation as resolved.
Outdated

## Getting started

Expand All @@ -38,12 +38,6 @@ Go to the `compose/ozone` directory, and start the server:
docker-compose up -d --scale datanode=3
```

Create the `/s3v` volume:

```bash
docker-compose exec scm ozone sh volume create /s3v
```

You can access the S3 gateway at `http://localhost:9878`

## URL Schema
Expand Down
1 change: 0 additions & 1 deletion hadoop-hdds/docs/content/recipe/SparkOzoneFSK8S.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ Download any text file and put it to the `/tmp/alice.txt` first.

```bash
kubectl port-forward s3g-0 9878:9878
ozone sh volume create /s3v
aws s3api --endpoint http://localhost:9878 create-bucket --bucket=test
aws s3api --endpoint http://localhost:9878 put-object --bucket test --key alice.txt --body /tmp/alice.txt
```
Expand Down
2 changes: 1 addition & 1 deletion hadoop-hdds/docs/content/start/StartFromDockerHub.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ connecting to the SCM's UI at [http://localhost:9876](http://localhost:9876).

The S3 gateway endpoint will be exposed at port 9878. You can use Ozone's S3
support as if you are working against the real S3. S3 buckets are stored under
the `/s3v` volume, which needs to be created by an administrator first:
the `/s3v` volume:

```
docker-compose exec scm ozone sh volume create /s3v
Comment thread
adoroszlai marked this conversation as resolved.
Outdated
Expand Down