-
Notifications
You must be signed in to change notification settings - Fork 9k
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
HADOOP-19497: [ABFS] Enable rename and create recovery from client transaction id over DFS endpoint #7509
base: trunk
Are you sure you want to change the base?
HADOOP-19497: [ABFS] Enable rename and create recovery from client transaction id over DFS endpoint #7509
Changes from all commits
d3493c9
0c9cca7
df4e3f6
20ae751
1b339fc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2289,6 +2289,6 @@ public void answer(final AbfsRestOperation mockedObj, | |
null, op); | ||
} | ||
} | ||
}); | ||
}, 0); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What is this change about? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We are using mockAbfsOperationCreation to simulate HTTP failures. In some cases, we need the first call to fail, and in others, we need the second call to fail, depending on which call is a rename in the flow. This change is necessary to specify which API call should fail. |
||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,6 +44,7 @@ | |
import org.apache.hadoop.fs.azurebfs.contracts.exceptions.AbfsRestOperationException; | ||
import org.apache.hadoop.fs.azurebfs.contracts.exceptions.AzureBlobFileSystemException; | ||
import org.apache.hadoop.fs.azurebfs.contracts.services.AzureServiceErrorCode; | ||
import org.apache.hadoop.fs.azurebfs.security.ContextEncryptionAdapter; | ||
import org.apache.hadoop.fs.azurebfs.utils.TracingContext; | ||
import org.apache.hadoop.fs.statistics.IOStatistics; | ||
|
||
|
@@ -58,7 +59,9 @@ | |
import static org.apache.hadoop.fs.statistics.IOStatisticAssertions.assertThatStatisticCounter; | ||
import static org.apache.hadoop.fs.statistics.IOStatisticAssertions.lookupCounterStatistic; | ||
import static org.apache.hadoop.test.LambdaTestUtils.intercept; | ||
import static org.mockito.ArgumentMatchers.anyBoolean; | ||
import static org.mockito.ArgumentMatchers.anyList; | ||
import static org.mockito.ArgumentMatchers.anyString; | ||
import static org.mockito.Mockito.doReturn; | ||
import static org.mockito.Mockito.mock; | ||
import static org.mockito.Mockito.times; | ||
|
@@ -180,6 +183,12 @@ AbfsClient getMockAbfsClient() throws IOException { | |
.when(spyClient) | ||
.createRenameRestOperation(Mockito.any(URL.class), anyList()); | ||
|
||
Mockito.doCallRealMethod() | ||
.when(spyClient) | ||
.getPathStatus(anyString(), anyBoolean(), | ||
Mockito.any(TracingContext.class), | ||
Mockito.any(ContextEncryptionAdapter.class)); | ||
|
||
return spyClient; | ||
|
||
} | ||
|
@@ -275,9 +284,14 @@ public void testRenameRecoveryEtagMatchFsLevel() throws IOException { | |
// 4 calls should have happened in total for rename | ||
// 1 -> original rename rest call, 2 -> first retry, | ||
// +2 for getPathStatus calls | ||
int totalConnections = 4; | ||
if (!getConfiguration().getIsClientTransactionIdEnabled()) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why ! here ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In case of recovery using client transaction id: It makes total 4 calls
In case of recovery using Etag: It makes total 5 calls
Before this change, |
||
// 1 additional getPathStatus call to get dest etag | ||
totalConnections++; | ||
} | ||
assertThatStatisticCounter(ioStats, | ||
CONNECTIONS_MADE.getStatName()) | ||
.isEqualTo(5 + connMadeBeforeRename); | ||
.isEqualTo(totalConnections + connMadeBeforeRename); | ||
// the RENAME_PATH_ATTEMPTS stat should be incremented by 1 | ||
// retries happen internally within AbfsRestOperation execute() | ||
// the stat for RENAME_PATH_ATTEMPTS is updated only once before execute() is called | ||
|
@@ -350,21 +364,18 @@ public void testRenameRecoveryFailsForDirFsLevel() throws Exception { | |
if (getConfiguration().getIsClientTransactionIdEnabled()) { | ||
// Recovery based on client transaction id should be successful | ||
assertTrue(renameResult); | ||
// One extra getPathStatus call should have happened | ||
newConnections = 5; | ||
} else { | ||
assertFalse(renameResult); | ||
newConnections = 4; | ||
} | ||
|
||
// validating stat counters after rename | ||
// 3 calls should have happened in total for rename | ||
// 4 calls should have happened in total for rename | ||
// 1 -> original rename rest call, 2 -> first retry, | ||
// +1 for getPathStatus calls | ||
// last getPathStatus call should be skipped | ||
assertThatStatisticCounter(ioStats, | ||
CONNECTIONS_MADE.getStatName()) | ||
.isEqualTo(newConnections + connMadeBeforeRename); | ||
.isEqualTo(4 + connMadeBeforeRename); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should not be hardcoded here There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In the rename operation, we are adding 4 extra connections, which is why it’s kept like this. We are following the same format in other places as well. |
||
|
||
// the RENAME_PATH_ATTEMPTS stat should be incremented by 1 | ||
// retries happen internally within AbfsRestOperation execute() | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are we upgrading version for all the APIs? Or just Rename-delete?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, we are updating it for all the APIs. It was discussed offline to not keep separate versions for different APIs and instead go for an overall API version upgrade.