o

orc

ORC is a self-describing type-aware columnar file format designed for Hadoop workloads. It is optimized for large streaming reads, but with integrated support for finding required rows quickly. Storing data in a columnar format lets the reader read, decompress, and process only the values that are required for the current query.
https://orc.apache.org
文件下载
文件名 操作
orc-1.9.5.pom 下载
Apache Maven
<dependency>
  <groupId>org.apache.orc</groupId>
  <artifactId>orc</artifactId>
  <version>1.9.5</version>
  <type>pom</type>
</dependency>
Gradle Groovy
implementation 'org.apache.orc:orc:1.9.5'
Gradle Kotlin
implementation("org.apache.orc:orc:1.9.5")
Scala SBT
libraryDependencies += "org.apache.orc" % "orc" % "1.9.5"
Groovy Grape
@Grapes(
  @Grab(group='org.apache.orc', module='orc', version='1.9.5')
)
Apache Ivy
<dependency org="org.apache.orc" name="orc" rev="1.9.5" />
Leiningen
[org.apache.orc/orc "1.9.5"]
Apache Buildr
'org.apache.orc:orc:jar:1.9.5'