Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MINOR] fix: typo of block #6128

Merged
merged 1 commit into from
Jan 7, 2025
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 @@ -62,7 +62,7 @@ public void startUp() throws Exception {
super.startIntegrationTest();

// This value can be by tune by the user, please change it accordingly.
defaultBockSize = 32 * 1024 * 1024;
defaultBlockSize = 32 * 1024 * 1024;

// This value is 1 for ABS, 3 for GCS, and 1 for S3A.
defaultReplication = 1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public void startUp() throws Exception {
super.startIntegrationTest();

// This value can be by tune by the user, please change it accordingly.
defaultBockSize = 64 * 1024 * 1024;
defaultBlockSize = 64 * 1024 * 1024;

metalakeName = GravitinoITUtils.genRandomName("gvfs_it_metalake");
catalogName = GravitinoITUtils.genRandomName("catalog");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public class GravitinoVirtualFileSystemIT extends BaseIT {
protected String schemaName = GravitinoITUtils.genRandomName("schema");
protected GravitinoMetalake metalake;
protected Configuration conf = new Configuration();
protected int defaultBockSize = 128 * 1024 * 1024;
protected int defaultBlockSize = 128 * 1024 * 1024;
protected int defaultReplication = 3;

@BeforeAll
Expand Down Expand Up @@ -483,7 +483,7 @@ public void testGetDefaultBlockSizes() throws IOException {
Assertions.assertTrue(catalog.asFilesetCatalog().filesetExists(filesetIdent));
Path gvfsPath = genGvfsPath(filesetName);
try (FileSystem gvfs = gvfsPath.getFileSystem(conf)) {
assertEquals(defaultBockSize, gvfs.getDefaultBlockSize(gvfsPath));
assertEquals(defaultBlockSize, gvfs.getDefaultBlockSize(gvfsPath));
}

catalog.asFilesetCatalog().dropFileset(filesetIdent);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public void startUp() throws Exception {
super.startIntegrationTest();

// This value can be by tune by the user, please change it accordingly.
defaultBockSize = 64 * 1024 * 1024;
defaultBlockSize = 64 * 1024 * 1024;

// The default replication factor is 1.
defaultReplication = 1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public void startUp() throws Exception {
super.startIntegrationTest();

// This value can be by tune by the user, please change it accordingly.
defaultBockSize = 32 * 1024 * 1024;
defaultBlockSize = 32 * 1024 * 1024;

// The value is 1 for S3
defaultReplication = 1;
Expand Down
Loading