HADOOP-15972 ABFS: reduce list page size to to 500.
Contributed by Da Zhou.
This commit is contained in:
parent
87d9a54968
commit
d09dbcc8fb
|
@ -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 @@ import org.junit.Test;
|
|||
* 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