http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/devapidocs/src-html/org/apache/hadoop/hbase/zookeeper/ZKMainServer.html ---------------------------------------------------------------------- diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/zookeeper/ZKMainServer.html b/devapidocs/src-html/org/apache/hadoop/hbase/zookeeper/ZKMainServer.html index c725ebc..85096e8 100644 --- a/devapidocs/src-html/org/apache/hadoop/hbase/zookeeper/ZKMainServer.html +++ b/devapidocs/src-html/org/apache/hadoop/hbase/zookeeper/ZKMainServer.html @@ -6,7 +6,7 @@ </head> <body> <div class="sourceContainer"> -<pre><span class="sourceLineNo">001</span>/**<a name="line.1"></a> +<pre><span class="sourceLineNo">001</span>/*<a name="line.1"></a> <span class="sourceLineNo">002</span> * Licensed to the Apache Software Foundation (ASF) under one<a name="line.2"></a> <span class="sourceLineNo">003</span> * or more contributor license agreements. See the NOTICE file<a name="line.3"></a> <span class="sourceLineNo">004</span> * distributed with this work for additional information<a name="line.4"></a> @@ -27,115 +27,107 @@ <span class="sourceLineNo">019</span>package org.apache.hadoop.hbase.zookeeper;<a name="line.19"></a> <span class="sourceLineNo">020</span><a name="line.20"></a> <span class="sourceLineNo">021</span>import java.io.IOException;<a name="line.21"></a> -<span class="sourceLineNo">022</span>import java.util.concurrent.TimeUnit;<a name="line.22"></a> -<span class="sourceLineNo">023</span><a name="line.23"></a> -<span class="sourceLineNo">024</span>import org.apache.hadoop.conf.Configuration;<a name="line.24"></a> -<span class="sourceLineNo">025</span>import org.apache.hadoop.hbase.HBaseConfiguration;<a name="line.25"></a> -<span class="sourceLineNo">026</span>import org.apache.hadoop.hbase.HBaseInterfaceAudience;<a name="line.26"></a> -<span class="sourceLineNo">027</span>import org.apache.yetus.audience.InterfaceAudience;<a name="line.27"></a> -<span class="sourceLineNo">028</span>import org.apache.zookeeper.KeeperException;<a name="line.28"></a> -<span class="sourceLineNo">029</span>import org.apache.zookeeper.ZooKeeperMain;<a name="line.29"></a> +<span class="sourceLineNo">022</span><a name="line.22"></a> +<span class="sourceLineNo">023</span>import org.apache.hadoop.conf.Configuration;<a name="line.23"></a> +<span class="sourceLineNo">024</span>import org.apache.hadoop.hbase.HBaseConfiguration;<a name="line.24"></a> +<span class="sourceLineNo">025</span>import org.apache.hadoop.hbase.HBaseInterfaceAudience;<a name="line.25"></a> +<span class="sourceLineNo">026</span>import org.apache.yetus.audience.InterfaceAudience;<a name="line.26"></a> +<span class="sourceLineNo">027</span>import org.apache.zookeeper.KeeperException;<a name="line.27"></a> +<span class="sourceLineNo">028</span>import org.apache.zookeeper.ZooKeeperMain;<a name="line.28"></a> +<span class="sourceLineNo">029</span><a name="line.29"></a> <span class="sourceLineNo">030</span><a name="line.30"></a> -<span class="sourceLineNo">031</span>import org.apache.hbase.thirdparty.com.google.common.base.Stopwatch;<a name="line.31"></a> -<span class="sourceLineNo">032</span><a name="line.32"></a> -<span class="sourceLineNo">033</span>/**<a name="line.33"></a> -<span class="sourceLineNo">034</span> * Tool for running ZookeeperMain from HBase by reading a ZooKeeper server<a name="line.34"></a> -<span class="sourceLineNo">035</span> * from HBase XML configuration.<a name="line.35"></a> -<span class="sourceLineNo">036</span> */<a name="line.36"></a> -<span class="sourceLineNo">037</span>@InterfaceAudience.LimitedPrivate(HBaseInterfaceAudience.TOOLS)<a name="line.37"></a> -<span class="sourceLineNo">038</span>public class ZKMainServer {<a name="line.38"></a> -<span class="sourceLineNo">039</span> private static final String SERVER_ARG = "-server";<a name="line.39"></a> -<span class="sourceLineNo">040</span><a name="line.40"></a> -<span class="sourceLineNo">041</span> public String parse(final Configuration c) {<a name="line.41"></a> -<span class="sourceLineNo">042</span> return ZKConfig.getZKQuorumServersString(c);<a name="line.42"></a> -<span class="sourceLineNo">043</span> }<a name="line.43"></a> -<span class="sourceLineNo">044</span><a name="line.44"></a> -<span class="sourceLineNo">045</span> /**<a name="line.45"></a> -<span class="sourceLineNo">046</span> * ZooKeeper 3.4.6 broke being able to pass commands on command line.<a name="line.46"></a> -<span class="sourceLineNo">047</span> * See ZOOKEEPER-1897. This class is a hack to restore this faclity.<a name="line.47"></a> -<span class="sourceLineNo">048</span> */<a name="line.48"></a> -<span class="sourceLineNo">049</span> private static class HACK_UNTIL_ZOOKEEPER_1897_ZooKeeperMain extends ZooKeeperMain {<a name="line.49"></a> -<span class="sourceLineNo">050</span> public HACK_UNTIL_ZOOKEEPER_1897_ZooKeeperMain(String[] args)<a name="line.50"></a> -<span class="sourceLineNo">051</span> throws IOException, InterruptedException {<a name="line.51"></a> -<span class="sourceLineNo">052</span> super(args);<a name="line.52"></a> -<span class="sourceLineNo">053</span> // Make sure we are connected before we proceed. Can take a while on some systems. If we<a name="line.53"></a> -<span class="sourceLineNo">054</span> // run the command without being connected, we get ConnectionLoss KeeperErrorConnection...<a name="line.54"></a> -<span class="sourceLineNo">055</span> Stopwatch stopWatch = Stopwatch.createStarted();<a name="line.55"></a> -<span class="sourceLineNo">056</span> while (!this.zk.getState().isConnected()) {<a name="line.56"></a> -<span class="sourceLineNo">057</span> Thread.sleep(1);<a name="line.57"></a> -<span class="sourceLineNo">058</span> if (stopWatch.elapsed(TimeUnit.SECONDS) > 10) {<a name="line.58"></a> -<span class="sourceLineNo">059</span> throw new InterruptedException("Failed connect after waiting " +<a name="line.59"></a> -<span class="sourceLineNo">060</span> stopWatch.elapsed(TimeUnit.SECONDS) + "seconds; state=" + this.zk.getState() +<a name="line.60"></a> -<span class="sourceLineNo">061</span> "; " + this.zk);<a name="line.61"></a> -<span class="sourceLineNo">062</span> }<a name="line.62"></a> -<span class="sourceLineNo">063</span> }<a name="line.63"></a> -<span class="sourceLineNo">064</span> }<a name="line.64"></a> -<span class="sourceLineNo">065</span><a name="line.65"></a> -<span class="sourceLineNo">066</span> /**<a name="line.66"></a> -<span class="sourceLineNo">067</span> * Run the command-line args passed. Calls System.exit when done.<a name="line.67"></a> -<span class="sourceLineNo">068</span> * @throws KeeperException<a name="line.68"></a> -<span class="sourceLineNo">069</span> * @throws IOException<a name="line.69"></a> -<span class="sourceLineNo">070</span> * @throws InterruptedException<a name="line.70"></a> -<span class="sourceLineNo">071</span> */<a name="line.71"></a> -<span class="sourceLineNo">072</span> void runCmdLine() throws KeeperException, IOException, InterruptedException {<a name="line.72"></a> -<span class="sourceLineNo">073</span> processCmd(this.cl);<a name="line.73"></a> -<span class="sourceLineNo">074</span> System.exit(0);<a name="line.74"></a> -<span class="sourceLineNo">075</span> }<a name="line.75"></a> +<span class="sourceLineNo">031</span>/**<a name="line.31"></a> +<span class="sourceLineNo">032</span> * Tool for running ZookeeperMain from HBase by reading a ZooKeeper server<a name="line.32"></a> +<span class="sourceLineNo">033</span> * from HBase XML configuration.<a name="line.33"></a> +<span class="sourceLineNo">034</span> */<a name="line.34"></a> +<span class="sourceLineNo">035</span>@InterfaceAudience.LimitedPrivate(HBaseInterfaceAudience.TOOLS)<a name="line.35"></a> +<span class="sourceLineNo">036</span>public class ZKMainServer {<a name="line.36"></a> +<span class="sourceLineNo">037</span> private static final String SERVER_ARG = "-server";<a name="line.37"></a> +<span class="sourceLineNo">038</span><a name="line.38"></a> +<span class="sourceLineNo">039</span> public String parse(final Configuration c) {<a name="line.39"></a> +<span class="sourceLineNo">040</span> return ZKConfig.getZKQuorumServersString(c);<a name="line.40"></a> +<span class="sourceLineNo">041</span> }<a name="line.41"></a> +<span class="sourceLineNo">042</span><a name="line.42"></a> +<span class="sourceLineNo">043</span> /**<a name="line.43"></a> +<span class="sourceLineNo">044</span> * ZooKeeper 3.4.6 broke being able to pass commands on command line.<a name="line.44"></a> +<span class="sourceLineNo">045</span> * See ZOOKEEPER-1897. This class is a hack to restore this faclity.<a name="line.45"></a> +<span class="sourceLineNo">046</span> */<a name="line.46"></a> +<span class="sourceLineNo">047</span> private static class HACK_UNTIL_ZOOKEEPER_1897_ZooKeeperMain extends ZooKeeperMain {<a name="line.47"></a> +<span class="sourceLineNo">048</span> public HACK_UNTIL_ZOOKEEPER_1897_ZooKeeperMain(String[] args)<a name="line.48"></a> +<span class="sourceLineNo">049</span> throws IOException, InterruptedException {<a name="line.49"></a> +<span class="sourceLineNo">050</span> super(args);<a name="line.50"></a> +<span class="sourceLineNo">051</span> // Make sure we are connected before we proceed. Can take a while on some systems. If we<a name="line.51"></a> +<span class="sourceLineNo">052</span> // run the command without being connected, we get ConnectionLoss KeeperErrorConnection...<a name="line.52"></a> +<span class="sourceLineNo">053</span> // Make it 30seconds. We dont' have a config in this context and zk doesn't have<a name="line.53"></a> +<span class="sourceLineNo">054</span> // a timeout until after connection. 30000ms is default for zk.<a name="line.54"></a> +<span class="sourceLineNo">055</span> ZooKeeperHelper.ensureConnectedZooKeeper(this.zk, 30000);<a name="line.55"></a> +<span class="sourceLineNo">056</span> }<a name="line.56"></a> +<span class="sourceLineNo">057</span><a name="line.57"></a> +<span class="sourceLineNo">058</span> /**<a name="line.58"></a> +<span class="sourceLineNo">059</span> * Run the command-line args passed. Calls System.exit when done.<a name="line.59"></a> +<span class="sourceLineNo">060</span> * @throws KeeperException<a name="line.60"></a> +<span class="sourceLineNo">061</span> * @throws IOException<a name="line.61"></a> +<span class="sourceLineNo">062</span> * @throws InterruptedException<a name="line.62"></a> +<span class="sourceLineNo">063</span> */<a name="line.63"></a> +<span class="sourceLineNo">064</span> void runCmdLine() throws KeeperException, IOException, InterruptedException {<a name="line.64"></a> +<span class="sourceLineNo">065</span> processCmd(this.cl);<a name="line.65"></a> +<span class="sourceLineNo">066</span> System.exit(0);<a name="line.66"></a> +<span class="sourceLineNo">067</span> }<a name="line.67"></a> +<span class="sourceLineNo">068</span> }<a name="line.68"></a> +<span class="sourceLineNo">069</span><a name="line.69"></a> +<span class="sourceLineNo">070</span> /**<a name="line.70"></a> +<span class="sourceLineNo">071</span> * @param args the arguments to check<a name="line.71"></a> +<span class="sourceLineNo">072</span> * @return True if argument strings have a '-server' in them.<a name="line.72"></a> +<span class="sourceLineNo">073</span> */<a name="line.73"></a> +<span class="sourceLineNo">074</span> private static boolean hasServer(final String[] args) {<a name="line.74"></a> +<span class="sourceLineNo">075</span> return args.length > 0 && args[0].equals(SERVER_ARG);<a name="line.75"></a> <span class="sourceLineNo">076</span> }<a name="line.76"></a> <span class="sourceLineNo">077</span><a name="line.77"></a> <span class="sourceLineNo">078</span> /**<a name="line.78"></a> -<span class="sourceLineNo">079</span> * @param args the arguments to check<a name="line.79"></a> -<span class="sourceLineNo">080</span> * @return True if argument strings have a '-server' in them.<a name="line.80"></a> +<span class="sourceLineNo">079</span> * @param args the arguments to check for command-line arguments<a name="line.79"></a> +<span class="sourceLineNo">080</span> * @return True if command-line arguments were passed.<a name="line.80"></a> <span class="sourceLineNo">081</span> */<a name="line.81"></a> -<span class="sourceLineNo">082</span> private static boolean hasServer(final String[] args) {<a name="line.82"></a> -<span class="sourceLineNo">083</span> return args.length > 0 && args[0].equals(SERVER_ARG);<a name="line.83"></a> -<span class="sourceLineNo">084</span> }<a name="line.84"></a> -<span class="sourceLineNo">085</span><a name="line.85"></a> -<span class="sourceLineNo">086</span> /**<a name="line.86"></a> -<span class="sourceLineNo">087</span> * @param args the arguments to check for command-line arguments<a name="line.87"></a> -<span class="sourceLineNo">088</span> * @return True if command-line arguments were passed.<a name="line.88"></a> -<span class="sourceLineNo">089</span> */<a name="line.89"></a> -<span class="sourceLineNo">090</span> private static boolean hasCommandLineArguments(final String[] args) {<a name="line.90"></a> -<span class="sourceLineNo">091</span> if (hasServer(args)) {<a name="line.91"></a> -<span class="sourceLineNo">092</span> if (args.length < 2) {<a name="line.92"></a> -<span class="sourceLineNo">093</span> throw new IllegalStateException("-server param but no value");<a name="line.93"></a> -<span class="sourceLineNo">094</span> }<a name="line.94"></a> -<span class="sourceLineNo">095</span><a name="line.95"></a> -<span class="sourceLineNo">096</span> return args.length > 2;<a name="line.96"></a> -<span class="sourceLineNo">097</span> }<a name="line.97"></a> -<span class="sourceLineNo">098</span><a name="line.98"></a> -<span class="sourceLineNo">099</span> return args.length > 0;<a name="line.99"></a> -<span class="sourceLineNo">100</span> }<a name="line.100"></a> -<span class="sourceLineNo">101</span><a name="line.101"></a> -<span class="sourceLineNo">102</span> /**<a name="line.102"></a> -<span class="sourceLineNo">103</span> * Run the tool.<a name="line.103"></a> -<span class="sourceLineNo">104</span> * @param args Command line arguments. First arg is path to zookeepers file.<a name="line.104"></a> -<span class="sourceLineNo">105</span> */<a name="line.105"></a> -<span class="sourceLineNo">106</span> public static void main(String[] args) throws Exception {<a name="line.106"></a> -<span class="sourceLineNo">107</span> String [] newArgs = args;<a name="line.107"></a> -<span class="sourceLineNo">108</span> if (!hasServer(args)) {<a name="line.108"></a> -<span class="sourceLineNo">109</span> // Add the zk ensemble from configuration if none passed on command-line.<a name="line.109"></a> -<span class="sourceLineNo">110</span> Configuration conf = HBaseConfiguration.create();<a name="line.110"></a> -<span class="sourceLineNo">111</span> String hostport = new ZKMainServer().parse(conf);<a name="line.111"></a> -<span class="sourceLineNo">112</span> if (hostport != null && hostport.length() > 0) {<a name="line.112"></a> -<span class="sourceLineNo">113</span> newArgs = new String[args.length + 2];<a name="line.113"></a> -<span class="sourceLineNo">114</span> System.arraycopy(args, 0, newArgs, 2, args.length);<a name="line.114"></a> -<span class="sourceLineNo">115</span> newArgs[0] = "-server";<a name="line.115"></a> -<span class="sourceLineNo">116</span> newArgs[1] = hostport;<a name="line.116"></a> -<span class="sourceLineNo">117</span> }<a name="line.117"></a> -<span class="sourceLineNo">118</span> }<a name="line.118"></a> -<span class="sourceLineNo">119</span> // If command-line arguments, run our hack so they are executed.<a name="line.119"></a> -<span class="sourceLineNo">120</span> // ZOOKEEPER-1897 was committed to zookeeper-3.4.6 but elsewhere in this class we say<a name="line.120"></a> -<span class="sourceLineNo">121</span> // 3.4.6 breaks command-processing; TODO.<a name="line.121"></a> -<span class="sourceLineNo">122</span> if (hasCommandLineArguments(args)) {<a name="line.122"></a> -<span class="sourceLineNo">123</span> HACK_UNTIL_ZOOKEEPER_1897_ZooKeeperMain zkm =<a name="line.123"></a> -<span class="sourceLineNo">124</span> new HACK_UNTIL_ZOOKEEPER_1897_ZooKeeperMain(newArgs);<a name="line.124"></a> -<span class="sourceLineNo">125</span> zkm.runCmdLine();<a name="line.125"></a> -<span class="sourceLineNo">126</span> } else {<a name="line.126"></a> -<span class="sourceLineNo">127</span> ZooKeeperMain.main(newArgs);<a name="line.127"></a> -<span class="sourceLineNo">128</span> }<a name="line.128"></a> -<span class="sourceLineNo">129</span> }<a name="line.129"></a> -<span class="sourceLineNo">130</span>}<a name="line.130"></a> +<span class="sourceLineNo">082</span> private static boolean hasCommandLineArguments(final String[] args) {<a name="line.82"></a> +<span class="sourceLineNo">083</span> if (hasServer(args)) {<a name="line.83"></a> +<span class="sourceLineNo">084</span> if (args.length < 2) {<a name="line.84"></a> +<span class="sourceLineNo">085</span> throw new IllegalStateException("-server param but no value");<a name="line.85"></a> +<span class="sourceLineNo">086</span> }<a name="line.86"></a> +<span class="sourceLineNo">087</span><a name="line.87"></a> +<span class="sourceLineNo">088</span> return args.length > 2;<a name="line.88"></a> +<span class="sourceLineNo">089</span> }<a name="line.89"></a> +<span class="sourceLineNo">090</span><a name="line.90"></a> +<span class="sourceLineNo">091</span> return args.length > 0;<a name="line.91"></a> +<span class="sourceLineNo">092</span> }<a name="line.92"></a> +<span class="sourceLineNo">093</span><a name="line.93"></a> +<span class="sourceLineNo">094</span> /**<a name="line.94"></a> +<span class="sourceLineNo">095</span> * Run the tool.<a name="line.95"></a> +<span class="sourceLineNo">096</span> * @param args Command line arguments. First arg is path to zookeepers file.<a name="line.96"></a> +<span class="sourceLineNo">097</span> */<a name="line.97"></a> +<span class="sourceLineNo">098</span> public static void main(String[] args) throws Exception {<a name="line.98"></a> +<span class="sourceLineNo">099</span> String [] newArgs = args;<a name="line.99"></a> +<span class="sourceLineNo">100</span> if (!hasServer(args)) {<a name="line.100"></a> +<span class="sourceLineNo">101</span> // Add the zk ensemble from configuration if none passed on command-line.<a name="line.101"></a> +<span class="sourceLineNo">102</span> Configuration conf = HBaseConfiguration.create();<a name="line.102"></a> +<span class="sourceLineNo">103</span> String hostport = new ZKMainServer().parse(conf);<a name="line.103"></a> +<span class="sourceLineNo">104</span> if (hostport != null && hostport.length() > 0) {<a name="line.104"></a> +<span class="sourceLineNo">105</span> newArgs = new String[args.length + 2];<a name="line.105"></a> +<span class="sourceLineNo">106</span> System.arraycopy(args, 0, newArgs, 2, args.length);<a name="line.106"></a> +<span class="sourceLineNo">107</span> newArgs[0] = "-server";<a name="line.107"></a> +<span class="sourceLineNo">108</span> newArgs[1] = hostport;<a name="line.108"></a> +<span class="sourceLineNo">109</span> }<a name="line.109"></a> +<span class="sourceLineNo">110</span> }<a name="line.110"></a> +<span class="sourceLineNo">111</span> // If command-line arguments, run our hack so they are executed.<a name="line.111"></a> +<span class="sourceLineNo">112</span> // ZOOKEEPER-1897 was committed to zookeeper-3.4.6 but elsewhere in this class we say<a name="line.112"></a> +<span class="sourceLineNo">113</span> // 3.4.6 breaks command-processing; TODO.<a name="line.113"></a> +<span class="sourceLineNo">114</span> if (hasCommandLineArguments(args)) {<a name="line.114"></a> +<span class="sourceLineNo">115</span> HACK_UNTIL_ZOOKEEPER_1897_ZooKeeperMain zkm =<a name="line.115"></a> +<span class="sourceLineNo">116</span> new HACK_UNTIL_ZOOKEEPER_1897_ZooKeeperMain(newArgs);<a name="line.116"></a> +<span class="sourceLineNo">117</span> zkm.runCmdLine();<a name="line.117"></a> +<span class="sourceLineNo">118</span> } else {<a name="line.118"></a> +<span class="sourceLineNo">119</span> ZooKeeperMain.main(newArgs);<a name="line.119"></a> +<span class="sourceLineNo">120</span> }<a name="line.120"></a> +<span class="sourceLineNo">121</span> }<a name="line.121"></a> +<span class="sourceLineNo">122</span>}<a name="line.122"></a>
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/devapidocs/src-html/org/apache/hadoop/hbase/zookeeper/ZooKeeperHelper.html ---------------------------------------------------------------------- diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/zookeeper/ZooKeeperHelper.html b/devapidocs/src-html/org/apache/hadoop/hbase/zookeeper/ZooKeeperHelper.html new file mode 100644 index 0000000..cf84849 --- /dev/null +++ b/devapidocs/src-html/org/apache/hadoop/hbase/zookeeper/ZooKeeperHelper.html @@ -0,0 +1,143 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<html lang="en"> +<head> +<title>Source code</title> +<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> +</head> +<body> +<div class="sourceContainer"> +<pre><span class="sourceLineNo">001</span>/*<a name="line.1"></a> +<span class="sourceLineNo">002</span> * Licensed to the Apache Software Foundation (ASF) under one<a name="line.2"></a> +<span class="sourceLineNo">003</span> * or more contributor license agreements. See the NOTICE file<a name="line.3"></a> +<span class="sourceLineNo">004</span> * distributed with this work for additional information<a name="line.4"></a> +<span class="sourceLineNo">005</span> * regarding copyright ownership. The ASF licenses this file<a name="line.5"></a> +<span class="sourceLineNo">006</span> * to you under the Apache License, Version 2.0 (the<a name="line.6"></a> +<span class="sourceLineNo">007</span> * "License"); you may not use this file except in compliance<a name="line.7"></a> +<span class="sourceLineNo">008</span> * with the License. You may obtain a copy of the License at<a name="line.8"></a> +<span class="sourceLineNo">009</span> *<a name="line.9"></a> +<span class="sourceLineNo">010</span> * http://www.apache.org/licenses/LICENSE-2.0<a name="line.10"></a> +<span class="sourceLineNo">011</span> *<a name="line.11"></a> +<span class="sourceLineNo">012</span> * Unless required by applicable law or agreed to in writing, software<a name="line.12"></a> +<span class="sourceLineNo">013</span> * distributed under the License is distributed on an "AS IS" BASIS,<a name="line.13"></a> +<span class="sourceLineNo">014</span> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.<a name="line.14"></a> +<span class="sourceLineNo">015</span> * See the License for the specific language governing permissions and<a name="line.15"></a> +<span class="sourceLineNo">016</span> * limitations under the License.<a name="line.16"></a> +<span class="sourceLineNo">017</span> */<a name="line.17"></a> +<span class="sourceLineNo">018</span>package org.apache.hadoop.hbase.zookeeper;<a name="line.18"></a> +<span class="sourceLineNo">019</span><a name="line.19"></a> +<span class="sourceLineNo">020</span>import java.io.IOException;<a name="line.20"></a> +<span class="sourceLineNo">021</span>import java.util.concurrent.TimeUnit;<a name="line.21"></a> +<span class="sourceLineNo">022</span><a name="line.22"></a> +<span class="sourceLineNo">023</span>import org.apache.hadoop.hbase.ZooKeeperConnectionException;<a name="line.23"></a> +<span class="sourceLineNo">024</span>import org.apache.hadoop.hbase.util.Threads;<a name="line.24"></a> +<span class="sourceLineNo">025</span>import org.apache.hbase.thirdparty.com.google.common.base.Stopwatch;<a name="line.25"></a> +<span class="sourceLineNo">026</span>import org.apache.yetus.audience.InterfaceAudience;<a name="line.26"></a> +<span class="sourceLineNo">027</span>import org.apache.zookeeper.ZooKeeper;<a name="line.27"></a> +<span class="sourceLineNo">028</span><a name="line.28"></a> +<span class="sourceLineNo">029</span><a name="line.29"></a> +<span class="sourceLineNo">030</span>/**<a name="line.30"></a> +<span class="sourceLineNo">031</span> * Methods that help working with ZooKeeper<a name="line.31"></a> +<span class="sourceLineNo">032</span> */<a name="line.32"></a> +<span class="sourceLineNo">033</span>@InterfaceAudience.Private<a name="line.33"></a> +<span class="sourceLineNo">034</span>public final class ZooKeeperHelper {<a name="line.34"></a> +<span class="sourceLineNo">035</span> // This class cannot be instantiated<a name="line.35"></a> +<span class="sourceLineNo">036</span> private ZooKeeperHelper() {<a name="line.36"></a> +<span class="sourceLineNo">037</span> }<a name="line.37"></a> +<span class="sourceLineNo">038</span><a name="line.38"></a> +<span class="sourceLineNo">039</span> /**<a name="line.39"></a> +<span class="sourceLineNo">040</span> * Get a ZooKeeper instance and wait until it connected before returning.<a name="line.40"></a> +<span class="sourceLineNo">041</span> * @param sessionTimeoutMs Used as session timeout passed to the created ZooKeeper AND as the<a name="line.41"></a> +<span class="sourceLineNo">042</span> * timeout to wait on connection establishment.<a name="line.42"></a> +<span class="sourceLineNo">043</span> */<a name="line.43"></a> +<span class="sourceLineNo">044</span> public static ZooKeeper getConnectedZooKeeper(String connectString, int sessionTimeoutMs)<a name="line.44"></a> +<span class="sourceLineNo">045</span> throws IOException {<a name="line.45"></a> +<span class="sourceLineNo">046</span> ZooKeeper zookeeper = new ZooKeeper(connectString, sessionTimeoutMs, e -> {});<a name="line.46"></a> +<span class="sourceLineNo">047</span> return ensureConnectedZooKeeper(zookeeper, sessionTimeoutMs);<a name="line.47"></a> +<span class="sourceLineNo">048</span> }<a name="line.48"></a> +<span class="sourceLineNo">049</span><a name="line.49"></a> +<span class="sourceLineNo">050</span> /**<a name="line.50"></a> +<span class="sourceLineNo">051</span> * Ensure passed zookeeper is connected.<a name="line.51"></a> +<span class="sourceLineNo">052</span> * @param timeout Time to wait on established Connection<a name="line.52"></a> +<span class="sourceLineNo">053</span> */<a name="line.53"></a> +<span class="sourceLineNo">054</span> public static ZooKeeper ensureConnectedZooKeeper(ZooKeeper zookeeper, int timeout)<a name="line.54"></a> +<span class="sourceLineNo">055</span> throws ZooKeeperConnectionException {<a name="line.55"></a> +<span class="sourceLineNo">056</span> if (zookeeper.getState().isConnected()) {<a name="line.56"></a> +<span class="sourceLineNo">057</span> return zookeeper;<a name="line.57"></a> +<span class="sourceLineNo">058</span> }<a name="line.58"></a> +<span class="sourceLineNo">059</span> Stopwatch stopWatch = Stopwatch.createStarted();<a name="line.59"></a> +<span class="sourceLineNo">060</span> // Make sure we are connected before we hand it back.<a name="line.60"></a> +<span class="sourceLineNo">061</span> while(!zookeeper.getState().isConnected()) {<a name="line.61"></a> +<span class="sourceLineNo">062</span> Threads.sleep(1);<a name="line.62"></a> +<span class="sourceLineNo">063</span> if (stopWatch.elapsed(TimeUnit.MILLISECONDS) > timeout) {<a name="line.63"></a> +<span class="sourceLineNo">064</span> throw new ZooKeeperConnectionException("Failed connect after waiting " +<a name="line.64"></a> +<span class="sourceLineNo">065</span> stopWatch.elapsed(TimeUnit.MILLISECONDS) + "ms (zk session timeout); " +<a name="line.65"></a> +<span class="sourceLineNo">066</span> zookeeper);<a name="line.66"></a> +<span class="sourceLineNo">067</span> }<a name="line.67"></a> +<span class="sourceLineNo">068</span> }<a name="line.68"></a> +<span class="sourceLineNo">069</span> return zookeeper;<a name="line.69"></a> +<span class="sourceLineNo">070</span> }<a name="line.70"></a> +<span class="sourceLineNo">071</span>}<a name="line.71"></a> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +</pre> +</div> +</body> +</html> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/export_control.html ---------------------------------------------------------------------- diff --git a/export_control.html b/export_control.html index 7f033d5..694aab1 100644 --- a/export_control.html +++ b/export_control.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Export Control @@ -336,7 +336,7 @@ for more details.</p> <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-annotations/checkstyle.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/checkstyle.html b/hbase-annotations/checkstyle.html index c032599..885f346 100644 --- a/hbase-annotations/checkstyle.html +++ b/hbase-annotations/checkstyle.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Checkstyle Results</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -150,7 +150,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-annotations/dependencies.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/dependencies.html b/hbase-annotations/dependencies.html index 88c6a86..0c6a0c3 100644 --- a/hbase-annotations/dependencies.html +++ b/hbase-annotations/dependencies.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Dependencies</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -272,7 +272,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-annotations/dependency-convergence.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/dependency-convergence.html b/hbase-annotations/dependency-convergence.html index da3f7f8..914add2 100644 --- a/hbase-annotations/dependency-convergence.html +++ b/hbase-annotations/dependency-convergence.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Reactor Dependency Convergence</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -912,7 +912,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-annotations/dependency-info.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/dependency-info.html b/hbase-annotations/dependency-info.html index dde90cd..c8a4fe4 100644 --- a/hbase-annotations/dependency-info.html +++ b/hbase-annotations/dependency-info.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Dependency Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -147,7 +147,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-annotations/dependency-management.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/dependency-management.html b/hbase-annotations/dependency-management.html index 302b149..d698048 100644 --- a/hbase-annotations/dependency-management.html +++ b/hbase-annotations/dependency-management.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Dependency Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -810,7 +810,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-annotations/index.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/index.html b/hbase-annotations/index.html index c533185..67cd532 100644 --- a/hbase-annotations/index.html +++ b/hbase-annotations/index.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – About</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -119,7 +119,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-annotations/integration.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/integration.html b/hbase-annotations/integration.html index 23e2c92..f8cea79 100644 --- a/hbase-annotations/integration.html +++ b/hbase-annotations/integration.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – CI Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -126,7 +126,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-annotations/issue-tracking.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/issue-tracking.html b/hbase-annotations/issue-tracking.html index 1c86025..f39d25d 100644 --- a/hbase-annotations/issue-tracking.html +++ b/hbase-annotations/issue-tracking.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Issue Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -123,7 +123,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-annotations/license.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/license.html b/hbase-annotations/license.html index 2c5e7e9..1db57be 100644 --- a/hbase-annotations/license.html +++ b/hbase-annotations/license.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Licenses</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -326,7 +326,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-annotations/mail-lists.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/mail-lists.html b/hbase-annotations/mail-lists.html index 3331387..1648d07 100644 --- a/hbase-annotations/mail-lists.html +++ b/hbase-annotations/mail-lists.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Mailing Lists</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -176,7 +176,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-annotations/plugin-management.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/plugin-management.html b/hbase-annotations/plugin-management.html index 2a9979e..e837350 100644 --- a/hbase-annotations/plugin-management.html +++ b/hbase-annotations/plugin-management.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Plugin Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -271,7 +271,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-annotations/plugins.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/plugins.html b/hbase-annotations/plugins.html index 64996c3..758170d 100644 --- a/hbase-annotations/plugins.html +++ b/hbase-annotations/plugins.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Plugins</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -222,7 +222,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-annotations/project-info.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/project-info.html b/hbase-annotations/project-info.html index b89ae38..b94d4f8 100644 --- a/hbase-annotations/project-info.html +++ b/hbase-annotations/project-info.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -167,7 +167,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-annotations/project-reports.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/project-reports.html b/hbase-annotations/project-reports.html index 4b2b04e..315b6ac 100644 --- a/hbase-annotations/project-reports.html +++ b/hbase-annotations/project-reports.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Generated Reports</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -128,7 +128,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-annotations/project-summary.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/project-summary.html b/hbase-annotations/project-summary.html index 9e70f97..df471f6 100644 --- a/hbase-annotations/project-summary.html +++ b/hbase-annotations/project-summary.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Summary</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -166,7 +166,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-annotations/source-repository.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/source-repository.html b/hbase-annotations/source-repository.html index 0281fab..1d4a7b3 100644 --- a/hbase-annotations/source-repository.html +++ b/hbase-annotations/source-repository.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Source Code Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -134,7 +134,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-annotations/team-list.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/team-list.html b/hbase-annotations/team-list.html index 3e66c24..2b03485 100644 --- a/hbase-annotations/team-list.html +++ b/hbase-annotations/team-list.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Team</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -553,7 +553,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/dependencies.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/dependencies.html b/hbase-build-configuration/dependencies.html index ed4e569..5225670 100644 --- a/hbase-build-configuration/dependencies.html +++ b/hbase-build-configuration/dependencies.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Build Configuration – Project Dependencies</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -330,7 +330,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/dependency-convergence.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/dependency-convergence.html b/hbase-build-configuration/dependency-convergence.html index c47a9ea..98b2bae 100644 --- a/hbase-build-configuration/dependency-convergence.html +++ b/hbase-build-configuration/dependency-convergence.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Build Configuration – Reactor Dependency Convergence</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -912,7 +912,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/dependency-info.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/dependency-info.html b/hbase-build-configuration/dependency-info.html index fda5c3f..c1dde18 100644 --- a/hbase-build-configuration/dependency-info.html +++ b/hbase-build-configuration/dependency-info.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Build Configuration – Dependency Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -148,7 +148,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/dependency-management.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/dependency-management.html b/hbase-build-configuration/dependency-management.html index 218985c..f50a4e4 100644 --- a/hbase-build-configuration/dependency-management.html +++ b/hbase-build-configuration/dependency-management.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Build Configuration – Project Dependency Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -810,7 +810,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/hbase-archetypes/dependencies.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/dependencies.html b/hbase-build-configuration/hbase-archetypes/dependencies.html index d1952f0..fdc8dab 100644 --- a/hbase-build-configuration/hbase-archetypes/dependencies.html +++ b/hbase-build-configuration/hbase-archetypes/dependencies.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetypes – Project Dependencies</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -330,7 +330,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/hbase-archetypes/dependency-convergence.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/dependency-convergence.html b/hbase-build-configuration/hbase-archetypes/dependency-convergence.html index 7d8c926..6246bbd 100644 --- a/hbase-build-configuration/hbase-archetypes/dependency-convergence.html +++ b/hbase-build-configuration/hbase-archetypes/dependency-convergence.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetypes – Reactor Dependency Convergence</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -912,7 +912,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/hbase-archetypes/dependency-info.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/dependency-info.html b/hbase-build-configuration/hbase-archetypes/dependency-info.html index ea1d6bf..f6bbb2d 100644 --- a/hbase-build-configuration/hbase-archetypes/dependency-info.html +++ b/hbase-build-configuration/hbase-archetypes/dependency-info.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetypes – Dependency Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -148,7 +148,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/hbase-archetypes/dependency-management.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/dependency-management.html b/hbase-build-configuration/hbase-archetypes/dependency-management.html index decf195..a22e08a 100644 --- a/hbase-build-configuration/hbase-archetypes/dependency-management.html +++ b/hbase-build-configuration/hbase-archetypes/dependency-management.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetypes – Project Dependency Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -810,7 +810,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependencies.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependencies.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependencies.html index 68b3263..40b71c1 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependencies.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependencies.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Dependencies</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -330,7 +330,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-convergence.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-convergence.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-convergence.html index f5af60b..7270299 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-convergence.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-convergence.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Reactor Dependency Convergence</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -912,7 +912,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-info.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-info.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-info.html index 873308c..a7f9deb 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-info.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-info.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Dependency Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -148,7 +148,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-management.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-management.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-management.html index 3e35fcb..9a81b2c 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-management.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-management.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Dependency Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -810,7 +810,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/index.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/index.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/index.html index c0c9b2d..538c985 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/index.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/index.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – About</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -119,7 +119,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/integration.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/integration.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/integration.html index 15b10bb..a1bf8bd 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/integration.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/integration.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – CI Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -126,7 +126,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html index 0473c89..6fc9d9f 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Issue Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -123,7 +123,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html index 805cfdc..8e38a0d 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Licenses</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -326,7 +326,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html index 042c23c..170eddb 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Mailing Lists</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -176,7 +176,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html index cb9e97f..eca8e13 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Plugin Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -271,7 +271,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html index 54bb41c..e11ea9b 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Plugins</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -218,7 +218,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html index 16c0ace..369db45 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -167,7 +167,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-summary.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-summary.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-summary.html index ea882a3..487c83f 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-summary.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-summary.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Summary</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -163,7 +163,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/source-repository.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/source-repository.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/source-repository.html index a86209d..a05a3c3 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/source-repository.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/source-repository.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Source Code Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -134,7 +134,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/team-list.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/team-list.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/team-list.html index b9ab4c3..6901061 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/team-list.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/team-list.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Team</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -553,7 +553,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/hbase-archetypes/hbase-client-project/checkstyle.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-client-project/checkstyle.html b/hbase-build-configuration/hbase-archetypes/hbase-client-project/checkstyle.html index 4dd8da5..c04707c 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-client-project/checkstyle.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-client-project/checkstyle.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Exemplar for hbase-client archetype – Checkstyle Results</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -150,7 +150,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0b638133/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependencies.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependencies.html b/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependencies.html index 35d8362..e0a42d3 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependencies.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependencies.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180111" /> + <meta name="Date-Revision-yyyymmdd" content="20180112" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Exemplar for hbase-client archetype – Project Dependencies</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -3501,7 +3501,7 @@ The following provides more details on the included cryptographic software: <td>No</td></tr> <tr class="a"> <td>hbase-common-3.0.0-SNAPSHOT-tests.jar</td> -<td>299.6 kB</td> +<td>299.9 kB</td> <td>-</td> <td>-</td> <td>-</td> @@ -3618,7 +3618,7 @@ The following provides more details on the included cryptographic software: <td>No</td></tr> <tr class="b"> <td>hbase-server-3.0.0-SNAPSHOT-tests.jar</td> -<td>7.9 MB</td> +<td>8 MB</td> <td>-</td> <td>-</td> <td>-</td> @@ -3645,7 +3645,7 @@ The following provides more details on the included cryptographic software: <td>No</td></tr> <tr class="a"> <td>hbase-zookeeper-3.0.0-SNAPSHOT-tests.jar</td> -<td>60.1 kB</td> +<td>59.7 kB</td> <td>-</td> <td>-</td> <td>-</td> @@ -4149,7 +4149,7 @@ The following provides more details on the included cryptographic software: <td>compile: 1</td></tr> <tr class="a"> <td>test: 71</td> -<td>test: 41.9 MB</td> +<td>test: 42 MB</td> <td>test: 14179</td> <td>test: 12950</td> <td>test: 516</td> @@ -4168,7 +4168,7 @@ The following provides more details on the included cryptographic software: <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-11</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-12</li> </p> </div>
