You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fluo.apache.org by kt...@apache.org on 2019/02/13 22:55:35 UTC

[fluo-examples] branch master updated (4bd6a00 -> bba0a2d)

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

kturner pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/fluo-examples.git.


    from 4bd6a00  Add 'webindex/' from commit '91dc7cb6fc72c79a53c6b7d0a6c0599cd8eacb9b'
     new bbeada8  Update to Fluo 1.2, Accumulo 2.0, and Hadoop 3.0
     new f016dd6  misc updates
     new bba0a2d  Merge pull request #3 from keith-turner/stresso-update

The 359 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 stresso/.gitignore                                 |   1 +
 stresso/README.md                                  |  68 ++++++------
 stresso/bin/build.sh                               |  20 ++++
 stresso/bin/{init.sh => bulk_load.sh}              |   2 +-
 stresso/bin/compact-ll.sh                          |   2 +-
 stresso/bin/diff.sh                                |   2 +-
 stresso/bin/generate.sh                            |   2 +-
 stresso/bin/load-env.sh                            |   7 +-
 stresso/bin/load.sh                                |   2 +-
 stresso/bin/print.sh                               |   2 +-
 stresso/bin/run-test.sh                            |  66 +-----------
 stresso/bin/split.sh                               |   2 +-
 stresso/conf/.gitignore                            |   1 +
 stresso/conf/env.sh.example                        |   6 ++
 stresso/conf/fluo-app.properties                   |  36 +++++++
 stresso/conf/fluo-app.properties.example           |  36 +++++++
 stresso/pom.xml                                    |  53 ++++-----
 .../src/main/java/stresso/trie/AccumuloUtil.java   |  39 +++++++
 stresso/src/main/java/stresso/trie/CompactLL.java  |  38 +++----
 stresso/src/main/java/stresso/trie/Diff.java       |  16 +--
 stresso/src/main/java/stresso/trie/Init.java       | 118 ++++++++++++---------
 stresso/src/main/java/stresso/trie/Load.java       |   8 +-
 .../src/main/java/stresso/trie/NodeObserver.java   |  42 +++-----
 stresso/src/main/java/stresso/trie/Print.java      |  18 ++--
 stresso/src/main/java/stresso/trie/Split.java      |  81 ++++++--------
 .../src/main/java/stresso/trie/StressoConfig.java  |  27 +++++
 .../java/stresso/trie/StressoObserverProvider.java |  14 +++
 stresso/src/main/java/stresso/trie/Unique.java     |   2 +
 28 files changed, 410 insertions(+), 301 deletions(-)
 create mode 100755 stresso/bin/build.sh
 rename stresso/bin/{init.sh => bulk_load.sh} (86%)
 create mode 100644 stresso/conf/fluo-app.properties
 create mode 100644 stresso/conf/fluo-app.properties.example
 create mode 100644 stresso/src/main/java/stresso/trie/AccumuloUtil.java
 create mode 100644 stresso/src/main/java/stresso/trie/StressoConfig.java
 create mode 100644 stresso/src/main/java/stresso/trie/StressoObserverProvider.java