HADOOP-16437 documentation typo fix: fs.s3a.experimental.input.fadvise

Fix fs.s3a.experimental.fadvise to fs.s3a.experimental.input.fadvise 

Contributed by: Josh Rosen
This commit is contained in:
Josh Rosen 2019-07-18 15:19:38 -07:00 committed by Steve Loughran
parent d5ef38b093
commit d545f9c290
3 changed files with 4 additions and 4 deletions

View File

@ -54,7 +54,7 @@ of `FileSystem`.
```java
out = fs.openFile(path)
.opt("fs.s3a.experimental.fadvise", "random")
.opt("fs.s3a.experimental.input.fadvise", "random")
.must("fs.s3a.readahead.range", 256 * 1024)
.build()
.get();

View File

@ -281,7 +281,7 @@ killer.
`fs.s3a.threads.max` and `fs.s3a.connection.maximum`.
1. Make sure that the bucket is using `sequential` or `normal` fadvise seek policies,
that is, `fs.s3a.experimental.fadvise` is not set to `random`
that is, `fs.s3a.experimental.input.fadvise` is not set to `random`
1. Perform listings in parallel by setting `-numListstatusThreads`
to a higher number. Make sure that `fs.s3a.connection.maximum`
@ -314,7 +314,7 @@ the S3 bucket/shard.
</property>
<property>
<name>fs.s3a.experimental.fadvise</name>
<name>fs.s3a.experimental.input.fadvise</name>
<value>normal</value>
</property>

View File

@ -1129,7 +1129,7 @@ shows that it is generally more efficient to abort the TCP connection and initia
a new one than read to the end of a large file.
Note: the threshold when data is read rather than the stream aborted can be tuned
by `fs.s3a.readahead.range`; seek policy in `fs.s3a.experimental.fadvise`.
by `fs.s3a.readahead.range`; seek policy in `fs.s3a.experimental.input.fadvise`.
### <a name="no_such_bucket"></a> `FileNotFoundException` Bucket does not exist.