You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by pt...@apache.org on 2015/11/05 20:04:13 UTC

[07/54] [abbrv] [partial] storm git commit: remove files added by mistake

http://git-wip-us.apache.org/repos/asf/storm/blob/d13d1680/_site/target/checkout/external/storm-hbase/src/main/java/org/apache/storm/hbase/trident/state/HBaseState.java
----------------------------------------------------------------------
diff --git a/_site/target/checkout/external/storm-hbase/src/main/java/org/apache/storm/hbase/trident/state/HBaseState.java b/_site/target/checkout/external/storm-hbase/src/main/java/org/apache/storm/hbase/trident/state/HBaseState.java
deleted file mode 100644
index 7b31fad..0000000
--- a/_site/target/checkout/external/storm-hbase/src/main/java/org/apache/storm/hbase/trident/state/HBaseState.java
+++ /dev/null
@@ -1,164 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.storm.hbase.trident.state;
-
-import backtype.storm.topology.FailedException;
-import backtype.storm.tuple.Values;
-import com.google.common.collect.Lists;
-import org.apache.hadoop.conf.Configuration;
-import org.apache.hadoop.hbase.HBaseConfiguration;
-import org.apache.hadoop.hbase.client.*;
-import org.apache.storm.hbase.bolt.mapper.HBaseProjectionCriteria;
-import org.apache.storm.hbase.bolt.mapper.HBaseValueMapper;
-import org.apache.storm.hbase.common.ColumnList;
-import org.apache.storm.hbase.common.HBaseClient;
-import org.apache.storm.hbase.trident.mapper.TridentHBaseMapper;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import storm.trident.operation.TridentCollector;
-import storm.trident.state.State;
-import storm.trident.tuple.TridentTuple;
-
-import java.io.Serializable;
-import java.util.List;
-import java.util.Map;
-
-public class HBaseState implements State {
-
-    private static final Logger LOG = LoggerFactory.getLogger(HBaseState.class);
-
-    private Options options;
-    private HBaseClient hBaseClient;
-    private Map map;
-    private int numPartitions;
-    private int partitionIndex;
-
-    protected HBaseState(Map map, int partitionIndex, int numPartitions, Options options) {
-        this.options = options;
-        this.map = map;
-        this.partitionIndex = partitionIndex;
-        this.numPartitions = numPartitions;
-    }
-
-    public static class Options implements Serializable {
-        private TridentHBaseMapper mapper;
-        private Durability durability = Durability.SKIP_WAL;
-        private HBaseProjectionCriteria projectionCriteria;
-        private HBaseValueMapper rowToStormValueMapper;
-        private String configKey;
-        private String tableName;
-
-        public Options withDurability(Durability durability) {
-            this.durability = durability;
-            return this;
-        }
-
-        public Options withProjectionCriteria(HBaseProjectionCriteria projectionCriteria) {
-            this.projectionCriteria = projectionCriteria;
-            return this;
-        }
-
-        public Options withConfigKey(String configKey) {
-            this.configKey = configKey;
-            return this;
-        }
-
-        public Options withTableName(String tableName) {
-            this.tableName = tableName;
-            return this;
-        }
-
-        public Options withRowToStormValueMapper(HBaseValueMapper rowToStormValueMapper) {
-            this.rowToStormValueMapper = rowToStormValueMapper;
-            return this;
-        }
-
-        public Options withMapper(TridentHBaseMapper mapper) {
-            this.mapper = mapper;
-            return this;
-        }
-    }
-
-    protected void prepare() {
-        final Configuration hbConfig = HBaseConfiguration.create();
-        Map<String, Object> conf = (Map<String, Object>) map.get(options.configKey);
-        if(conf == null){
-            LOG.info("HBase configuration not found using key '" + options.configKey + "'");
-            LOG.info("Using HBase config from first hbase-site.xml found on classpath.");
-        } else {
-            if (conf.get("hbase.rootdir") == null) {
-                LOG.warn("No 'hbase.rootdir' value found in configuration! Using HBase defaults.");
-            }
-            for (String key : conf.keySet()) {
-                hbConfig.set(key, String.valueOf(map.get(key)));
-            }
-        }
-
-        this.hBaseClient = new HBaseClient(conf, hbConfig, options.tableName);
-    }
-
-    @Override
-    public void beginCommit(Long aLong) {
-        LOG.debug("beginCommit is noop.");
-    }
-
-    @Override
-    public void commit(Long aLong) {
-        LOG.debug("commit is noop.");
-    }
-
-    public void updateState(List<TridentTuple> tuples, TridentCollector collector) {
-        List<Mutation> mutations = Lists.newArrayList();
-
-        for (TridentTuple tuple : tuples) {
-            byte[] rowKey = options.mapper.rowKey(tuple);
-            ColumnList cols = options.mapper.columns(tuple);
-            mutations.addAll(hBaseClient.constructMutationReq(rowKey, cols, options.durability));
-        }
-
-        try {
-            hBaseClient.batchMutate(mutations);
-        } catch (Exception e) {
-            LOG.warn("Batch write failed but some requests might have succeeded. Triggering replay.", e);
-            throw new FailedException(e);
-        }
-    }
-
-    public List<List<Values>> batchRetrieve(List<TridentTuple> tridentTuples) {
-        List<List<Values>> batchRetrieveResult = Lists.newArrayList();
-        List<Get> gets = Lists.newArrayList();
-        for (TridentTuple tuple : tridentTuples) {
-            byte[] rowKey = options.mapper.rowKey(tuple);
-            gets.add(hBaseClient.constructGetRequests(rowKey, options.projectionCriteria));
-        }
-
-        try {
-            Result[] results = hBaseClient.batchGet(gets);
-            for(int i = 0; i < results.length; i++) {
-                Result result = results[i];
-                TridentTuple tuple = tridentTuples.get(i);
-                List<Values> values = options.rowToStormValueMapper.toValues(tuple, result);
-                batchRetrieveResult.add(values);
-            }
-        } catch (Exception e) {
-            LOG.warn("Batch get operation failed. Triggering replay.", e);
-            throw new FailedException(e);
-        }
-        return batchRetrieveResult;
-    }
-}

http://git-wip-us.apache.org/repos/asf/storm/blob/d13d1680/_site/target/checkout/external/storm-hbase/src/main/java/org/apache/storm/hbase/trident/state/HBaseStateFactory.java
----------------------------------------------------------------------
diff --git a/_site/target/checkout/external/storm-hbase/src/main/java/org/apache/storm/hbase/trident/state/HBaseStateFactory.java b/_site/target/checkout/external/storm-hbase/src/main/java/org/apache/storm/hbase/trident/state/HBaseStateFactory.java
deleted file mode 100644
index 1fedc61..0000000
--- a/_site/target/checkout/external/storm-hbase/src/main/java/org/apache/storm/hbase/trident/state/HBaseStateFactory.java
+++ /dev/null
@@ -1,40 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.storm.hbase.trident.state;
-
-import backtype.storm.task.IMetricsContext;
-import storm.trident.state.State;
-import storm.trident.state.StateFactory;
-
-import java.util.Map;
-
-public class HBaseStateFactory implements StateFactory {
-
-    private HBaseState.Options options;
-
-    public HBaseStateFactory(HBaseState.Options options) {
-        this.options = options;
-    }
-
-    @Override
-    public State makeState(Map map, IMetricsContext iMetricsContext, int partitionIndex, int numPartitions) {
-        HBaseState state = new HBaseState(map , partitionIndex, numPartitions, options);
-        state.prepare();
-        return state;
-    }
-}

http://git-wip-us.apache.org/repos/asf/storm/blob/d13d1680/_site/target/checkout/external/storm-hbase/src/main/java/org/apache/storm/hbase/trident/state/HBaseUpdater.java
----------------------------------------------------------------------
diff --git a/_site/target/checkout/external/storm-hbase/src/main/java/org/apache/storm/hbase/trident/state/HBaseUpdater.java b/_site/target/checkout/external/storm-hbase/src/main/java/org/apache/storm/hbase/trident/state/HBaseUpdater.java
deleted file mode 100644
index 248ea2d..0000000
--- a/_site/target/checkout/external/storm-hbase/src/main/java/org/apache/storm/hbase/trident/state/HBaseUpdater.java
+++ /dev/null
@@ -1,32 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.storm.hbase.trident.state;
-
-import storm.trident.operation.TridentCollector;
-import storm.trident.state.BaseStateUpdater;
-import storm.trident.tuple.TridentTuple;
-
-import java.util.List;
-
-public class HBaseUpdater extends BaseStateUpdater<HBaseState>  {
-
-    @Override
-    public void updateState(HBaseState hBaseState, List<TridentTuple> tuples, TridentCollector collector) {
-        hBaseState.updateState(tuples, collector);
-    }
-}

http://git-wip-us.apache.org/repos/asf/storm/blob/d13d1680/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/LookupWordCount.java
----------------------------------------------------------------------
diff --git a/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/LookupWordCount.java b/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/LookupWordCount.java
deleted file mode 100644
index 656bce5..0000000
--- a/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/LookupWordCount.java
+++ /dev/null
@@ -1,79 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.storm.hbase.topology;
-
-import backtype.storm.Config;
-import backtype.storm.LocalCluster;
-import backtype.storm.StormSubmitter;
-import backtype.storm.topology.TopologyBuilder;
-import backtype.storm.tuple.Fields;
-import org.apache.storm.hbase.bolt.HBaseLookupBolt;
-import org.apache.storm.hbase.bolt.mapper.HBaseProjectionCriteria;
-import org.apache.storm.hbase.bolt.mapper.SimpleHBaseMapper;
-
-import java.util.HashMap;
-import java.util.Map;
-
-
-public class LookupWordCount {
-    private static final String WORD_SPOUT = "WORD_SPOUT";
-    private static final String LOOKUP_BOLT = "LOOKUP_BOLT";
-    private static final String TOTAL_COUNT_BOLT = "TOTAL_COUNT_BOLT";
-
-    public static void main(String[] args) throws Exception {
-        Config config = new Config();
-
-        Map<String, Object> hbConf = new HashMap<String, Object>();
-        if(args.length > 0){
-            hbConf.put("hbase.rootdir", args[0]);
-        }
-        config.put("hbase.conf", hbConf);
-
-        WordSpout spout = new WordSpout();
-        TotalWordCounter totalBolt = new TotalWordCounter();
-
-        SimpleHBaseMapper mapper = new SimpleHBaseMapper().withRowKeyField("word");
-        HBaseProjectionCriteria projectionCriteria = new HBaseProjectionCriteria();
-        projectionCriteria.addColumn(new HBaseProjectionCriteria.ColumnMetaData("cf", "count"));
-
-        WordCountValueMapper rowToTupleMapper = new WordCountValueMapper();
-
-        HBaseLookupBolt hBaseLookupBolt = new HBaseLookupBolt("WordCount", mapper, rowToTupleMapper)
-                .withConfigKey("hbase.conf")
-                .withProjectionCriteria(projectionCriteria);
-
-        //wordspout -> lookupbolt -> totalCountBolt
-        TopologyBuilder builder = new TopologyBuilder();
-        builder.setSpout(WORD_SPOUT, spout, 1);
-        builder.setBolt(LOOKUP_BOLT, hBaseLookupBolt, 1).shuffleGrouping(WORD_SPOUT);
-        builder.setBolt(TOTAL_COUNT_BOLT, totalBolt, 1).fieldsGrouping(LOOKUP_BOLT, new Fields("columnName"));
-
-        if (args.length == 1) {
-            LocalCluster cluster = new LocalCluster();
-            cluster.submitTopology("test", config, builder.createTopology());
-            Thread.sleep(30000);
-            cluster.killTopology("test");
-            cluster.shutdown();
-            System.exit(0);
-        } else if (args.length == 2) {
-            StormSubmitter.submitTopology(args[1], config, builder.createTopology());
-        } else{
-            System.out.println("Usage: LookupWordCount <hbase.rootdir>");
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/storm/blob/d13d1680/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/PersistentWordCount.java
----------------------------------------------------------------------
diff --git a/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/PersistentWordCount.java b/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/PersistentWordCount.java
deleted file mode 100644
index 0d807b2..0000000
--- a/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/PersistentWordCount.java
+++ /dev/null
@@ -1,81 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.storm.hbase.topology;
-
-import backtype.storm.Config;
-import backtype.storm.LocalCluster;
-import backtype.storm.StormSubmitter;
-import backtype.storm.topology.TopologyBuilder;
-import backtype.storm.tuple.Fields;
-import org.apache.storm.hbase.bolt.HBaseBolt;
-import org.apache.storm.hbase.bolt.mapper.SimpleHBaseMapper;
-
-import java.util.HashMap;
-import java.util.Map;
-
-
-public class PersistentWordCount {
-    private static final String WORD_SPOUT = "WORD_SPOUT";
-    private static final String COUNT_BOLT = "COUNT_BOLT";
-    private static final String HBASE_BOLT = "HBASE_BOLT";
-
-
-    public static void main(String[] args) throws Exception {
-        Config config = new Config();
-
-        Map<String, Object> hbConf = new HashMap<String, Object>();
-        if(args.length > 0){
-            hbConf.put("hbase.rootdir", args[0]);
-        }
-        config.put("hbase.conf", hbConf);
-
-        WordSpout spout = new WordSpout();
-        WordCounter bolt = new WordCounter();
-
-        SimpleHBaseMapper mapper = new SimpleHBaseMapper()
-                .withRowKeyField("word")
-                .withColumnFields(new Fields("word"))
-                .withCounterFields(new Fields("count"))
-                .withColumnFamily("cf");
-
-        HBaseBolt hbase = new HBaseBolt("WordCount", mapper)
-                .withConfigKey("hbase.conf");
-
-
-        // wordSpout ==> countBolt ==> HBaseBolt
-        TopologyBuilder builder = new TopologyBuilder();
-
-        builder.setSpout(WORD_SPOUT, spout, 1);
-        builder.setBolt(COUNT_BOLT, bolt, 1).shuffleGrouping(WORD_SPOUT);
-        builder.setBolt(HBASE_BOLT, hbase, 1).fieldsGrouping(COUNT_BOLT, new Fields("word"));
-
-
-        if (args.length == 1) {
-            LocalCluster cluster = new LocalCluster();
-            cluster.submitTopology("test", config, builder.createTopology());
-            Thread.sleep(30000);
-            cluster.killTopology("test");
-            cluster.shutdown();
-            System.exit(0);
-        } else if (args.length == 2) {
-            StormSubmitter.submitTopology(args[1], config, builder.createTopology());
-        } else{
-            System.out.println("Usage: HdfsFileTopology <hdfs url> [topology name]");
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/storm/blob/d13d1680/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/TotalWordCounter.java
----------------------------------------------------------------------
diff --git a/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/TotalWordCounter.java b/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/TotalWordCounter.java
deleted file mode 100644
index 93bd522..0000000
--- a/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/TotalWordCounter.java
+++ /dev/null
@@ -1,70 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.storm.hbase.topology;
-
-import backtype.storm.task.TopologyContext;
-import backtype.storm.topology.BasicOutputCollector;
-import backtype.storm.topology.IBasicBolt;
-import backtype.storm.topology.OutputFieldsDeclarer;
-import backtype.storm.tuple.Fields;
-import backtype.storm.tuple.Tuple;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-import java.math.BigInteger;
-import java.util.Map;
-import java.util.Random;
-
-import static backtype.storm.utils.Utils.tuple;
-
-public class TotalWordCounter implements IBasicBolt {
-
-    private BigInteger total = BigInteger.ZERO;
-    private static final Logger LOG = LoggerFactory.getLogger(TotalWordCounter.class);
-    private static final Random RANDOM = new Random();
-    @SuppressWarnings("rawtypes")
-    public void prepare(Map stormConf, TopologyContext context) {
-    }
-
-    /*
-     * Just output the word value with a count of 1.
-     * The HBaseBolt will handle incrementing the counter.
-     */
-    public void execute(Tuple input, BasicOutputCollector collector) {
-        total = total.add(new BigInteger(input.getValues().get(1).toString()));
-        collector.emit(tuple(total.toString()));
-        //prints the total with low probability.
-        if(RANDOM.nextInt(1000) > 995) {
-            LOG.info("Running total = " + total);
-        }
-    }
-
-    public void cleanup() {
-        LOG.info("Final total = " + total);
-    }
-
-    public void declareOutputFields(OutputFieldsDeclarer declarer) {
-        declarer.declare(new Fields("total"));
-    }
-
-    @Override
-    public Map<String, Object> getComponentConfiguration() {
-        return null;
-    }
-
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/storm/blob/d13d1680/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/WordCountClient.java
----------------------------------------------------------------------
diff --git a/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/WordCountClient.java b/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/WordCountClient.java
deleted file mode 100644
index 33ce450..0000000
--- a/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/WordCountClient.java
+++ /dev/null
@@ -1,57 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.storm.hbase.topology;
-
-import org.apache.hadoop.conf.Configuration;
-import org.apache.hadoop.hbase.HBaseConfiguration;
-import org.apache.hadoop.hbase.client.Get;
-import org.apache.hadoop.hbase.client.HTable;
-import org.apache.hadoop.hbase.client.Result;
-import org.apache.hadoop.hbase.util.Bytes;
-
-/**
- * Connects to the 'WordCount' table and prints counts for each word.
- *
- * Assumes you have run (or are running) <code>PersistentWordCount</code>
- */
-public class WordCountClient {
-
-    public static void main(String[] args) throws Exception {
-        Configuration config = HBaseConfiguration.create();
-        if(args.length > 0){
-            config.set("hbase.rootdir", args[0]);
-        }
-
-        HTable table = new HTable(config, "WordCount");
-
-
-        for (String word : WordSpout.words) {
-            Get get = new Get(Bytes.toBytes(word));
-            Result result = table.get(get);
-
-            byte[] countBytes = result.getValue(Bytes.toBytes("cf"), Bytes.toBytes("count"));
-            byte[] wordBytes = result.getValue(Bytes.toBytes("cf"), Bytes.toBytes("word"));
-
-            String wordStr = Bytes.toString(wordBytes);
-            System.out.println(wordStr);
-            long count = Bytes.toLong(countBytes);
-            System.out.println("Word: '" + wordStr + "', Count: " + count);
-        }
-
-    }
-}

http://git-wip-us.apache.org/repos/asf/storm/blob/d13d1680/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/WordCountValueMapper.java
----------------------------------------------------------------------
diff --git a/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/WordCountValueMapper.java b/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/WordCountValueMapper.java
deleted file mode 100644
index 2463085..0000000
--- a/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/WordCountValueMapper.java
+++ /dev/null
@@ -1,70 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.storm.hbase.topology;
-
-
-import backtype.storm.topology.OutputFieldsDeclarer;
-import backtype.storm.tuple.Fields;
-import backtype.storm.tuple.ITuple;
-import backtype.storm.tuple.Values;
-import org.apache.hadoop.hbase.Cell;
-import org.apache.hadoop.hbase.CellUtil;
-import org.apache.hadoop.hbase.client.Result;
-import org.apache.hadoop.hbase.util.Bytes;
-import org.apache.storm.hbase.bolt.mapper.HBaseValueMapper;
-
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- * Takes a Hbase result and returns a value list that has a value instance for each column and corresponding value.
- * So if the result from Hbase was
- * <pre>
- * WORD, COUNT
- * apple, 10
- * bannana, 20
- * </pre>
- *
- * this will return
- * <pre>
- *     [WORD, apple]
- *     [COUNT, 10]
- *     [WORD, banana]
- *     [COUNT, 20]
- * </pre>
- *
- */
-public class WordCountValueMapper implements HBaseValueMapper {
-
-    @Override
-    public List<Values> toValues(ITuple tuple, Result result) throws Exception {
-        List<Values> values = new ArrayList<Values>();
-        Cell[] cells = result.rawCells();
-        for(Cell cell : cells) {
-            Values value = new Values (Bytes.toString(CellUtil.cloneQualifier(cell)), Bytes.toLong(CellUtil.cloneValue(cell)));
-            values.add(value);
-        }
-        return values;
-    }
-
-    @Override
-    public void declareOutputFields(OutputFieldsDeclarer declarer) {
-        declarer.declare(new Fields("columnName","columnValue"));
-    }
-
-}

http://git-wip-us.apache.org/repos/asf/storm/blob/d13d1680/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/WordCounter.java
----------------------------------------------------------------------
diff --git a/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/WordCounter.java b/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/WordCounter.java
deleted file mode 100644
index 602978e..0000000
--- a/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/WordCounter.java
+++ /dev/null
@@ -1,59 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.storm.hbase.topology;
-
-import backtype.storm.task.TopologyContext;
-import backtype.storm.topology.BasicOutputCollector;
-import backtype.storm.topology.IBasicBolt;
-import backtype.storm.topology.OutputFieldsDeclarer;
-import backtype.storm.tuple.Fields;
-import backtype.storm.tuple.Tuple;
-
-import java.util.Map;
-
-import static backtype.storm.utils.Utils.tuple;
-
-public class WordCounter implements IBasicBolt {
-
-
-    @SuppressWarnings("rawtypes")
-    public void prepare(Map stormConf, TopologyContext context) {
-    }
-
-    /*
-     * Just output the word value with a count of 1.
-     * The HBaseBolt will handle incrementing the counter.
-     */
-    public void execute(Tuple input, BasicOutputCollector collector) {
-        collector.emit(tuple(input.getValues().get(0), 1));
-    }
-
-    public void cleanup() {
-
-    }
-
-    public void declareOutputFields(OutputFieldsDeclarer declarer) {
-        declarer.declare(new Fields("word", "count"));
-    }
-
-    @Override
-    public Map<String, Object> getComponentConfiguration() {
-        return null;
-    }
-
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/storm/blob/d13d1680/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/WordSpout.java
----------------------------------------------------------------------
diff --git a/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/WordSpout.java b/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/WordSpout.java
deleted file mode 100644
index 799438c..0000000
--- a/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/topology/WordSpout.java
+++ /dev/null
@@ -1,88 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.storm.hbase.topology;
-
-import backtype.storm.spout.SpoutOutputCollector;
-import backtype.storm.task.TopologyContext;
-import backtype.storm.topology.IRichSpout;
-import backtype.storm.topology.OutputFieldsDeclarer;
-import backtype.storm.tuple.Fields;
-import backtype.storm.tuple.Values;
-
-import java.util.Map;
-import java.util.Random;
-import java.util.UUID;
-
-public class WordSpout implements IRichSpout {
-    boolean isDistributed;
-    SpoutOutputCollector collector;
-    public static final String[] words = new String[] { "apple", "orange", "pineapple", "banana", "watermelon" };
-
-    public WordSpout() {
-        this(true);
-    }
-
-    public WordSpout(boolean isDistributed) {
-        this.isDistributed = isDistributed;
-    }
-
-    public boolean isDistributed() {
-        return this.isDistributed;
-    }
-
-    @SuppressWarnings("rawtypes")
-    public void open(Map conf, TopologyContext context, SpoutOutputCollector collector) {
-        this.collector = collector;
-    }
-
-    public void close() {
-
-    }
-
-    public void nextTuple() {
-        final Random rand = new Random();
-        final String word = words[rand.nextInt(words.length)];
-        this.collector.emit(new Values(word), UUID.randomUUID());
-        Thread.yield();
-    }
-
-    public void ack(Object msgId) {
-
-    }
-
-    public void fail(Object msgId) {
-
-    }
-
-    public void declareOutputFields(OutputFieldsDeclarer declarer) {
-        declarer.declare(new Fields("word"));
-    }
-
-    @Override
-    public void activate() {
-    }
-
-    @Override
-    public void deactivate() {
-    }
-
-    @Override
-    public Map<String, Object> getComponentConfiguration() {
-        return null;
-    }
-}

http://git-wip-us.apache.org/repos/asf/storm/blob/d13d1680/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/trident/PrintFunction.java
----------------------------------------------------------------------
diff --git a/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/trident/PrintFunction.java b/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/trident/PrintFunction.java
deleted file mode 100644
index 91e0a7a..0000000
--- a/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/trident/PrintFunction.java
+++ /dev/null
@@ -1,40 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.storm.hbase.trident;
-
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import storm.trident.operation.BaseFunction;
-import storm.trident.operation.TridentCollector;
-import storm.trident.tuple.TridentTuple;
-
-import java.util.Random;
-
-public class PrintFunction extends BaseFunction {
-
-    private static final Logger LOG = LoggerFactory.getLogger(PrintFunction.class);
-
-    private static final Random RANDOM = new Random();
-
-    @Override
-    public void execute(TridentTuple tuple, TridentCollector tridentCollector) {
-        if(RANDOM.nextInt(1000) > 995) {
-            LOG.info(tuple.toString());
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/storm/blob/d13d1680/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/trident/WordCountTrident.java
----------------------------------------------------------------------
diff --git a/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/trident/WordCountTrident.java b/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/trident/WordCountTrident.java
deleted file mode 100644
index 69d067d..0000000
--- a/_site/target/checkout/external/storm-hbase/src/test/java/org/apache/storm/hbase/trident/WordCountTrident.java
+++ /dev/null
@@ -1,104 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.storm.hbase.trident;
-
-import backtype.storm.Config;
-import backtype.storm.LocalCluster;
-import backtype.storm.StormSubmitter;
-import backtype.storm.generated.StormTopology;
-import backtype.storm.tuple.Fields;
-import backtype.storm.tuple.Values;
-import org.apache.hadoop.hbase.client.Durability;
-import org.apache.storm.hbase.bolt.mapper.HBaseProjectionCriteria;
-import org.apache.storm.hbase.bolt.mapper.HBaseValueMapper;
-import org.apache.storm.hbase.topology.WordCountValueMapper;
-import org.apache.storm.hbase.trident.mapper.SimpleTridentHBaseMapper;
-import org.apache.storm.hbase.trident.mapper.TridentHBaseMapper;
-import org.apache.storm.hbase.trident.state.HBaseQuery;
-import org.apache.storm.hbase.trident.state.HBaseState;
-import org.apache.storm.hbase.trident.state.HBaseStateFactory;
-import org.apache.storm.hbase.trident.state.HBaseUpdater;
-import storm.trident.Stream;
-import storm.trident.TridentState;
-import storm.trident.TridentTopology;
-import storm.trident.state.StateFactory;
-import storm.trident.testing.FixedBatchSpout;
-
-public class WordCountTrident {
-    public static StormTopology buildTopology(String hbaseRoot){
-        Fields fields = new Fields("word", "count");
-        FixedBatchSpout spout = new FixedBatchSpout(fields, 4,
-                new Values("storm", 1),
-                new Values("trident", 1),
-                new Values("needs", 1),
-                new Values("javadoc", 1)
-        );
-        spout.setCycle(true);
-
-        TridentHBaseMapper tridentHBaseMapper = new SimpleTridentHBaseMapper()
-                .withColumnFamily("cf")
-                .withColumnFields(new Fields("word"))
-                .withCounterFields(new Fields("count"))
-                .withRowKeyField("word");
-
-        HBaseValueMapper rowToStormValueMapper = new WordCountValueMapper();
-
-        HBaseProjectionCriteria projectionCriteria = new HBaseProjectionCriteria();
-        projectionCriteria.addColumn(new HBaseProjectionCriteria.ColumnMetaData("cf", "count"));
-
-        HBaseState.Options options = new HBaseState.Options()
-                .withConfigKey(hbaseRoot)
-                .withDurability(Durability.SYNC_WAL)
-                .withMapper(tridentHBaseMapper)
-                .withProjectionCriteria(projectionCriteria)
-                .withRowToStormValueMapper(rowToStormValueMapper)
-                .withTableName("WordCount");
-
-        StateFactory factory = new HBaseStateFactory(options);
-
-        TridentTopology topology = new TridentTopology();
-        Stream stream = topology.newStream("spout1", spout);
-
-        stream.partitionPersist(factory, fields,  new HBaseUpdater(), new Fields());
-
-        TridentState state = topology.newStaticState(factory);
-        stream = stream.stateQuery(state, new Fields("word"), new HBaseQuery(), new Fields("columnName","columnValue"));
-        stream.each(new Fields("word","columnValue"), new PrintFunction(), new Fields());
-        return topology.build();
-    }
-
-    public static void main(String[] args) throws Exception {
-        Config conf = new Config();
-        conf.setMaxSpoutPending(5);
-        if (args.length == 1) {
-            LocalCluster cluster = new LocalCluster();
-            cluster.submitTopology("wordCounter", conf, buildTopology(args[0]));
-            Thread.sleep(60 * 1000);
-            cluster.killTopology("wordCounter");
-            cluster.shutdown();
-            System.exit(0);
-        }
-        else if(args.length == 2) {
-            conf.setNumWorkers(3);
-            StormSubmitter.submitTopology(args[1], conf, buildTopology(args[0]));
-        } else{
-            System.out.println("Usage: TridentFileTopology <hdfs url> [topology name]");
-        }
-    }
-
-}

http://git-wip-us.apache.org/repos/asf/storm/blob/d13d1680/_site/target/checkout/external/storm-hbase/target/apidocs/allclasses-frame.html
----------------------------------------------------------------------
diff --git a/_site/target/checkout/external/storm-hbase/target/apidocs/allclasses-frame.html b/_site/target/checkout/external/storm-hbase/target/apidocs/allclasses-frame.html
deleted file mode 100644
index 797d8fc..0000000
--- a/_site/target/checkout/external/storm-hbase/target/apidocs/allclasses-frame.html
+++ /dev/null
@@ -1,84 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!--NewPage-->
-<HTML>
-<HEAD>
-<!-- Generated by javadoc (build 1.6.0_65) on Wed Oct 28 17:02:11 EDT 2015 -->
-<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<TITLE>
-All Classes (storm-hbase 0.9.6 API)
-</TITLE>
-
-<META NAME="date" CONTENT="2015-10-28">
-
-<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
-
-
-</HEAD>
-
-<BODY BGCOLOR="white">
-<FONT size="+1" CLASS="FrameHeadingFont">
-<B>All Classes</B></FONT>
-<BR>
-
-<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
-<TR>
-<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="org/apache/storm/hbase/bolt/AbstractHBaseBolt.html" title="class in org.apache.storm.hbase.bolt" target="classFrame">AbstractHBaseBolt</A>
-<BR>
-<A HREF="org/apache/storm/hbase/common/ColumnList.html" title="class in org.apache.storm.hbase.common" target="classFrame">ColumnList</A>
-<BR>
-<A HREF="org/apache/storm/hbase/common/ColumnList.AbstractColumn.html" title="class in org.apache.storm.hbase.common" target="classFrame">ColumnList.AbstractColumn</A>
-<BR>
-<A HREF="org/apache/storm/hbase/common/ColumnList.Column.html" title="class in org.apache.storm.hbase.common" target="classFrame">ColumnList.Column</A>
-<BR>
-<A HREF="org/apache/storm/hbase/common/ColumnList.Counter.html" title="class in org.apache.storm.hbase.common" target="classFrame">ColumnList.Counter</A>
-<BR>
-<A HREF="org/apache/storm/hbase/bolt/HBaseBolt.html" title="class in org.apache.storm.hbase.bolt" target="classFrame">HBaseBolt</A>
-<BR>
-<A HREF="org/apache/storm/hbase/common/HBaseClient.html" title="class in org.apache.storm.hbase.common" target="classFrame">HBaseClient</A>
-<BR>
-<A HREF="org/apache/storm/hbase/bolt/HBaseLookupBolt.html" title="class in org.apache.storm.hbase.bolt" target="classFrame">HBaseLookupBolt</A>
-<BR>
-<A HREF="org/apache/storm/hbase/bolt/mapper/HBaseMapper.html" title="interface in org.apache.storm.hbase.bolt.mapper" target="classFrame"><I>HBaseMapper</I></A>
-<BR>
-<A HREF="org/apache/storm/hbase/trident/state/HBaseMapState.html" title="class in org.apache.storm.hbase.trident.state" target="classFrame">HBaseMapState</A>
-<BR>
-<A HREF="org/apache/storm/hbase/trident/state/HBaseMapState.Factory.html" title="class in org.apache.storm.hbase.trident.state" target="classFrame">HBaseMapState.Factory</A>
-<BR>
-<A HREF="org/apache/storm/hbase/trident/state/HBaseMapState.Options.html" title="class in org.apache.storm.hbase.trident.state" target="classFrame">HBaseMapState.Options</A>
-<BR>
-<A HREF="org/apache/storm/hbase/bolt/mapper/HBaseProjectionCriteria.html" title="class in org.apache.storm.hbase.bolt.mapper" target="classFrame">HBaseProjectionCriteria</A>
-<BR>
-<A HREF="org/apache/storm/hbase/bolt/mapper/HBaseProjectionCriteria.ColumnMetaData.html" title="class in org.apache.storm.hbase.bolt.mapper" target="classFrame">HBaseProjectionCriteria.ColumnMetaData</A>
-<BR>
-<A HREF="org/apache/storm/hbase/trident/state/HBaseQuery.html" title="class in org.apache.storm.hbase.trident.state" target="classFrame">HBaseQuery</A>
-<BR>
-<A HREF="org/apache/storm/hbase/security/HBaseSecurityUtil.html" title="class in org.apache.storm.hbase.security" target="classFrame">HBaseSecurityUtil</A>
-<BR>
-<A HREF="org/apache/storm/hbase/trident/state/HBaseState.html" title="class in org.apache.storm.hbase.trident.state" target="classFrame">HBaseState</A>
-<BR>
-<A HREF="org/apache/storm/hbase/trident/state/HBaseState.Options.html" title="class in org.apache.storm.hbase.trident.state" target="classFrame">HBaseState.Options</A>
-<BR>
-<A HREF="org/apache/storm/hbase/trident/state/HBaseStateFactory.html" title="class in org.apache.storm.hbase.trident.state" target="classFrame">HBaseStateFactory</A>
-<BR>
-<A HREF="org/apache/storm/hbase/trident/state/HBaseUpdater.html" title="class in org.apache.storm.hbase.trident.state" target="classFrame">HBaseUpdater</A>
-<BR>
-<A HREF="org/apache/storm/hbase/bolt/mapper/HBaseValueMapper.html" title="interface in org.apache.storm.hbase.bolt.mapper" target="classFrame"><I>HBaseValueMapper</I></A>
-<BR>
-<A HREF="org/apache/storm/hbase/common/IColumn.html" title="interface in org.apache.storm.hbase.common" target="classFrame"><I>IColumn</I></A>
-<BR>
-<A HREF="org/apache/storm/hbase/common/ICounter.html" title="interface in org.apache.storm.hbase.common" target="classFrame"><I>ICounter</I></A>
-<BR>
-<A HREF="org/apache/storm/hbase/bolt/mapper/SimpleHBaseMapper.html" title="class in org.apache.storm.hbase.bolt.mapper" target="classFrame">SimpleHBaseMapper</A>
-<BR>
-<A HREF="org/apache/storm/hbase/trident/mapper/SimpleTridentHBaseMapper.html" title="class in org.apache.storm.hbase.trident.mapper" target="classFrame">SimpleTridentHBaseMapper</A>
-<BR>
-<A HREF="org/apache/storm/hbase/trident/mapper/TridentHBaseMapper.html" title="interface in org.apache.storm.hbase.trident.mapper" target="classFrame"><I>TridentHBaseMapper</I></A>
-<BR>
-<A HREF="org/apache/storm/hbase/common/Utils.html" title="class in org.apache.storm.hbase.common" target="classFrame">Utils</A>
-<BR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-</BODY>
-</HTML>

http://git-wip-us.apache.org/repos/asf/storm/blob/d13d1680/_site/target/checkout/external/storm-hbase/target/apidocs/allclasses-noframe.html
----------------------------------------------------------------------
diff --git a/_site/target/checkout/external/storm-hbase/target/apidocs/allclasses-noframe.html b/_site/target/checkout/external/storm-hbase/target/apidocs/allclasses-noframe.html
deleted file mode 100644
index 4d542a3..0000000
--- a/_site/target/checkout/external/storm-hbase/target/apidocs/allclasses-noframe.html
+++ /dev/null
@@ -1,84 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!--NewPage-->
-<HTML>
-<HEAD>
-<!-- Generated by javadoc (build 1.6.0_65) on Wed Oct 28 17:02:11 EDT 2015 -->
-<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<TITLE>
-All Classes (storm-hbase 0.9.6 API)
-</TITLE>
-
-<META NAME="date" CONTENT="2015-10-28">
-
-<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
-
-
-</HEAD>
-
-<BODY BGCOLOR="white">
-<FONT size="+1" CLASS="FrameHeadingFont">
-<B>All Classes</B></FONT>
-<BR>
-
-<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
-<TR>
-<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="org/apache/storm/hbase/bolt/AbstractHBaseBolt.html" title="class in org.apache.storm.hbase.bolt">AbstractHBaseBolt</A>
-<BR>
-<A HREF="org/apache/storm/hbase/common/ColumnList.html" title="class in org.apache.storm.hbase.common">ColumnList</A>
-<BR>
-<A HREF="org/apache/storm/hbase/common/ColumnList.AbstractColumn.html" title="class in org.apache.storm.hbase.common">ColumnList.AbstractColumn</A>
-<BR>
-<A HREF="org/apache/storm/hbase/common/ColumnList.Column.html" title="class in org.apache.storm.hbase.common">ColumnList.Column</A>
-<BR>
-<A HREF="org/apache/storm/hbase/common/ColumnList.Counter.html" title="class in org.apache.storm.hbase.common">ColumnList.Counter</A>
-<BR>
-<A HREF="org/apache/storm/hbase/bolt/HBaseBolt.html" title="class in org.apache.storm.hbase.bolt">HBaseBolt</A>
-<BR>
-<A HREF="org/apache/storm/hbase/common/HBaseClient.html" title="class in org.apache.storm.hbase.common">HBaseClient</A>
-<BR>
-<A HREF="org/apache/storm/hbase/bolt/HBaseLookupBolt.html" title="class in org.apache.storm.hbase.bolt">HBaseLookupBolt</A>
-<BR>
-<A HREF="org/apache/storm/hbase/bolt/mapper/HBaseMapper.html" title="interface in org.apache.storm.hbase.bolt.mapper"><I>HBaseMapper</I></A>
-<BR>
-<A HREF="org/apache/storm/hbase/trident/state/HBaseMapState.html" title="class in org.apache.storm.hbase.trident.state">HBaseMapState</A>
-<BR>
-<A HREF="org/apache/storm/hbase/trident/state/HBaseMapState.Factory.html" title="class in org.apache.storm.hbase.trident.state">HBaseMapState.Factory</A>
-<BR>
-<A HREF="org/apache/storm/hbase/trident/state/HBaseMapState.Options.html" title="class in org.apache.storm.hbase.trident.state">HBaseMapState.Options</A>
-<BR>
-<A HREF="org/apache/storm/hbase/bolt/mapper/HBaseProjectionCriteria.html" title="class in org.apache.storm.hbase.bolt.mapper">HBaseProjectionCriteria</A>
-<BR>
-<A HREF="org/apache/storm/hbase/bolt/mapper/HBaseProjectionCriteria.ColumnMetaData.html" title="class in org.apache.storm.hbase.bolt.mapper">HBaseProjectionCriteria.ColumnMetaData</A>
-<BR>
-<A HREF="org/apache/storm/hbase/trident/state/HBaseQuery.html" title="class in org.apache.storm.hbase.trident.state">HBaseQuery</A>
-<BR>
-<A HREF="org/apache/storm/hbase/security/HBaseSecurityUtil.html" title="class in org.apache.storm.hbase.security">HBaseSecurityUtil</A>
-<BR>
-<A HREF="org/apache/storm/hbase/trident/state/HBaseState.html" title="class in org.apache.storm.hbase.trident.state">HBaseState</A>
-<BR>
-<A HREF="org/apache/storm/hbase/trident/state/HBaseState.Options.html" title="class in org.apache.storm.hbase.trident.state">HBaseState.Options</A>
-<BR>
-<A HREF="org/apache/storm/hbase/trident/state/HBaseStateFactory.html" title="class in org.apache.storm.hbase.trident.state">HBaseStateFactory</A>
-<BR>
-<A HREF="org/apache/storm/hbase/trident/state/HBaseUpdater.html" title="class in org.apache.storm.hbase.trident.state">HBaseUpdater</A>
-<BR>
-<A HREF="org/apache/storm/hbase/bolt/mapper/HBaseValueMapper.html" title="interface in org.apache.storm.hbase.bolt.mapper"><I>HBaseValueMapper</I></A>
-<BR>
-<A HREF="org/apache/storm/hbase/common/IColumn.html" title="interface in org.apache.storm.hbase.common"><I>IColumn</I></A>
-<BR>
-<A HREF="org/apache/storm/hbase/common/ICounter.html" title="interface in org.apache.storm.hbase.common"><I>ICounter</I></A>
-<BR>
-<A HREF="org/apache/storm/hbase/bolt/mapper/SimpleHBaseMapper.html" title="class in org.apache.storm.hbase.bolt.mapper">SimpleHBaseMapper</A>
-<BR>
-<A HREF="org/apache/storm/hbase/trident/mapper/SimpleTridentHBaseMapper.html" title="class in org.apache.storm.hbase.trident.mapper">SimpleTridentHBaseMapper</A>
-<BR>
-<A HREF="org/apache/storm/hbase/trident/mapper/TridentHBaseMapper.html" title="interface in org.apache.storm.hbase.trident.mapper"><I>TridentHBaseMapper</I></A>
-<BR>
-<A HREF="org/apache/storm/hbase/common/Utils.html" title="class in org.apache.storm.hbase.common">Utils</A>
-<BR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-</BODY>
-</HTML>

http://git-wip-us.apache.org/repos/asf/storm/blob/d13d1680/_site/target/checkout/external/storm-hbase/target/apidocs/constant-values.html
----------------------------------------------------------------------
diff --git a/_site/target/checkout/external/storm-hbase/target/apidocs/constant-values.html b/_site/target/checkout/external/storm-hbase/target/apidocs/constant-values.html
deleted file mode 100644
index 64d9d80..0000000
--- a/_site/target/checkout/external/storm-hbase/target/apidocs/constant-values.html
+++ /dev/null
@@ -1,181 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!--NewPage-->
-<HTML>
-<HEAD>
-<!-- Generated by javadoc (build 1.6.0_65) on Wed Oct 28 17:02:10 EDT 2015 -->
-<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<TITLE>
-Constant Field Values (storm-hbase 0.9.6 API)
-</TITLE>
-
-<META NAME="date" CONTENT="2015-10-28">
-
-<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
-
-<SCRIPT type="text/javascript">
-function windowTitle()
-{
-    if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="Constant Field Values (storm-hbase 0.9.6 API)";
-    }
-}
-</SCRIPT>
-<NOSCRIPT>
-</NOSCRIPT>
-
-</HEAD>
-
-<BODY BGCOLOR="white" onload="windowTitle();">
-<HR>
-
-
-<!-- ========= START OF TOP NAVBAR ======= -->
-<A NAME="navbar_top"><!-- --></A>
-<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
-<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
-<TR>
-<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
-<A NAME="navbar_top_firstrow"><!-- --></A>
-<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
-  <TR ALIGN="center" VALIGN="top">
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
-  </TR>
-</TABLE>
-</TD>
-<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
-</EM>
-</TD>
-</TR>
-
-<TR>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-&nbsp;PREV&nbsp;
-&nbsp;NEXT</FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="index.html?constant-values.html" target="_top"><B>FRAMES</B></A>  &nbsp;
-&nbsp;<A HREF="constant-values.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
-&nbsp;<SCRIPT type="text/javascript">
-  <!--
-  if(window==top) {
-    document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
-  }
-  //-->
-</SCRIPT>
-<NOSCRIPT>
-  <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
-</NOSCRIPT>
-
-
-</FONT></TD>
-</TR>
-</TABLE>
-<A NAME="skip-navbar_top"></A>
-<!-- ========= END OF TOP NAVBAR ========= -->
-
-<HR>
-<CENTER>
-<H1>
-Constant Field Values</H1>
-</CENTER>
-<HR SIZE="4" NOSHADE>
-<B>Contents</B><UL>
-<LI><A HREF="#org.apache">org.apache.*</A>
-</UL>
-
-<A NAME="org.apache"><!-- --></A>
-<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
-<TH ALIGN="left"><FONT SIZE="+2">
-org.apache.*</FONT></TH>
-</TR>
-</TABLE>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.apache.storm.hbase.security.<A HREF="org/apache/storm/hbase/security/HBaseSecurityUtil.html" title="class in org.apache.storm.hbase.security">HBaseSecurityUtil</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.apache.storm.hbase.security.HBaseSecurityUtil.STORM_KEYTAB_FILE_KEY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/apache/storm/hbase/security/HBaseSecurityUtil.html#STORM_KEYTAB_FILE_KEY">STORM_KEYTAB_FILE_KEY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"storm.keytab.file"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.apache.storm.hbase.security.HBaseSecurityUtil.STORM_USER_NAME_KEY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/apache/storm/hbase/security/HBaseSecurityUtil.html#STORM_USER_NAME_KEY">STORM_USER_NAME_KEY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"storm.kerberos.principal"</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-<HR>
-
-
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<A NAME="navbar_bottom"><!-- --></A>
-<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
-<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
-<TR>
-<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
-<A NAME="navbar_bottom_firstrow"><!-- --></A>
-<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
-  <TR ALIGN="center" VALIGN="top">
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
-  </TR>
-</TABLE>
-</TD>
-<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
-</EM>
-</TD>
-</TR>
-
-<TR>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-&nbsp;PREV&nbsp;
-&nbsp;NEXT</FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="index.html?constant-values.html" target="_top"><B>FRAMES</B></A>  &nbsp;
-&nbsp;<A HREF="constant-values.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
-&nbsp;<SCRIPT type="text/javascript">
-  <!--
-  if(window==top) {
-    document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
-  }
-  //-->
-</SCRIPT>
-<NOSCRIPT>
-  <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
-</NOSCRIPT>
-
-
-</FONT></TD>
-</TR>
-</TABLE>
-<A NAME="skip-navbar_bottom"></A>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-
-<HR>
-Copyright &#169; 2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved.
-</BODY>
-</HTML>

http://git-wip-us.apache.org/repos/asf/storm/blob/d13d1680/_site/target/checkout/external/storm-hbase/target/apidocs/deprecated-list.html
----------------------------------------------------------------------
diff --git a/_site/target/checkout/external/storm-hbase/target/apidocs/deprecated-list.html b/_site/target/checkout/external/storm-hbase/target/apidocs/deprecated-list.html
deleted file mode 100644
index e4bf307..0000000
--- a/_site/target/checkout/external/storm-hbase/target/apidocs/deprecated-list.html
+++ /dev/null
@@ -1,147 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!--NewPage-->
-<HTML>
-<HEAD>
-<!-- Generated by javadoc (build 1.6.0_65) on Wed Oct 28 17:02:11 EDT 2015 -->
-<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<TITLE>
-Deprecated List (storm-hbase 0.9.6 API)
-</TITLE>
-
-<META NAME="date" CONTENT="2015-10-28">
-
-<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
-
-<SCRIPT type="text/javascript">
-function windowTitle()
-{
-    if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="Deprecated List (storm-hbase 0.9.6 API)";
-    }
-}
-</SCRIPT>
-<NOSCRIPT>
-</NOSCRIPT>
-
-</HEAD>
-
-<BODY BGCOLOR="white" onload="windowTitle();">
-<HR>
-
-
-<!-- ========= START OF TOP NAVBAR ======= -->
-<A NAME="navbar_top"><!-- --></A>
-<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
-<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
-<TR>
-<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
-<A NAME="navbar_top_firstrow"><!-- --></A>
-<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
-  <TR ALIGN="center" VALIGN="top">
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Deprecated</B></FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
-  </TR>
-</TABLE>
-</TD>
-<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
-</EM>
-</TD>
-</TR>
-
-<TR>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-&nbsp;PREV&nbsp;
-&nbsp;NEXT</FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="index.html?deprecated-list.html" target="_top"><B>FRAMES</B></A>  &nbsp;
-&nbsp;<A HREF="deprecated-list.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
-&nbsp;<SCRIPT type="text/javascript">
-  <!--
-  if(window==top) {
-    document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
-  }
-  //-->
-</SCRIPT>
-<NOSCRIPT>
-  <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
-</NOSCRIPT>
-
-
-</FONT></TD>
-</TR>
-</TABLE>
-<A NAME="skip-navbar_top"></A>
-<!-- ========= END OF TOP NAVBAR ========= -->
-
-<HR>
-<CENTER>
-<H2>
-<B>Deprecated API</B></H2>
-</CENTER>
-<HR SIZE="4" NOSHADE>
-<B>Contents</B><UL>
-</UL>
-
-<HR>
-
-
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<A NAME="navbar_bottom"><!-- --></A>
-<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
-<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
-<TR>
-<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
-<A NAME="navbar_bottom_firstrow"><!-- --></A>
-<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
-  <TR ALIGN="center" VALIGN="top">
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Deprecated</B></FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
-  </TR>
-</TABLE>
-</TD>
-<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
-</EM>
-</TD>
-</TR>
-
-<TR>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-&nbsp;PREV&nbsp;
-&nbsp;NEXT</FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="index.html?deprecated-list.html" target="_top"><B>FRAMES</B></A>  &nbsp;
-&nbsp;<A HREF="deprecated-list.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
-&nbsp;<SCRIPT type="text/javascript">
-  <!--
-  if(window==top) {
-    document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
-  }
-  //-->
-</SCRIPT>
-<NOSCRIPT>
-  <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
-</NOSCRIPT>
-
-
-</FONT></TD>
-</TR>
-</TABLE>
-<A NAME="skip-navbar_bottom"></A>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-
-<HR>
-Copyright &#169; 2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved.
-</BODY>
-</HTML>

http://git-wip-us.apache.org/repos/asf/storm/blob/d13d1680/_site/target/checkout/external/storm-hbase/target/apidocs/help-doc.html
----------------------------------------------------------------------
diff --git a/_site/target/checkout/external/storm-hbase/target/apidocs/help-doc.html b/_site/target/checkout/external/storm-hbase/target/apidocs/help-doc.html
deleted file mode 100644
index 6e50a61..0000000
--- a/_site/target/checkout/external/storm-hbase/target/apidocs/help-doc.html
+++ /dev/null
@@ -1,224 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!--NewPage-->
-<HTML>
-<HEAD>
-<!-- Generated by javadoc (build 1.6.0_65) on Wed Oct 28 17:02:11 EDT 2015 -->
-<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<TITLE>
-API Help (storm-hbase 0.9.6 API)
-</TITLE>
-
-<META NAME="date" CONTENT="2015-10-28">
-
-<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
-
-<SCRIPT type="text/javascript">
-function windowTitle()
-{
-    if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="API Help (storm-hbase 0.9.6 API)";
-    }
-}
-</SCRIPT>
-<NOSCRIPT>
-</NOSCRIPT>
-
-</HEAD>
-
-<BODY BGCOLOR="white" onload="windowTitle();">
-<HR>
-
-
-<!-- ========= START OF TOP NAVBAR ======= -->
-<A NAME="navbar_top"><!-- --></A>
-<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
-<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
-<TR>
-<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
-<A NAME="navbar_top_firstrow"><!-- --></A>
-<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
-  <TR ALIGN="center" VALIGN="top">
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT>&nbsp;</TD>
-  </TR>
-</TABLE>
-</TD>
-<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
-</EM>
-</TD>
-</TR>
-
-<TR>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-&nbsp;PREV&nbsp;
-&nbsp;NEXT</FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="index.html?help-doc.html" target="_top"><B>FRAMES</B></A>  &nbsp;
-&nbsp;<A HREF="help-doc.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
-&nbsp;<SCRIPT type="text/javascript">
-  <!--
-  if(window==top) {
-    document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
-  }
-  //-->
-</SCRIPT>
-<NOSCRIPT>
-  <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
-</NOSCRIPT>
-
-
-</FONT></TD>
-</TR>
-</TABLE>
-<A NAME="skip-navbar_top"></A>
-<!-- ========= END OF TOP NAVBAR ========= -->
-
-<HR>
-<CENTER>
-<H1>
-How This API Document Is Organized</H1>
-</CENTER>
-This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.<H3>
-Overview</H3>
-<BLOCKQUOTE>
-
-<P>
-The <A HREF="overview-summary.html">Overview</A> page is the front page of this API document and provides a list of all packages with a summary for each.  This page can also contain an overall description of the set of packages.</BLOCKQUOTE>
-<H3>
-Package</H3>
-<BLOCKQUOTE>
-
-<P>
-Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain four categories:<UL>
-<LI>Interfaces (italic)<LI>Classes<LI>Enums<LI>Exceptions<LI>Errors<LI>Annotation Types</UL>
-</BLOCKQUOTE>
-<H3>
-Class/Interface</H3>
-<BLOCKQUOTE>
-
-<P>
-Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:<UL>
-<LI>Class inheritance diagram<LI>Direct Subclasses<LI>All Known Subinterfaces<LI>All Known Implementing Classes<LI>Class/interface declaration<LI>Class/interface description
-<P>
-<LI>Nested Class Summary<LI>Field Summary<LI>Constructor Summary<LI>Method Summary
-<P>
-<LI>Field Detail<LI>Constructor Detail<LI>Method Detail</UL>
-Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.</BLOCKQUOTE>
-</BLOCKQUOTE>
-<H3>
-Annotation Type</H3>
-<BLOCKQUOTE>
-
-<P>
-Each annotation type has its own separate page with the following sections:<UL>
-<LI>Annotation Type declaration<LI>Annotation Type description<LI>Required Element Summary<LI>Optional Element Summary<LI>Element Detail</UL>
-</BLOCKQUOTE>
-</BLOCKQUOTE>
-<H3>
-Enum</H3>
-<BLOCKQUOTE>
-
-<P>
-Each enum has its own separate page with the following sections:<UL>
-<LI>Enum declaration<LI>Enum description<LI>Enum Constant Summary<LI>Enum Constant Detail</UL>
-</BLOCKQUOTE>
-<H3>
-Use</H3>
-<BLOCKQUOTE>
-Each documented package, class and interface has its own Use page.  This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A.  You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.</BLOCKQUOTE>
-<H3>
-Tree (Class Hierarchy)</H3>
-<BLOCKQUOTE>
-There is a <A HREF="overview-tree.html">Class Hierarchy</A> page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with <code>java.lang.Object</code>. The interfaces do not inherit from <code>java.lang.Object</code>.<UL>
-<LI>When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.<LI>When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.</UL>
-</BLOCKQUOTE>
-<H3>
-Deprecated API</H3>
-<BLOCKQUOTE>
-The <A HREF="deprecated-list.html">Deprecated API</A> page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.</BLOCKQUOTE>
-<H3>
-Index</H3>
-<BLOCKQUOTE>
-The <A HREF="index-all.html">Index</A> contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.</BLOCKQUOTE>
-<H3>
-Prev/Next</H3>
-These links take you to the next or previous class, interface, package, or related page.<H3>
-Frames/No Frames</H3>
-These links show and hide the HTML frames.  All pages are available with or without frames.
-<P>
-<H3>
-Serialized Form</H3>
-Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.
-<P>
-<H3>
-Constant Field Values</H3>
-The <a href="constant-values.html">Constant Field Values</a> page lists the static final fields and their values.
-<P>
-<FONT SIZE="-1">
-<EM>
-This help file applies to API documentation generated using the standard doclet.</EM>
-</FONT>
-<BR>
-<HR>
-
-
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<A NAME="navbar_bottom"><!-- --></A>
-<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
-<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
-<TR>
-<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
-<A NAME="navbar_bottom_firstrow"><!-- --></A>
-<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
-  <TR ALIGN="center" VALIGN="top">
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
-  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT>&nbsp;</TD>
-  </TR>
-</TABLE>
-</TD>
-<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
-</EM>
-</TD>
-</TR>
-
-<TR>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-&nbsp;PREV&nbsp;
-&nbsp;NEXT</FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-  <A HREF="index.html?help-doc.html" target="_top"><B>FRAMES</B></A>  &nbsp;
-&nbsp;<A HREF="help-doc.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
-&nbsp;<SCRIPT type="text/javascript">
-  <!--
-  if(window==top) {
-    document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
-  }
-  //-->
-</SCRIPT>
-<NOSCRIPT>
-  <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
-</NOSCRIPT>
-
-
-</FONT></TD>
-</TR>
-</TABLE>
-<A NAME="skip-navbar_bottom"></A>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-
-<HR>
-Copyright &#169; 2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved.
-</BODY>
-</HTML>