HADOOP-15972 ABFS: reduce list page size to to 500.
Contributed by Da Zhou.
(cherry picked from commit d09dbcc8fb
)
This commit is contained in:
parent
b2523d8100
commit
62df60737c
|
@ -107,7 +107,7 @@ public class AzureBlobFileSystemStore {
|
||||||
private String primaryUserGroup;
|
private String primaryUserGroup;
|
||||||
private static final String DATE_TIME_PATTERN = "E, dd MMM yyyy HH:mm:ss 'GMT'";
|
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 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 DELETE_DIRECTORY_TIMEOUT_MILISECONDS = 180000;
|
||||||
private static final int RENAME_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.
|
* Test continuation token which has equal sign.
|
||||||
*/
|
*/
|
||||||
public final class ITestAbfsClient extends AbstractAbfsIntegrationTest {
|
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 {
|
public ITestAbfsClient() throws Exception {
|
||||||
super();
|
super();
|
||||||
|
|
Loading…
Reference in New Issue