You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by kt...@apache.org on 2019/09/11 19:34:10 UTC

[accumulo-website] branch master updated: Improved information about new table creation options in 2.0 blog (#193)

This is an automated email from the ASF dual-hosted git repository.

kturner pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/master by this push:
     new f4882d0  Improved information about new table creation options in 2.0 blog (#193)
f4882d0 is described below

commit f4882d00406812d2910185d8d20a0a18e028a49c
Author: Keith Turner <kt...@apache.org>
AuthorDate: Wed Sep 11 15:34:04 2019 -0400

    Improved information about new table creation options in 2.0 blog (#193)
---
 _posts/blog/2019-08-12-why-upgrade.md | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/_posts/blog/2019-08-12-why-upgrade.md b/_posts/blog/2019-08-12-why-upgrade.md
index cb1023c..d8b4b2e 100644
--- a/_posts/blog/2019-08-12-why-upgrade.md
+++ b/_posts/blog/2019-08-12-why-upgrade.md
@@ -87,10 +87,18 @@ m.at().family("002").qualifier(new byte[] {0,1}).delete();
 
 More examples for [Key] and [Mutation].
 
-## Offline creation
+## Table creation options
 
-Tables can now be created with splits offline.  This frees up online resources to perform other critical operations.
-See {% ghi 573 %}.
+Tables can now be created with splits, which is much faster than creating a
+table and then adding splits.  Tables can also be created in an offline state
+now.  The new bulk import API supports offline tables.  This enables the
+following method of getting a lot of data into a new table very quickly.
+
+  * Create offline table with splits
+  * Bulk import into new offline table
+  * Bring table online
+
+See the javadoc for {% jlink org.apache.accumulo.core.client.admin.NewTableConfiguration %} and search for methods introduced in 2.0.0 for more information.
 
 ## Search Documentation