Apache Accumulo

From Wikipedia, the free encyclopedia
Apache Accumulo
Developer(s)Apache Software Foundation
Stable release2.1.0 (November 1, 2022; 17 months ago (2022-11-01)[1]) [±]
RepositoryAccumulo Repository
Written inJava
Operating systemCross-platform
LicenseApache License 2.0
Websiteaccumulo.apache.org

Apache Accumulo is a highly scalable sorted, distributed key-value store based on Google's Bigtable.[3] It is a system built on top of Apache Hadoop, Apache ZooKeeper, and Apache Thrift. Written in Java, Accumulo has cell-level access labels and server-side programming mechanisms. According to DB-Engines ranking, Accumulo is the third most popular NoSQL wide column store behind Apache Cassandra and HBase and the 67th most popular database engine of any type (complete) as of 2018.[4]

History[edit]

Accumulo was created in 2008 by the US National Security Agency and contributed to the Apache Foundation as an incubator project in September 2011.[5]

On March 21, 2012, Accumulo graduated from incubation at Apache, making it a top-level project.[6]

Controversy[edit]

In June 2012, the US Senate Armed Services Committee (SASC) released the Draft 2012 Department of Defense (DoD) Authorization Bill, which included references to Apache Accumulo. In the draft bill SASC required DoD to evaluate whether Apache Accumulo could achieve commercial viability before implementing it throughout DoD.[7] Specific criteria were not included in the draft language, but the establishment of commercial entities supporting Apache Accumulo could be considered a success factor.[8]

Main features[edit]

Cell-level security[edit]

Apache Accumulo extends the Bigtable data model, adding a new element to the key called Column Visibility. This element stores a logical combination of security labels that must be satisfied at query time in order for the key and value to be returned as part of a user request. This allows data of varying security requirements to be stored in the same table, and allows users to see only those keys and values for which they are authorized.[5]

Server-side programming[edit]

In addition to Cell-Level Security, Apache Accumulo provides a server-side programming mechanism called Iterators that allows users to perform additional processing at the Tablet Server. The range of operations that can be applied is equivalent to those that can be implemented within a MapReduce Combiner function, which produces an aggregate value for several key-value pairs.

User key ordering[edit]

Apache Accumulo orders entries in order of user keys, and exposes an iterator over a key range. This allows locality of reference not available from some other distributed stores (including Cassandra and Voldemort that order by hash of the user key).

Papers[edit]

See also[edit]

References[edit]

  1. ^ "Apache Accumulo 2.1.0". Apache Accumulo. The Apache Software Foundation. 2022-11-01. Retrieved 2023-06-08.
  2. ^ "Apache Accumulo 2.0.0-alpha-2". Retrieved 4 July 2019.
  3. ^ Apache Accumulo. Accumulo.apache.org. Retrieved on 2013-09-18.
  4. ^ DB-Engines Ranking - popularity ranking of wide column stores. Db-engines.com. Retrieved on 2018-04-10. Archived 2018-04-10.
  5. ^ a b NSA Submits Open Source, Secure Database To Apache - Government. Informationweek.com (2011-09-06). Retrieved on 2013-09-18.
  6. ^ Accumulo Incubation Status - Apache Incubator. Incubator.apache.org. Retrieved on 2013-09-18.
  7. ^ Metz, Cade. (2012-12-19) NSA Mimics Google, Pisses Off Senate | Wired Enterprise. Wired.com. Retrieved on 2013-09-18.
  8. ^ SASC Accumulo language pro-open source, say proponents Archived 2016-03-20 at the Wayback Machine. FierceGovernmentIT (2012-06-14). Retrieved on 2013-09-18.

External links[edit]