Skip to content
Merged
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
10 changes: 9 additions & 1 deletion cpp/velox/compute/iceberg/IcebergWriter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,15 @@ std::shared_ptr<IcebergInsertTableHandle> createIcebergInsertTableHandle(
const std::unordered_map<std::string, std::string> serdeParameters;
auto writeKind = connector::hive::iceberg::IcebergInsertTableHandle::WriteKind::kData;
return std::make_shared<connector::hive::iceberg::IcebergInsertTableHandle>(
columnHandles, locationHandle, fileFormat, spec, compressionKind, serdeParameters, writeKind, fileNameGenerator);
columnHandles,
locationHandle,
fileFormat,
spec,
compressionKind,
serdeParameters,
writeKind,
std::unordered_map<std::string, connector::hive::iceberg::IcebergInsertTableHandle::ExistingDeletionVector>{},
fileNameGenerator);
}

} // namespace
Expand Down
2 changes: 1 addition & 1 deletion cpp/velox/utils/VeloxWriterUtils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ std::shared_ptr<facebook::velox::dwio::common::WriterOptions> makeParquetWriteOp
// please make sure `brotli` is enabled when compiling
throw GlutenException("Gluten+velox does not support write parquet using brotli.");
} else if (boost::iequals(compressionCodecStr, "lz4")) {
compressionCodec = CompressionKind::CompressionKind_LZ4;
compressionCodec = CompressionKind::CompressionKind_LZ4_HADOOP;
} else if (boost::iequals(compressionCodecStr, "zstd")) {
compressionCodec = CompressionKind::CompressionKind_ZSTD;
auto codecOptions = std::make_shared<parquet::arrow::util::CodecOptions>();
Expand Down
4 changes: 2 additions & 2 deletions ep/build-velox/src/get-velox.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ set -exu

CURRENT_DIR=$(cd "$(dirname "$BASH_SOURCE")"; pwd)
VELOX_REPO=https://github.com/IBM/velox.git
VELOX_BRANCH=dft-2026_07_10
VELOX_ENHANCED_BRANCH=ibm-2026_07_10
VELOX_BRANCH=dft-2026_07_16
VELOX_ENHANCED_BRANCH=ibm-2026_07_16
VELOX_HOME=""
RUN_SETUP_SCRIPT=ON
ENABLE_ENHANCED_FEATURES=OFF
Expand Down
9 changes: 0 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2307,14 +2307,5 @@
<os.full.name>${platform}_${arch}</os.full.name>
</properties>
</profile>
<profile>
<id>disaggregated-shuffle</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<modules>
<module>gluten-disaggregated-shuffle</module>
</modules>
</profile>
</profiles>
</project>
Loading