HADOOP-15972 ABFS: reduce list page size to to 500.
Contributed by Da Zhou. (cherry picked from commit d09dbcc8fb6889e51d4d4c914eb6159e40845e9f)
This commit is contained in:
parent
b2523d8100
commit
62df60737c
@ -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;
|
||||
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user