HADOOP-15972 ABFS: reduce list page size to to 500.

Contributed by Da Zhou.

(cherry picked from commit d09dbcc8fb)
This commit is contained in:
Da Zhou 2018-12-17 11:10:22 +00:00 committed by Steve Loughran
parent b2523d8100
commit 62df60737c
No known key found for this signature in database
GPG Key ID: D22CF846DBB162A0
2 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ public class AzureBlobFileSystemStore {
private String primaryUserGroup;
private static final String DATE_TIME_PATTERN = "E, dd MMM yyyy HH:mm:ss 'GMT'";
private static final String XMS_PROPERTIES_ENCODING = "ISO-8859-1";
private static final int LIST_MAX_RESULTS = 5000;
private static final int LIST_MAX_RESULTS = 500;
private static final int DELETE_DIRECTORY_TIMEOUT_MILISECONDS = 180000;
private static final int RENAME_TIMEOUT_MILISECONDS = 180000;

View File

@ -28,7 +28,7 @@
* Test continuation token which has equal sign.
*/
public final class ITestAbfsClient extends AbstractAbfsIntegrationTest {
private static final int LIST_MAX_RESULTS = 5000;
private static final int LIST_MAX_RESULTS = 500;
public ITestAbfsClient() throws Exception {
super();