Skip to content

Commit bd3724e

Browse files
committed
use ByteBuddy code generation to write proto to parquet faster
1 parent 7f77908 commit bd3724e

File tree

3 files changed

+2881
-2
lines changed

3 files changed

+2881
-2
lines changed

parquet-protobuf/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,21 @@
3434
<protobuf.version>3.25.5</protobuf.version>
3535
<common-protos.version>2.50.0</common-protos.version> <!-- make sure it's compatible with protobuf.version -->
3636
<truth-proto-extension.version>1.4.3</truth-proto-extension.version>
37+
<byte-buddy.version>1.14.18</byte-buddy.version>
3738
</properties>
3839

3940

4041
<name>Apache Parquet Protobuf</name>
4142
<url>https://parquet.apache.org</url>
4243

4344
<dependencies>
45+
<dependency>
46+
<groupId>net.bytebuddy</groupId>
47+
<artifactId>byte-buddy</artifactId>
48+
<version>${byte-buddy.version}</version>
49+
<scope>compile</scope>
50+
<optional>true</optional>
51+
</dependency>
4452
<dependency>
4553
<groupId>org.mockito</groupId>
4654
<artifactId>mockito-core</artifactId>

0 commit comments

Comments
 (0)