Repository: orc Updated Branches: refs/heads/master 704d97ec1 -> 04a057330
Add post for ORC-1.0.0 release. Project: http://git-wip-us.apache.org/repos/asf/orc/repo Commit: http://git-wip-us.apache.org/repos/asf/orc/commit/04a05733 Tree: http://git-wip-us.apache.org/repos/asf/orc/tree/04a05733 Diff: http://git-wip-us.apache.org/repos/asf/orc/diff/04a05733 Branch: refs/heads/master Commit: 04a057330e4a1cf44730b65a0a5dae57b8433c80 Parents: 704d97e Author: Owen O'Malley <[email protected]> Authored: Mon Jan 25 22:40:24 2016 -0800 Committer: Owen O'Malley <[email protected]> Committed: Mon Jan 25 22:41:04 2016 -0800 ---------------------------------------------------------------------- README.md | 2 +- site/_config.yml | 3 +++ site/_posts/2016-01-25-ORC-1.0.md | 43 ++++++++++++++++++++++++++++++++++ 3 files changed, 47 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/orc/blob/04a05733/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index 08d99ac..723e835 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ _Optimized Row Columnar_ (ORC) file format. % mkdir build % cd build % cmake .. -% make +% make package % make test-out ``` http://git-wip-us.apache.org/repos/asf/orc/blob/04a05733/site/_config.yml ---------------------------------------------------------------------- diff --git a/site/_config.yml b/site/_config.yml index 1822eba..1e4f2b2 100644 --- a/site/_config.yml +++ b/site/_config.yml @@ -4,6 +4,9 @@ permalink: /news/:year/:month/:day/:title/ excerpt_separator: "" repository: https://github.com/apache/orc +jira: https://issues.apache.org/jira/browse +dist: https://dist.apache.org/repos/dist/release/orc +dist_mirror: http://www.apache.org/dyn/closer.cgi/release/orc destination: target exclude: [BUILD.md, Gemfile*] keep_files: [.git] http://git-wip-us.apache.org/repos/asf/orc/blob/04a05733/site/_posts/2016-01-25-ORC-1.0.md ---------------------------------------------------------------------- diff --git a/site/_posts/2016-01-25-ORC-1.0.md b/site/_posts/2016-01-25-ORC-1.0.md new file mode 100644 index 0000000..520e366 --- /dev/null +++ b/site/_posts/2016-01-25-ORC-1.0.md @@ -0,0 +1,43 @@ +--- +layout: news_item +title: "ORC 1.0.0 Released" +date: "2016-01-25 16:45:00 -0800" +author: omalley +version: 1.0.0 +categories: [release] +--- + +The ORC team is excited to announce the release of ORC v1.0.0. This release +contains the native C++ ORC reader and some tools. + +Release Artifacts: + +- Source: [orc-1.0.0.tgz]({{site.dist}}/orc-1.0.0/orc-1.0.0.tgz) +- Git Tag: + [rel/release-1.0.0 (704d97e)]( + {{site.repository}}/releases/tag/rel%2Frelease-1.0.0) +- [GPG Signature]({{site.dist}}/orc-1.0.0/orc-1.0.0.tgz.asc) + signed by [Owen O'Malley (3D0C92B9)]({{site.dist}}/KEYS) +- SHA 256: [8AD5111F 0CA3B72F]({{site.dist}}/orc-1.0.0/orc-1.0.0.tgz.mds) + +The major features: + +- Portable pure C++ ORC reader +- The C++ reader is known to work on: + * CentOS and RHEL 5, 6, and 7 + * Debian 6 and 7 + * Ubuntu 12 and 14 + * Mac OS 10.10 and 10.11 +- A file-contents command that prints the contents of the file as json records. +- A file-metadata command that prints the metadata of the file. +- Docker files for building and testing on various Linux distributions. +- Memory estimation for the reader. + +Known issues: + +- [ORC-1]({{site.jira}}/ORC-1) We are still working on moving the Java + reader and writer out of Hive's code base and thus it is not included here. +- [ORC-10]({{site.jira}}/ORC-10) When moving ORC files between timezones, + different daylight savings rules will cause timestamps to shift in the C++ + reader. +- [ORC-40]({{site.jira}}/ORC-40) Predicate push down is not implemented in C++.
