-
Notifications
You must be signed in to change notification settings - Fork 9.1k
HADOOP-19448: [ABFS][FNSOverBlob] Optimizing the current create and mkdir flow #7353
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
Changes from 10 commits
ea57419
356b64a
369a52e
44be31e
e63092d
54c6d96
ddb87cc
080fe14
f3122aa
e20ecf9
29e2ead
6a491ca
f77af93
3217291
eb5df0f
195d81c
ebb8d05
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,13 +20,28 @@ | |
|
||
/** | ||
* Thrown when a concurrent write operation is detected. | ||
* This exception is used to indicate that parallel access to the create path | ||
* has been detected, which violates the single writer semantics. | ||
*/ | ||
@org.apache.hadoop.classification.InterfaceAudience.Public | ||
@org.apache.hadoop.classification.InterfaceStability.Evolving | ||
public class ConcurrentWriteOperationDetectedException | ||
extends AzureBlobFileSystemException { | ||
|
||
private static final String ERROR_MESSAGE = "Parallel access to the create path detected. Failing request " | ||
+ "to honor single writer semantics"; | ||
|
||
/** | ||
* Constructs a new ConcurrentWriteOperationDetectedException with a default error message. | ||
*/ | ||
public ConcurrentWriteOperationDetectedException() { | ||
super(ERROR_MESSAGE); | ||
} | ||
|
||
/** | ||
* Constructs a new ConcurrentWriteOperationDetectedException with an error message. | ||
*/ | ||
public ConcurrentWriteOperationDetectedException(String message) { | ||
Check failure on line 44 in hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azurebfs/contracts/exceptions/ConcurrentWriteOperationDetectedException.java
|
||
super(message); | ||
} | ||
} |
Uh oh!
There was an error while loading. Please reload this page.