Skip to content

Commit

Permalink
Enable retry for the parquet write to hive (#33)
Browse files Browse the repository at this point in the history
Enable retry for parquet write to hive

Signed-off-by: Firestarman <[email protected]>
  • Loading branch information
firestarman committed Apr 16, 2024
1 parent b9cea31 commit 3771342
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ class GpuHiveParquetFileFormat(compType: CompressionType) extends ColumnarFileFo

class GpuHiveParquetWriter(override val path: String, dataSchema: StructType,
context: TaskAttemptContext, compType: CompressionType)
extends ColumnarOutputWriter(context, dataSchema, "HiveParquet", false) {
extends ColumnarOutputWriter(context, dataSchema, "HiveParquet", true) {

override protected val tableWriter: CudfTableWriter = {
// TODO How to set FieldIDEnabled ?
Expand Down

0 comments on commit 3771342

Please sign in to comment.