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.7.6.pom 下载
Apache Maven
<dependency>
  <groupId>org.apache.orc</groupId>
  <artifactId>orc</artifactId>
  <version>1.7.6</version>
  <type>pom</type>
</dependency>
Gradle Groovy
implementation 'org.apache.orc:orc:1.7.6'
Gradle Kotlin
implementation("org.apache.orc:orc:1.7.6")
Scala SBT
libraryDependencies += "org.apache.orc" % "orc" % "1.7.6"
Groovy Grape
@Grapes(
  @Grab(group='org.apache.orc', module='orc', version='1.7.6')
)
Apache Ivy
<dependency org="org.apache.orc" name="orc" rev="1.7.6" />
Leiningen
[org.apache.orc/orc "1.7.6"]
Apache Buildr
'org.apache.orc:orc:jar:1.7.6'