Skip to content
Closed
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 @@ -43,7 +43,7 @@ public class AzureUtils
static final String BLOB = "blob";

// This logic is copied from RequestRetryOptions in the azure client. We still need this logic because some classes like
// RetryingInputEntity need a predicate function to tell whether to retry, seperate from the Azure client retries.
// RetryingInputEntity need a predicate function to tell whether to retry, separate from the Azure client retries.
public static final Predicate<Throwable> AZURE_RETRY = e -> {
if (e == null) {
return false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public OrcInputFormat(

private void initialize(Configuration conf)
{
//Initializing seperately since during eager initialization, resolving
//Initializing separately since during eager initialization, resolving
//namenode hostname throws an error if nodes are ephemeral

// Ensure that FileSystem class level initialization happens with correct CL
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public ParquetInputFormat(

private void initialize(Configuration conf)
{
// Initializing seperately since during eager initialization, resolving
// Initializing separately since during eager initialization, resolving
// namenode hostname throws an error if nodes are ephemeral

// Ensure that FileSystem class level initialization happens with correct CL
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public void serialize(FrameBasedInlineDataSource value, JsonGenerator jg, Serial
}
catch (IOException e) {
// Ideally, this shouldn't be reachable.
// Wrap the IO exception in the runtime exception and propogate it forward
// Wrap the IO exception in the runtime exception and propagate it forward
List<String> elements = new ArrayList<>();
for (Object o : row) {
elements.add(o.toString());
Expand Down
Loading