forked from apache/parquet-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PARQUET-2171. Support vectored IO in Hadoop stream reads
HADOOP-18103 introduced high performance vectored read API in hadoop filesystems, including the local filesystem and S3A. This patch supports the vectored IO API in ParquetFileReader, switching to it when the hadoop version supports it and the parquet library has it explicitly enabled. To use vectored IO, set parquet.hadoop.vectored.io.enabled=true The API is invoked through reflection so that on Hadoop releases with the feature (3.3.5+) the Vectored IO operations are handed off to the Hadoop input stream. On older versions the feature is not available -the parquet library will compile and run as normal. Some existing tests have been parameterized to verify that behavior is consistent with/without vector IO enabled; On hadoop2 profile test runs, this implicitly verifies that compatibility is maintained.
- Loading branch information
1 parent
f8465a2
commit cb4eee0
Showing
20 changed files
with
1,866 additions
and
25 deletions.
There are no files selected for viewing
71 changes: 71 additions & 0 deletions
71
parquet-common/src/main/java/org/apache/parquet/io/ParquetFileRange.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.apache.parquet.io; | ||
|
||
import java.nio.ByteBuffer; | ||
import java.util.concurrent.CompletableFuture; | ||
|
||
/** | ||
* Class to define a file range for a parquet file and to | ||
* hold future data for any ongoing read for that range. | ||
*/ | ||
public class ParquetFileRange { | ||
|
||
/** | ||
* Start position in file. | ||
*/ | ||
private final long offset; | ||
|
||
/** | ||
* Length of data to be read from position. | ||
*/ | ||
private final int length; | ||
|
||
/** | ||
* A future object to hold future for ongoing read. | ||
*/ | ||
private CompletableFuture<ByteBuffer> dataReadFuture; | ||
|
||
public ParquetFileRange(long offset, int length) { | ||
this.offset = offset; | ||
this.length = length; | ||
} | ||
|
||
public long getOffset() { | ||
return offset; | ||
} | ||
|
||
public int getLength() { | ||
return length; | ||
} | ||
|
||
public CompletableFuture<ByteBuffer> getDataReadFuture() { | ||
return dataReadFuture; | ||
} | ||
|
||
public void setDataReadFuture(CompletableFuture<ByteBuffer> dataReadFuture) { | ||
this.dataReadFuture = dataReadFuture; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "range[" + this.offset + "," + (this.offset + (long)this.length) + ")"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.