Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ private Constants() {
* will be validated using {@code S3AFileSystem.verifyBucketExistsV2()}.
* Value: {@value}
*/
public static final int S3A_BUCKET_PROBE_DEFAULT = 2;
public static final int S3A_BUCKET_PROBE_DEFAULT = 0;

/**
* How long a directory listing in the MS is considered as authoritative.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1039,9 +1039,9 @@ options are covered in [Testing](./testing.md).

<property>
<name>fs.s3a.bucket.probe</name>
<value>2</value>
<value>0</value>
<description>
The value can be 0, 1 or 2 (default).
The value can be 0 (default), 1 or 2.
When set to 0, bucket existence checks won't be done
during initialization thus making it faster.
Though it should be noted that when the bucket is not available in S3,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ private <E extends Throwable> E expectFSCreateFailure(
return intercept(clazz,
() -> {
fs = S3ATestUtils.createTestFileSystem(conf);
fs.listFiles(new Path("/"), false);
return "expected failure creating FS " + text + " got " + fs;
});
}
Expand Down