forked from apache/accumulo-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (61 loc) · 3.67 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
title: Apache Accumulo
skiph1fortitle: true
legal_notice: Apache Accumulo, Apache Hadoop, and the Accumulo project logo are trademarks<br>of the [Apache Software Foundation](https://www.apache.org).
---
<div class="row">
<div class="col-md-8">
<div class="jumbotron" style="text-align: center">
<h3>Apache Accumulo® is a sorted, distributed key/value store that provides robust, scalable data storage and retrieval.</h3>
<a class="btn btn-success" href="downloads/" role="button"><i class="fa fa-download fa-lg"></i> Download</a>
</div>
<p id="home-description">Apache Accumulo is a key/value store based on the design of Google's <a href="https://research.google.com/archive/bigtable.html">BigTable</a>. Accumulo stores its data in <a href="https://hadoop.apache.org">Apache Hadoop</a>'s HDFS and uses <a href="https://zookeeper.apache.org">Apache Zookeeper</a> for consensus. While many users interact directly with Accumulo, several <a href="/related-projects">open source projects</a> use Accumulo as their underlying store.</p>
<p id="home-description">To learn more about Accumulo, take the <a href="/tour">Accumulo tour</a>, read the <a href="/{{ site.latest_minor_release }}/accumulo_user_manual.html">user manual</a> and run the Accumulo <a href="https://github.com/apache/accumulo-examples">example code</a>. Feel free to <a href="/contact-us">contact us</a> if you have any questions.
<h3>Major Features</h3>
<div class="row">
<div class="col-md-6">
<h4>Server-side programming</h4>
<p>Accumulo has a programing meachinism (called Iterators) that can modify key/value pairs at various points in the data management process.</p>
</div>
<div class="col-md-6">
<h4>Cell-based access control</h4>
<p>Every Accumulo key/value pair has its own security label which limits query results based off user authorizations.</p>
</div>
</div>
<div class="row">
<div class="col-md-6">
<h4>Designed to scale</h4>
<p>Accumulo runs on a cluster using one or more HDFS instances. Nodes can be added or removed as the amount of data stored in Accumulo changes.</p>
</div>
<div class="col-md-6">
<h4>Stable</h4>
<p>Accumulo has a stable <a href="/latest/apidocs">client API</a> that follows <a href="https://semver.org">semantic versioning</a>. Each Accumulo release goes through <a href="/features/#testing">extensive testing</a>.</p>
</div>
</div>
</div>
<div class="col-md-4" id="sidebar">
<div class="row">
<div class="col-sm-12 panel panel-default">
<p style="font-size: 24px; margin-bottom: 0px;">Latest News</p>
{% assign visible_posts = site.posts | where:"draft",false %}
{% for post in visible_posts limit:site.num_home_posts %}
<div class="row latest-news-item">
<div class="col-sm-12" style="margin-bottom: 5px">
<span style="font-size: 12px; margin-right: 5px;">{{ post.date | date: "%b %Y" }}</span>
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</div>
</div>
{% endfor %}
<div id="news-archive-link">
<p>View all posts in the <a href="{{ site.baseurl }}/news">news archive</a></p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 panel panel-default">
{% capture social-include %}{% include social.md %}{% endcapture %}{{ social-include | markdownify }}
</div>
</div>
<a id="accumulo-summit-logo" a href="http://accumulosummit.com/"><img alt="Accumulo Summit" class="img-responsive" src="{{ site.baseurl }}/images/accumulo-summit-2017-logo-horizontal.png"></a>
</div>
</div>