Skip to content
forked from apache/arrow

Apache Arrow is a columnar in-memory analytics layer designed to accelerate big data. It houses a set of canonical in-memory representations of flat and hierarchical data along with multiple language-bindings for structure manipulation. It also provides IPC and common algorithm implementations.

License

Notifications You must be signed in to change notification settings

sirensolutions/arrow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Siren fork of Arrow

  • The properties drill.enable_unsafe_memory_access and arrow.enable_unsafe_memory_access are prefixed with siren and their default value is set to true. The first property is deprecated.

  • In order to avoid conflict with a version of netty used in Elasticsearch, we relocate the netty custom package and dependency in memory into a package named siren. The relocation is achieved thanks to the maven shade plugin.

  • The Siren's fork of netty is used in vector. This means that netty imports in that module need to be prefixed with siren.

Check that Siren version of Netty is used

  • In order to check that Siren version of Netty is being used, run the unit test CheckAccessibleTest in https://github.com/sirensolutions/siren-platform/blob/master/core/src/test/java/io/siren/federate/core/common/CheckAccessibleTest.java.
  • Note: the unit test CheckAccessibleTest is currently ignored, please set it again to ignore after running the test. The unit test is ignored because the setting in CheckAccessibleTest is not taken into account when the whole unit test suite is run, therefore it fails. This could be because when the class is loaded, the default settings are used (which is a static block) and the new settings in the CheckAccessibleTest are then not applied when the test suit is run.

Build

To build the memory, format and vector modules:

$ cd java
$ mvn clean package

Because of the default value change of unsafe_memory_access property, some tests in vector fail.

mvn -pl memory,memory/memory-core,memory/memory-netty,memory/memory-unsafe,format,vector install -Dsiren.arrow.enable_unsafe_memory_access=false -Dsiren.drill.enable_unsafe_memory_access=false

Make a new release of Siren's Apache Arrow

  • Tests should pass.

  • Make a new version:

mvn versions:set -DnewVersion=siren-0.14.1-2
  • tag the commit for the release
git tag --sign siren-0.14.1-2
  • Deploy to Siren's artifactory
$ mvn deploy -DskipTests=true -P artifactory -Dartifactory_username=<USERNAME> -Dartifactory_password=<PASSWORD>

Update to a new version of Siren's Apache Arrow

Developer tips on updating to a new version of Netty can be found here: https://sirensolutions.atlassian.net/wiki/spaces/EN/pages/3108864001/Upgrading Federate Apache Arrow Version .

  • add [email protected]:apache/arrow.git as the upstream remote.
  • execute git fetch --all --tags
  • create a temporary branch from siren-changes
  • rebase against the new tag.

Apache Arrow

Fuzzing Status License Twitter Follow

Powering In-Memory Analytics

Apache Arrow is a development platform for in-memory analytics. It contains a set of technologies that enable big data systems to process and move data fast.

Major components of the project include:

Arrow is an Apache Software Foundation project. Learn more at arrow.apache.org.

What's in the Arrow libraries?

The reference Arrow libraries contain many distinct software components:

  • Columnar vector and table-like containers (similar to data frames) supporting flat or nested types
  • Fast, language agnostic metadata messaging layer (using Google's Flatbuffers library)
  • Reference-counted off-heap buffer memory management, for zero-copy memory sharing and handling memory-mapped files
  • IO interfaces to local and remote filesystems
  • Self-describing binary wire formats (streaming and batch/file-like) for remote procedure calls (RPC) and interprocess communication (IPC)
  • Integration tests for verifying binary compatibility between the implementations (e.g. sending data from Java to C )
  • Conversions to and from other in-memory data structures
  • Readers and writers for various widely-used file formats (such as Parquet, CSV)

Implementation status

The official Arrow libraries in this repository are in different stages of implementing the Arrow format and related features. See our current feature matrix on git master.

How to Contribute

Please read our latest project contribution guide.

Getting involved

Even if you do not plan to contribute to Apache Arrow itself or Arrow integrations in other projects, we'd be happy to have you involved:

About

Apache Arrow is a columnar in-memory analytics layer designed to accelerate big data. It houses a set of canonical in-memory representations of flat and hierarchical data along with multiple language-bindings for structure manipulation. It also provides IPC and common algorithm implementations.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 51.5%
  • Java 13.1%
  • Go 6.7%
  • Python 6.4%
  • Ruby 3.5%
  • Cython 3.0%
  • Other 15.8%