forked from apache/hudi
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[HUDI-40] Add parquet support for the Delta Streamer (apache#949)
- Loading branch information
1 parent
7381b66
commit ed745df
Showing
6 changed files
with
224 additions
and
5 deletions.
There are no files selected for viewing
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
60 changes: 60 additions & 0 deletions
60
hudi-utilities/src/main/java/org/apache/hudi/utilities/sources/ParquetDFSSource.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,60 @@ | ||
/* | ||
* 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.hudi.utilities.sources; | ||
|
||
import org.apache.avro.generic.GenericRecord; | ||
import org.apache.hudi.common.util.Option; | ||
import org.apache.hudi.common.util.TypedProperties; | ||
import org.apache.hudi.common.util.collection.Pair; | ||
import org.apache.hudi.utilities.schema.SchemaProvider; | ||
import org.apache.hudi.utilities.sources.helpers.DFSPathSelector; | ||
import org.apache.parquet.avro.AvroParquetInputFormat; | ||
import org.apache.spark.api.java.JavaPairRDD; | ||
import org.apache.spark.api.java.JavaRDD; | ||
import org.apache.spark.api.java.JavaSparkContext; | ||
import org.apache.spark.sql.SparkSession; | ||
|
||
/** | ||
* DFS Source that reads parquet data | ||
*/ | ||
public class ParquetDFSSource extends ParquetSource { | ||
|
||
private final DFSPathSelector pathSelector; | ||
|
||
public ParquetDFSSource(TypedProperties props, JavaSparkContext sparkContext, SparkSession sparkSession, | ||
SchemaProvider schemaProvider) { | ||
super(props, sparkContext, sparkSession, schemaProvider); | ||
this.pathSelector = new DFSPathSelector(props, this.sparkContext.hadoopConfiguration()); | ||
} | ||
|
||
@Override | ||
protected InputBatch<JavaRDD<GenericRecord>> fetchNewData(Option<String> lastCkptStr, long sourceLimit) { | ||
Pair<Option<String>, String> selectPathsWithMaxModificationTime = | ||
pathSelector.getNextFilePathsAndMaxModificationTime(lastCkptStr, sourceLimit); | ||
return selectPathsWithMaxModificationTime.getLeft() | ||
.map(pathStr -> new InputBatch<>(Option.of(fromFiles(pathStr)), selectPathsWithMaxModificationTime.getRight())) | ||
.orElseGet(() -> new InputBatch<>(Option.empty(), selectPathsWithMaxModificationTime.getRight())); | ||
} | ||
|
||
private JavaRDD<GenericRecord> fromFiles(String pathStr) { | ||
JavaPairRDD<Void, GenericRecord> avroRDD = sparkContext.newAPIHadoopFile(pathStr, AvroParquetInputFormat.class, | ||
Void.class, GenericRecord.class, sparkContext.hadoopConfiguration()); | ||
return avroRDD.values(); | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
hudi-utilities/src/main/java/org/apache/hudi/utilities/sources/ParquetSource.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,34 @@ | ||
/* | ||
* 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.hudi.utilities.sources; | ||
|
||
import org.apache.avro.generic.GenericRecord; | ||
import org.apache.hudi.common.util.TypedProperties; | ||
import org.apache.hudi.utilities.schema.SchemaProvider; | ||
import org.apache.spark.api.java.JavaRDD; | ||
import org.apache.spark.api.java.JavaSparkContext; | ||
import org.apache.spark.sql.SparkSession; | ||
|
||
public abstract class ParquetSource extends Source<JavaRDD<GenericRecord>> { | ||
|
||
public ParquetSource(TypedProperties props, JavaSparkContext sparkContext, SparkSession sparkSession, | ||
SchemaProvider schemaProvider) { | ||
super(props, sparkContext, sparkSession, schemaProvider, SourceType.PARQUET); | ||
} | ||
} |
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