Repository: hbase-site Updated Branches: refs/heads/asf-site 8e4ca0283 -> 1c3530b03
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/devapidocs/src-html/org/apache/hadoop/hbase/http/log/LogLevel.html ---------------------------------------------------------------------- diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/http/log/LogLevel.html b/devapidocs/src-html/org/apache/hadoop/hbase/http/log/LogLevel.html index 4f83768..e598b59 100644 --- a/devapidocs/src-html/org/apache/hadoop/hbase/http/log/LogLevel.html +++ b/devapidocs/src-html/org/apache/hadoop/hbase/http/log/LogLevel.html @@ -26,181 +26,194 @@ <span class="sourceLineNo">018</span>package org.apache.hadoop.hbase.http.log;<a name="line.18"></a> <span class="sourceLineNo">019</span><a name="line.19"></a> <span class="sourceLineNo">020</span>import java.io.BufferedReader;<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.io.InputStreamReader;<a name="line.22"></a> -<span class="sourceLineNo">023</span>import java.io.PrintWriter;<a name="line.23"></a> -<span class="sourceLineNo">024</span>import java.net.URL;<a name="line.24"></a> -<span class="sourceLineNo">025</span>import java.net.URLConnection;<a name="line.25"></a> -<span class="sourceLineNo">026</span>import java.util.regex.Pattern;<a name="line.26"></a> -<span class="sourceLineNo">027</span>import javax.servlet.ServletException;<a name="line.27"></a> -<span class="sourceLineNo">028</span>import javax.servlet.http.HttpServlet;<a name="line.28"></a> -<span class="sourceLineNo">029</span>import javax.servlet.http.HttpServletRequest;<a name="line.29"></a> -<span class="sourceLineNo">030</span>import javax.servlet.http.HttpServletResponse;<a name="line.30"></a> -<span class="sourceLineNo">031</span>import org.apache.commons.logging.impl.Jdk14Logger;<a name="line.31"></a> -<span class="sourceLineNo">032</span>import org.apache.commons.logging.impl.Log4JLogger;<a name="line.32"></a> -<span class="sourceLineNo">033</span>import org.apache.hadoop.hbase.http.HttpServer;<a name="line.33"></a> -<span class="sourceLineNo">034</span>import org.apache.hadoop.util.ServletUtil;<a name="line.34"></a> -<span class="sourceLineNo">035</span>import org.apache.log4j.LogManager;<a name="line.35"></a> -<span class="sourceLineNo">036</span>import org.apache.yetus.audience.InterfaceAudience;<a name="line.36"></a> -<span class="sourceLineNo">037</span>import org.apache.yetus.audience.InterfaceStability;<a name="line.37"></a> -<span class="sourceLineNo">038</span>import org.slf4j.Logger;<a name="line.38"></a> -<span class="sourceLineNo">039</span>import org.slf4j.LoggerFactory;<a name="line.39"></a> -<span class="sourceLineNo">040</span>import org.slf4j.impl.Log4jLoggerAdapter;<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> * Change log level in runtime.<a name="line.43"></a> -<span class="sourceLineNo">044</span> */<a name="line.44"></a> -<span class="sourceLineNo">045</span>@InterfaceAudience.Private<a name="line.45"></a> -<span class="sourceLineNo">046</span>public final class LogLevel {<a name="line.46"></a> -<span class="sourceLineNo">047</span> public static final String USAGES = "\nUsage: General options are:\n"<a name="line.47"></a> -<span class="sourceLineNo">048</span> + "\t[-getlevel <host:httpPort> <name>]\n"<a name="line.48"></a> -<span class="sourceLineNo">049</span> + "\t[-setlevel <host:httpPort> <name> <level>]\n";<a name="line.49"></a> -<span class="sourceLineNo">050</span><a name="line.50"></a> -<span class="sourceLineNo">051</span> /**<a name="line.51"></a> -<span class="sourceLineNo">052</span> * A command line implementation<a name="line.52"></a> -<span class="sourceLineNo">053</span> */<a name="line.53"></a> -<span class="sourceLineNo">054</span> public static void main(String[] args) {<a name="line.54"></a> -<span class="sourceLineNo">055</span> if (args.length == 3 && "-getlevel".equals(args[0])) {<a name="line.55"></a> -<span class="sourceLineNo">056</span> process("http://" + args[1] + "/logLevel?log=" + args[2]);<a name="line.56"></a> -<span class="sourceLineNo">057</span> return;<a name="line.57"></a> -<span class="sourceLineNo">058</span> }<a name="line.58"></a> -<span class="sourceLineNo">059</span> else if (args.length == 4 && "-setlevel".equals(args[0])) {<a name="line.59"></a> -<span class="sourceLineNo">060</span> process("http://" + args[1] + "/logLevel?log=" + args[2]<a name="line.60"></a> -<span class="sourceLineNo">061</span> + "&level=" + args[3]);<a name="line.61"></a> -<span class="sourceLineNo">062</span> return;<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> System.err.println(USAGES);<a name="line.65"></a> -<span class="sourceLineNo">066</span> System.exit(-1);<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> private static void process(String urlstring) {<a name="line.69"></a> -<span class="sourceLineNo">070</span> try {<a name="line.70"></a> -<span class="sourceLineNo">071</span> URL url = new URL(urlstring);<a name="line.71"></a> -<span class="sourceLineNo">072</span> System.out.println("Connecting to " + url);<a name="line.72"></a> -<span class="sourceLineNo">073</span> URLConnection connection = url.openConnection();<a name="line.73"></a> -<span class="sourceLineNo">074</span> connection.connect();<a name="line.74"></a> -<span class="sourceLineNo">075</span> try (InputStreamReader streamReader = new InputStreamReader(connection.getInputStream());<a name="line.75"></a> -<span class="sourceLineNo">076</span> BufferedReader bufferedReader = new BufferedReader(streamReader)) {<a name="line.76"></a> -<span class="sourceLineNo">077</span> for(String line; (line = bufferedReader.readLine()) != null; ) {<a name="line.77"></a> -<span class="sourceLineNo">078</span> if (line.startsWith(MARKER)) {<a name="line.78"></a> -<span class="sourceLineNo">079</span> System.out.println(TAG.matcher(line).replaceAll(""));<a name="line.79"></a> -<span class="sourceLineNo">080</span> }<a name="line.80"></a> -<span class="sourceLineNo">081</span> }<a name="line.81"></a> -<span class="sourceLineNo">082</span> }<a name="line.82"></a> -<span class="sourceLineNo">083</span> } catch (IOException ioe) {<a name="line.83"></a> -<span class="sourceLineNo">084</span> System.err.println("" + ioe);<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><a name="line.87"></a> -<span class="sourceLineNo">088</span> static final String MARKER = "<!-- OUTPUT -->";<a name="line.88"></a> -<span class="sourceLineNo">089</span> static final Pattern TAG = Pattern.compile("<[^>]*>");<a name="line.89"></a> -<span class="sourceLineNo">090</span><a name="line.90"></a> -<span class="sourceLineNo">091</span> /**<a name="line.91"></a> -<span class="sourceLineNo">092</span> * A servlet implementation<a name="line.92"></a> -<span class="sourceLineNo">093</span> */<a name="line.93"></a> -<span class="sourceLineNo">094</span> @InterfaceAudience.LimitedPrivate({"HDFS", "MapReduce"})<a name="line.94"></a> -<span class="sourceLineNo">095</span> @InterfaceStability.Unstable<a name="line.95"></a> -<span class="sourceLineNo">096</span> public static class Servlet extends HttpServlet {<a name="line.96"></a> -<span class="sourceLineNo">097</span> private static final long serialVersionUID = 1L;<a name="line.97"></a> -<span class="sourceLineNo">098</span><a name="line.98"></a> -<span class="sourceLineNo">099</span> @Override<a name="line.99"></a> -<span class="sourceLineNo">100</span> public void doGet(HttpServletRequest request, HttpServletResponse response<a name="line.100"></a> -<span class="sourceLineNo">101</span> ) throws ServletException, IOException {<a name="line.101"></a> -<span class="sourceLineNo">102</span><a name="line.102"></a> -<span class="sourceLineNo">103</span> // Do the authorization<a name="line.103"></a> -<span class="sourceLineNo">104</span> if (!HttpServer.hasAdministratorAccess(getServletContext(), request,<a name="line.104"></a> -<span class="sourceLineNo">105</span> response)) {<a name="line.105"></a> -<span class="sourceLineNo">106</span> return;<a name="line.106"></a> -<span class="sourceLineNo">107</span> }<a name="line.107"></a> -<span class="sourceLineNo">108</span> response.setContentType("text/html");<a name="line.108"></a> -<span class="sourceLineNo">109</span> String requestedURL = "header.jsp?pageTitle=Log Level";<a name="line.109"></a> -<span class="sourceLineNo">110</span> request.getRequestDispatcher(requestedURL).include(request, response);<a name="line.110"></a> -<span class="sourceLineNo">111</span> PrintWriter out = response.getWriter();<a name="line.111"></a> -<span class="sourceLineNo">112</span> out.println(FORMS);<a name="line.112"></a> -<span class="sourceLineNo">113</span><a name="line.113"></a> -<span class="sourceLineNo">114</span> String logName = ServletUtil.getParameter(request, "log");<a name="line.114"></a> -<span class="sourceLineNo">115</span> String level = ServletUtil.getParameter(request, "level");<a name="line.115"></a> -<span class="sourceLineNo">116</span><a name="line.116"></a> -<span class="sourceLineNo">117</span> if (logName != null) {<a name="line.117"></a> -<span class="sourceLineNo">118</span> out.println("<p>Results:</p>");<a name="line.118"></a> -<span class="sourceLineNo">119</span> out.println(MARKER<a name="line.119"></a> -<span class="sourceLineNo">120</span> + "Submitted Log Name: <b>" + logName + "</b><br />");<a name="line.120"></a> -<span class="sourceLineNo">121</span><a name="line.121"></a> -<span class="sourceLineNo">122</span> Logger log = LoggerFactory.getLogger(logName);<a name="line.122"></a> -<span class="sourceLineNo">123</span> out.println(MARKER<a name="line.123"></a> -<span class="sourceLineNo">124</span> + "Log Class: <b>" + log.getClass().getName() +"</b><br />");<a name="line.124"></a> -<span class="sourceLineNo">125</span> if (level != null) {<a name="line.125"></a> -<span class="sourceLineNo">126</span> out.println(MARKER + "Submitted Level: <b>" + level + "</b><br />");<a name="line.126"></a> -<span class="sourceLineNo">127</span> }<a name="line.127"></a> +<span class="sourceLineNo">021</span>import java.io.FileNotFoundException;<a name="line.21"></a> +<span class="sourceLineNo">022</span>import java.io.IOException;<a name="line.22"></a> +<span class="sourceLineNo">023</span>import java.io.InputStreamReader;<a name="line.23"></a> +<span class="sourceLineNo">024</span>import java.io.PrintWriter;<a name="line.24"></a> +<span class="sourceLineNo">025</span>import java.net.URL;<a name="line.25"></a> +<span class="sourceLineNo">026</span>import java.net.URLConnection;<a name="line.26"></a> +<span class="sourceLineNo">027</span>import java.util.regex.Pattern;<a name="line.27"></a> +<span class="sourceLineNo">028</span>import javax.servlet.ServletException;<a name="line.28"></a> +<span class="sourceLineNo">029</span>import javax.servlet.http.HttpServlet;<a name="line.29"></a> +<span class="sourceLineNo">030</span>import javax.servlet.http.HttpServletRequest;<a name="line.30"></a> +<span class="sourceLineNo">031</span>import javax.servlet.http.HttpServletResponse;<a name="line.31"></a> +<span class="sourceLineNo">032</span>import org.apache.commons.logging.impl.Jdk14Logger;<a name="line.32"></a> +<span class="sourceLineNo">033</span>import org.apache.commons.logging.impl.Log4JLogger;<a name="line.33"></a> +<span class="sourceLineNo">034</span>import org.apache.hadoop.hbase.http.HttpServer;<a name="line.34"></a> +<span class="sourceLineNo">035</span>import org.apache.hadoop.util.ServletUtil;<a name="line.35"></a> +<span class="sourceLineNo">036</span>import org.apache.log4j.LogManager;<a name="line.36"></a> +<span class="sourceLineNo">037</span>import org.apache.yetus.audience.InterfaceAudience;<a name="line.37"></a> +<span class="sourceLineNo">038</span>import org.apache.yetus.audience.InterfaceStability;<a name="line.38"></a> +<span class="sourceLineNo">039</span>import org.slf4j.Logger;<a name="line.39"></a> +<span class="sourceLineNo">040</span>import org.slf4j.LoggerFactory;<a name="line.40"></a> +<span class="sourceLineNo">041</span>import org.slf4j.impl.Log4jLoggerAdapter;<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> * Change log level in runtime.<a name="line.44"></a> +<span class="sourceLineNo">045</span> */<a name="line.45"></a> +<span class="sourceLineNo">046</span>@InterfaceAudience.Private<a name="line.46"></a> +<span class="sourceLineNo">047</span>public final class LogLevel {<a name="line.47"></a> +<span class="sourceLineNo">048</span> public static final String USAGES = "\nUsage: General options are:\n"<a name="line.48"></a> +<span class="sourceLineNo">049</span> + "\t[-getlevel <host:httpPort> <name>]\n"<a name="line.49"></a> +<span class="sourceLineNo">050</span> + "\t[-setlevel <host:httpPort> <name> <level>]\n";<a name="line.50"></a> +<span class="sourceLineNo">051</span><a name="line.51"></a> +<span class="sourceLineNo">052</span> /**<a name="line.52"></a> +<span class="sourceLineNo">053</span> * A command line implementation<a name="line.53"></a> +<span class="sourceLineNo">054</span> */<a name="line.54"></a> +<span class="sourceLineNo">055</span> public static void main(String[] args) {<a name="line.55"></a> +<span class="sourceLineNo">056</span> if (args.length == 3 && "-getlevel".equals(args[0])) {<a name="line.56"></a> +<span class="sourceLineNo">057</span> process("http://" + args[1] + "/logLevel?log=" + args[2]);<a name="line.57"></a> +<span class="sourceLineNo">058</span> return;<a name="line.58"></a> +<span class="sourceLineNo">059</span> }<a name="line.59"></a> +<span class="sourceLineNo">060</span> else if (args.length == 4 && "-setlevel".equals(args[0])) {<a name="line.60"></a> +<span class="sourceLineNo">061</span> process("http://" + args[1] + "/logLevel?log=" + args[2]<a name="line.61"></a> +<span class="sourceLineNo">062</span> + "&level=" + args[3]);<a name="line.62"></a> +<span class="sourceLineNo">063</span> return;<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> System.err.println(USAGES);<a name="line.66"></a> +<span class="sourceLineNo">067</span> System.exit(-1);<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> private static void process(String urlstring) {<a name="line.70"></a> +<span class="sourceLineNo">071</span> try {<a name="line.71"></a> +<span class="sourceLineNo">072</span> URL url = new URL(urlstring);<a name="line.72"></a> +<span class="sourceLineNo">073</span> System.out.println("Connecting to " + url);<a name="line.73"></a> +<span class="sourceLineNo">074</span> URLConnection connection = url.openConnection();<a name="line.74"></a> +<span class="sourceLineNo">075</span> connection.connect();<a name="line.75"></a> +<span class="sourceLineNo">076</span> try (InputStreamReader streamReader = new InputStreamReader(connection.getInputStream());<a name="line.76"></a> +<span class="sourceLineNo">077</span> BufferedReader bufferedReader = new BufferedReader(streamReader)) {<a name="line.77"></a> +<span class="sourceLineNo">078</span> for(String line; (line = bufferedReader.readLine()) != null; ) {<a name="line.78"></a> +<span class="sourceLineNo">079</span> if (line.startsWith(MARKER)) {<a name="line.79"></a> +<span class="sourceLineNo">080</span> System.out.println(TAG.matcher(line).replaceAll(""));<a name="line.80"></a> +<span class="sourceLineNo">081</span> }<a name="line.81"></a> +<span class="sourceLineNo">082</span> }<a name="line.82"></a> +<span class="sourceLineNo">083</span> }<a name="line.83"></a> +<span class="sourceLineNo">084</span> } catch (IOException ioe) {<a name="line.84"></a> +<span class="sourceLineNo">085</span> System.err.println("" + ioe);<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><a name="line.88"></a> +<span class="sourceLineNo">089</span> static final String MARKER = "<!-- OUTPUT -->";<a name="line.89"></a> +<span class="sourceLineNo">090</span> static final Pattern TAG = Pattern.compile("<[^>]*>");<a name="line.90"></a> +<span class="sourceLineNo">091</span><a name="line.91"></a> +<span class="sourceLineNo">092</span> /**<a name="line.92"></a> +<span class="sourceLineNo">093</span> * A servlet implementation<a name="line.93"></a> +<span class="sourceLineNo">094</span> */<a name="line.94"></a> +<span class="sourceLineNo">095</span> @InterfaceAudience.LimitedPrivate({"HDFS", "MapReduce"})<a name="line.95"></a> +<span class="sourceLineNo">096</span> @InterfaceStability.Unstable<a name="line.96"></a> +<span class="sourceLineNo">097</span> public static class Servlet extends HttpServlet {<a name="line.97"></a> +<span class="sourceLineNo">098</span> private static final long serialVersionUID = 1L;<a name="line.98"></a> +<span class="sourceLineNo">099</span><a name="line.99"></a> +<span class="sourceLineNo">100</span> @Override<a name="line.100"></a> +<span class="sourceLineNo">101</span> public void doGet(HttpServletRequest request, HttpServletResponse response<a name="line.101"></a> +<span class="sourceLineNo">102</span> ) throws ServletException, IOException {<a name="line.102"></a> +<span class="sourceLineNo">103</span><a name="line.103"></a> +<span class="sourceLineNo">104</span> // Do the authorization<a name="line.104"></a> +<span class="sourceLineNo">105</span> if (!HttpServer.hasAdministratorAccess(getServletContext(), request,<a name="line.105"></a> +<span class="sourceLineNo">106</span> response)) {<a name="line.106"></a> +<span class="sourceLineNo">107</span> return;<a name="line.107"></a> +<span class="sourceLineNo">108</span> }<a name="line.108"></a> +<span class="sourceLineNo">109</span> response.setContentType("text/html");<a name="line.109"></a> +<span class="sourceLineNo">110</span> PrintWriter out;<a name="line.110"></a> +<span class="sourceLineNo">111</span> try {<a name="line.111"></a> +<span class="sourceLineNo">112</span> String headerPath = "header.jsp?pageTitle=Log Level";<a name="line.112"></a> +<span class="sourceLineNo">113</span> request.getRequestDispatcher(headerPath).include(request, response);<a name="line.113"></a> +<span class="sourceLineNo">114</span> out = response.getWriter();<a name="line.114"></a> +<span class="sourceLineNo">115</span> } catch (FileNotFoundException e) {<a name="line.115"></a> +<span class="sourceLineNo">116</span> // in case file is not found fall back to old design<a name="line.116"></a> +<span class="sourceLineNo">117</span> out = ServletUtil.initHTML(response, "Log Level");<a name="line.117"></a> +<span class="sourceLineNo">118</span> }<a name="line.118"></a> +<span class="sourceLineNo">119</span> out.println(FORMS);<a name="line.119"></a> +<span class="sourceLineNo">120</span><a name="line.120"></a> +<span class="sourceLineNo">121</span> String logName = ServletUtil.getParameter(request, "log");<a name="line.121"></a> +<span class="sourceLineNo">122</span> String level = ServletUtil.getParameter(request, "level");<a name="line.122"></a> +<span class="sourceLineNo">123</span><a name="line.123"></a> +<span class="sourceLineNo">124</span> if (logName != null) {<a name="line.124"></a> +<span class="sourceLineNo">125</span> out.println("<p>Results:</p>");<a name="line.125"></a> +<span class="sourceLineNo">126</span> out.println(MARKER<a name="line.126"></a> +<span class="sourceLineNo">127</span> + "Submitted Log Name: <b>" + logName + "</b><br />");<a name="line.127"></a> <span class="sourceLineNo">128</span><a name="line.128"></a> -<span class="sourceLineNo">129</span> if (log instanceof Log4JLogger) {<a name="line.129"></a> -<span class="sourceLineNo">130</span> process(((Log4JLogger)log).getLogger(), level, out);<a name="line.130"></a> -<span class="sourceLineNo">131</span> } else if (log instanceof Jdk14Logger) {<a name="line.131"></a> -<span class="sourceLineNo">132</span> process(((Jdk14Logger)log).getLogger(), level, out);<a name="line.132"></a> -<span class="sourceLineNo">133</span> } else if (log instanceof Log4jLoggerAdapter) {<a name="line.133"></a> -<span class="sourceLineNo">134</span> process(LogManager.getLogger(logName), level, out);<a name="line.134"></a> -<span class="sourceLineNo">135</span> } else {<a name="line.135"></a> -<span class="sourceLineNo">136</span> out.println("Sorry, " + log.getClass() + " not supported.<br />");<a name="line.136"></a> -<span class="sourceLineNo">137</span> }<a name="line.137"></a> -<span class="sourceLineNo">138</span> }<a name="line.138"></a> -<span class="sourceLineNo">139</span> out.println("</div>");<a name="line.139"></a> -<span class="sourceLineNo">140</span> request.getRequestDispatcher("footer.jsp").include(request, response);<a name="line.140"></a> -<span class="sourceLineNo">141</span> out.close();<a name="line.141"></a> -<span class="sourceLineNo">142</span> }<a name="line.142"></a> -<span class="sourceLineNo">143</span><a name="line.143"></a> -<span class="sourceLineNo">144</span> static final String FORMS = "<div class='container-fluid content'>\n"<a name="line.144"></a> -<span class="sourceLineNo">145</span> + "<div class='row inner_header'>\n" + "<div class='page-header'>\n"<a name="line.145"></a> -<span class="sourceLineNo">146</span> + "<h1>Get/Set Log Level</h1>\n" + "</div>\n" + "</div>\n" + "Actions:" + "<p>"<a name="line.146"></a> -<span class="sourceLineNo">147</span> + "<center>\n" + "<table class='table' style='border: 0;' width='95%' >\n" + "<tr>\n"<a name="line.147"></a> -<span class="sourceLineNo">148</span> + "<form>\n" + "<td class='centered'>\n"<a name="line.148"></a> -<span class="sourceLineNo">149</span> + "<input style='font-size: 12pt; width: 10em' type='submit' value='Get Log Level'"<a name="line.149"></a> -<span class="sourceLineNo">150</span> + " class='btn' />\n" + "</td>\n" + "<td style='text-align: center;'>\n"<a name="line.150"></a> -<span class="sourceLineNo">151</span> + "<input type='text' name='log' size='50' required='required'"<a name="line.151"></a> -<span class="sourceLineNo">152</span> + " placeholder='Log Name (required)' />\n" + "</td>\n" + "<td width=\"40%\">"<a name="line.152"></a> -<span class="sourceLineNo">153</span> + "Get the current log level for the specified log name." + "</td>\n" + "</form>\n"<a name="line.153"></a> -<span class="sourceLineNo">154</span> + "</tr>\n" + "<tr>\n" + "<form>\n" + "<td class='centered'>\n"<a name="line.154"></a> -<span class="sourceLineNo">155</span> + "<input style='font-size: 12pt; width: 10em' type='submit'"<a name="line.155"></a> -<span class="sourceLineNo">156</span> + " value='Set Log Level' class='btn' />\n" + "</td>\n"<a name="line.156"></a> -<span class="sourceLineNo">157</span> + "<td style='text-align: center;'>\n"<a name="line.157"></a> -<span class="sourceLineNo">158</span> + "<input type='text' name='log' size='50' required='required'"<a name="line.158"></a> -<span class="sourceLineNo">159</span> + " placeholder='Log Name (required)' />\n"<a name="line.159"></a> -<span class="sourceLineNo">160</span> + "<input type='text' name='level' size='50' required='required'"<a name="line.160"></a> -<span class="sourceLineNo">161</span> + " placeholder='Log Level (required)' />\n" + "</td>\n" + "<td width=\"40%\" style=\"\">"<a name="line.161"></a> -<span class="sourceLineNo">162</span> + "Set the specified log level for the specified log name." + "</td>\n" + "</form>\n"<a name="line.162"></a> -<span class="sourceLineNo">163</span> + "</tr>\n" + "</table>\n" + "</center>\n" + "</p>\n" + "<hr/>\n";<a name="line.163"></a> -<span class="sourceLineNo">164</span><a name="line.164"></a> -<span class="sourceLineNo">165</span> private static void process(org.apache.log4j.Logger log, String level,<a name="line.165"></a> -<span class="sourceLineNo">166</span> PrintWriter out) throws IOException {<a name="line.166"></a> -<span class="sourceLineNo">167</span> if (level != null) {<a name="line.167"></a> -<span class="sourceLineNo">168</span> if (!level.equals(org.apache.log4j.Level.toLevel(level).toString())) {<a name="line.168"></a> -<span class="sourceLineNo">169</span> out.println(MARKER + "<div class='text-danger'>" + "Bad level : <strong>" + level<a name="line.169"></a> -<span class="sourceLineNo">170</span> + "</strong><br />" + "</div>");<a name="line.170"></a> -<span class="sourceLineNo">171</span> } else {<a name="line.171"></a> -<span class="sourceLineNo">172</span> log.setLevel(org.apache.log4j.Level.toLevel(level));<a name="line.172"></a> -<span class="sourceLineNo">173</span> out.println(MARKER + "<div class='text-success'>" + "Setting Level to <strong>" + level<a name="line.173"></a> -<span class="sourceLineNo">174</span> + "</strong> ...<br />" + "</div>");<a name="line.174"></a> -<span class="sourceLineNo">175</span> }<a name="line.175"></a> -<span class="sourceLineNo">176</span> }<a name="line.176"></a> -<span class="sourceLineNo">177</span> out.println(MARKER<a name="line.177"></a> -<span class="sourceLineNo">178</span> + "Effective level: <b>" + log.getEffectiveLevel() + "</b><br />");<a name="line.178"></a> -<span class="sourceLineNo">179</span> }<a name="line.179"></a> -<span class="sourceLineNo">180</span><a name="line.180"></a> -<span class="sourceLineNo">181</span> private static void process(java.util.logging.Logger log, String level,<a name="line.181"></a> -<span class="sourceLineNo">182</span> PrintWriter out) throws IOException {<a name="line.182"></a> -<span class="sourceLineNo">183</span> if (level != null) {<a name="line.183"></a> -<span class="sourceLineNo">184</span> log.setLevel(java.util.logging.Level.parse(level));<a name="line.184"></a> -<span class="sourceLineNo">185</span> out.println(MARKER + "Setting Level to " + level + " ...<br />");<a name="line.185"></a> -<span class="sourceLineNo">186</span> }<a name="line.186"></a> -<span class="sourceLineNo">187</span><a name="line.187"></a> -<span class="sourceLineNo">188</span> java.util.logging.Level lev;<a name="line.188"></a> -<span class="sourceLineNo">189</span> for(; (lev = log.getLevel()) == null; log = log.getParent());<a name="line.189"></a> -<span class="sourceLineNo">190</span> out.println(MARKER + "Effective level: <b>" + lev + "</b><br />");<a name="line.190"></a> -<span class="sourceLineNo">191</span> }<a name="line.191"></a> -<span class="sourceLineNo">192</span> }<a name="line.192"></a> +<span class="sourceLineNo">129</span> Logger log = LoggerFactory.getLogger(logName);<a name="line.129"></a> +<span class="sourceLineNo">130</span> out.println(MARKER<a name="line.130"></a> +<span class="sourceLineNo">131</span> + "Log Class: <b>" + log.getClass().getName() +"</b><br />");<a name="line.131"></a> +<span class="sourceLineNo">132</span> if (level != null) {<a name="line.132"></a> +<span class="sourceLineNo">133</span> out.println(MARKER + "Submitted Level: <b>" + level + "</b><br />");<a name="line.133"></a> +<span class="sourceLineNo">134</span> }<a name="line.134"></a> +<span class="sourceLineNo">135</span><a name="line.135"></a> +<span class="sourceLineNo">136</span> if (log instanceof Log4JLogger) {<a name="line.136"></a> +<span class="sourceLineNo">137</span> process(((Log4JLogger)log).getLogger(), level, out);<a name="line.137"></a> +<span class="sourceLineNo">138</span> } else if (log instanceof Jdk14Logger) {<a name="line.138"></a> +<span class="sourceLineNo">139</span> process(((Jdk14Logger)log).getLogger(), level, out);<a name="line.139"></a> +<span class="sourceLineNo">140</span> } else if (log instanceof Log4jLoggerAdapter) {<a name="line.140"></a> +<span class="sourceLineNo">141</span> process(LogManager.getLogger(logName), level, out);<a name="line.141"></a> +<span class="sourceLineNo">142</span> } else {<a name="line.142"></a> +<span class="sourceLineNo">143</span> out.println("Sorry, " + log.getClass() + " not supported.<br />");<a name="line.143"></a> +<span class="sourceLineNo">144</span> }<a name="line.144"></a> +<span class="sourceLineNo">145</span> }<a name="line.145"></a> +<span class="sourceLineNo">146</span><a name="line.146"></a> +<span class="sourceLineNo">147</span> try {<a name="line.147"></a> +<span class="sourceLineNo">148</span> String footerPath = "footer.jsp";<a name="line.148"></a> +<span class="sourceLineNo">149</span> out.println("</div>");<a name="line.149"></a> +<span class="sourceLineNo">150</span> request.getRequestDispatcher(footerPath).include(request, response);<a name="line.150"></a> +<span class="sourceLineNo">151</span> } catch (FileNotFoundException e) {<a name="line.151"></a> +<span class="sourceLineNo">152</span> out.println(ServletUtil.HTML_TAIL);<a name="line.152"></a> +<span class="sourceLineNo">153</span> }<a name="line.153"></a> +<span class="sourceLineNo">154</span> out.close();<a name="line.154"></a> +<span class="sourceLineNo">155</span> }<a name="line.155"></a> +<span class="sourceLineNo">156</span><a name="line.156"></a> +<span class="sourceLineNo">157</span> static final String FORMS = "<div class='container-fluid content'>\n"<a name="line.157"></a> +<span class="sourceLineNo">158</span> + "<div class='row inner_header'>\n" + "<div class='page-header'>\n"<a name="line.158"></a> +<span class="sourceLineNo">159</span> + "<h1>Get/Set Log Level</h1>\n" + "</div>\n" + "</div>\n" + "Actions:" + "<p>"<a name="line.159"></a> +<span class="sourceLineNo">160</span> + "<center>\n" + "<table class='table' style='border: 0;' width='95%' >\n" + "<tr>\n"<a name="line.160"></a> +<span class="sourceLineNo">161</span> + "<form>\n" + "<td class='centered'>\n"<a name="line.161"></a> +<span class="sourceLineNo">162</span> + "<input style='font-size: 12pt; width: 10em' type='submit' value='Get Log Level'"<a name="line.162"></a> +<span class="sourceLineNo">163</span> + " class='btn' />\n" + "</td>\n" + "<td style='text-align: center;'>\n"<a name="line.163"></a> +<span class="sourceLineNo">164</span> + "<input type='text' name='log' size='50' required='required'"<a name="line.164"></a> +<span class="sourceLineNo">165</span> + " placeholder='Log Name (required)' />\n" + "</td>\n" + "<td width=\"40%\">"<a name="line.165"></a> +<span class="sourceLineNo">166</span> + "Get the current log level for the specified log name." + "</td>\n" + "</form>\n"<a name="line.166"></a> +<span class="sourceLineNo">167</span> + "</tr>\n" + "<tr>\n" + "<form>\n" + "<td class='centered'>\n"<a name="line.167"></a> +<span class="sourceLineNo">168</span> + "<input style='font-size: 12pt; width: 10em' type='submit'"<a name="line.168"></a> +<span class="sourceLineNo">169</span> + " value='Set Log Level' class='btn' />\n" + "</td>\n"<a name="line.169"></a> +<span class="sourceLineNo">170</span> + "<td style='text-align: center;'>\n"<a name="line.170"></a> +<span class="sourceLineNo">171</span> + "<input type='text' name='log' size='50' required='required'"<a name="line.171"></a> +<span class="sourceLineNo">172</span> + " placeholder='Log Name (required)' />\n"<a name="line.172"></a> +<span class="sourceLineNo">173</span> + "<input type='text' name='level' size='50' required='required'"<a name="line.173"></a> +<span class="sourceLineNo">174</span> + " placeholder='Log Level (required)' />\n" + "</td>\n" + "<td width=\"40%\" style=\"\">"<a name="line.174"></a> +<span class="sourceLineNo">175</span> + "Set the specified log level for the specified log name." + "</td>\n" + "</form>\n"<a name="line.175"></a> +<span class="sourceLineNo">176</span> + "</tr>\n" + "</table>\n" + "</center>\n" + "</p>\n" + "<hr/>\n";<a name="line.176"></a> +<span class="sourceLineNo">177</span><a name="line.177"></a> +<span class="sourceLineNo">178</span> private static void process(org.apache.log4j.Logger log, String level,<a name="line.178"></a> +<span class="sourceLineNo">179</span> PrintWriter out) throws IOException {<a name="line.179"></a> +<span class="sourceLineNo">180</span> if (level != null) {<a name="line.180"></a> +<span class="sourceLineNo">181</span> if (!level.equals(org.apache.log4j.Level.toLevel(level).toString())) {<a name="line.181"></a> +<span class="sourceLineNo">182</span> out.println(MARKER + "<div class='text-danger'>" + "Bad level : <strong>" + level<a name="line.182"></a> +<span class="sourceLineNo">183</span> + "</strong><br />" + "</div>");<a name="line.183"></a> +<span class="sourceLineNo">184</span> } else {<a name="line.184"></a> +<span class="sourceLineNo">185</span> log.setLevel(org.apache.log4j.Level.toLevel(level));<a name="line.185"></a> +<span class="sourceLineNo">186</span> out.println(MARKER + "<div class='text-success'>" + "Setting Level to <strong>" + level<a name="line.186"></a> +<span class="sourceLineNo">187</span> + "</strong> ...<br />" + "</div>");<a name="line.187"></a> +<span class="sourceLineNo">188</span> }<a name="line.188"></a> +<span class="sourceLineNo">189</span> }<a name="line.189"></a> +<span class="sourceLineNo">190</span> out.println(MARKER<a name="line.190"></a> +<span class="sourceLineNo">191</span> + "Effective level: <b>" + log.getEffectiveLevel() + "</b><br />");<a name="line.191"></a> +<span class="sourceLineNo">192</span> }<a name="line.192"></a> <span class="sourceLineNo">193</span><a name="line.193"></a> -<span class="sourceLineNo">194</span> private LogLevel() {}<a name="line.194"></a> -<span class="sourceLineNo">195</span>}<a name="line.195"></a> +<span class="sourceLineNo">194</span> private static void process(java.util.logging.Logger log, String level,<a name="line.194"></a> +<span class="sourceLineNo">195</span> PrintWriter out) throws IOException {<a name="line.195"></a> +<span class="sourceLineNo">196</span> if (level != null) {<a name="line.196"></a> +<span class="sourceLineNo">197</span> log.setLevel(java.util.logging.Level.parse(level));<a name="line.197"></a> +<span class="sourceLineNo">198</span> out.println(MARKER + "Setting Level to " + level + " ...<br />");<a name="line.198"></a> +<span class="sourceLineNo">199</span> }<a name="line.199"></a> +<span class="sourceLineNo">200</span><a name="line.200"></a> +<span class="sourceLineNo">201</span> java.util.logging.Level lev;<a name="line.201"></a> +<span class="sourceLineNo">202</span> for(; (lev = log.getLevel()) == null; log = log.getParent());<a name="line.202"></a> +<span class="sourceLineNo">203</span> out.println(MARKER + "Effective level: <b>" + lev + "</b><br />");<a name="line.203"></a> +<span class="sourceLineNo">204</span> }<a name="line.204"></a> +<span class="sourceLineNo">205</span> }<a name="line.205"></a> +<span class="sourceLineNo">206</span><a name="line.206"></a> +<span class="sourceLineNo">207</span> private LogLevel() {}<a name="line.207"></a> +<span class="sourceLineNo">208</span>}<a name="line.208"></a> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/devapidocs/src-html/org/apache/hadoop/hbase/tool/PreUpgradeValidator.html ---------------------------------------------------------------------- diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/tool/PreUpgradeValidator.html b/devapidocs/src-html/org/apache/hadoop/hbase/tool/PreUpgradeValidator.html index c330dc3..f576b85 100644 --- a/devapidocs/src-html/org/apache/hadoop/hbase/tool/PreUpgradeValidator.html +++ b/devapidocs/src-html/org/apache/hadoop/hbase/tool/PreUpgradeValidator.html @@ -64,12 +64,12 @@ <span class="sourceLineNo">056</span> private boolean validateDBE;<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> * Check DataBlockEncodings for column families.<a name="line.59"></a> +<span class="sourceLineNo">059</span> * Check DataBlockEncodings of column families are compatible.<a name="line.59"></a> <span class="sourceLineNo">060</span> *<a name="line.60"></a> -<span class="sourceLineNo">061</span> * @return DataBlockEncoding compatible with HBase 2<a name="line.61"></a> +<span class="sourceLineNo">061</span> * @return number of column families with incompatible DataBlockEncoding<a name="line.61"></a> <span class="sourceLineNo">062</span> * @throws IOException if a remote or network exception occurs<a name="line.62"></a> <span class="sourceLineNo">063</span> */<a name="line.63"></a> -<span class="sourceLineNo">064</span> private boolean validateDBE() throws IOException {<a name="line.64"></a> +<span class="sourceLineNo">064</span> private int validateDBE() throws IOException {<a name="line.64"></a> <span class="sourceLineNo">065</span> int incompatibilities = 0;<a name="line.65"></a> <span class="sourceLineNo">066</span><a name="line.66"></a> <span class="sourceLineNo">067</span> LOG.info("Validating Data Block Encodings");<a name="line.67"></a> @@ -100,41 +100,40 @@ <span class="sourceLineNo">092</span> + "upgrade until these encodings are converted to a supported one.", incompatibilities);<a name="line.92"></a> <span class="sourceLineNo">093</span> LOG.warn("Check http://hbase.apache.org/book.html#upgrade2.0.prefix-tree.removed "<a name="line.93"></a> <span class="sourceLineNo">094</span> + "for instructions.");<a name="line.94"></a> -<span class="sourceLineNo">095</span> return false;<a name="line.95"></a> -<span class="sourceLineNo">096</span> } else {<a name="line.96"></a> -<span class="sourceLineNo">097</span> LOG.info("The used Data Block Encodings are compatible with HBase 2.0.");<a name="line.97"></a> -<span class="sourceLineNo">098</span> return true;<a name="line.98"></a> -<span class="sourceLineNo">099</span> }<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> @Override<a name="line.102"></a> -<span class="sourceLineNo">103</span> protected void addOptions() {<a name="line.103"></a> -<span class="sourceLineNo">104</span> addOptNoArg("all", "Run all pre-upgrade validations");<a name="line.104"></a> -<span class="sourceLineNo">105</span> addOptNoArg("validateDBE", "Validate DataBlockEncoding are compatible on the cluster");<a name="line.105"></a> -<span class="sourceLineNo">106</span> }<a name="line.106"></a> -<span class="sourceLineNo">107</span><a name="line.107"></a> -<span class="sourceLineNo">108</span> @Override<a name="line.108"></a> -<span class="sourceLineNo">109</span> protected void processOptions(CommandLine cmd) {<a name="line.109"></a> -<span class="sourceLineNo">110</span> validateAll = cmd.hasOption("all");<a name="line.110"></a> -<span class="sourceLineNo">111</span> validateDBE = cmd.hasOption("validateDBE");<a name="line.111"></a> -<span class="sourceLineNo">112</span> }<a name="line.112"></a> -<span class="sourceLineNo">113</span><a name="line.113"></a> -<span class="sourceLineNo">114</span> @Override<a name="line.114"></a> -<span class="sourceLineNo">115</span> protected int doWork() throws Exception {<a name="line.115"></a> -<span class="sourceLineNo">116</span> boolean validationFailed = false;<a name="line.116"></a> -<span class="sourceLineNo">117</span> if (validateDBE || validateAll) {<a name="line.117"></a> -<span class="sourceLineNo">118</span> if (validateDBE()) {<a name="line.118"></a> -<span class="sourceLineNo">119</span> validationFailed = true;<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> -<span class="sourceLineNo">123</span> return validationFailed ? 1 : 0;<a name="line.123"></a> -<span class="sourceLineNo">124</span> }<a name="line.124"></a> -<span class="sourceLineNo">125</span><a name="line.125"></a> -<span class="sourceLineNo">126</span> public static void main(String[] args) {<a name="line.126"></a> -<span class="sourceLineNo">127</span> new PreUpgradeValidator().doStaticMain(args);<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">095</span> } else {<a name="line.95"></a> +<span class="sourceLineNo">096</span> LOG.info("The used Data Block Encodings are compatible with HBase 2.0.");<a name="line.96"></a> +<span class="sourceLineNo">097</span> }<a name="line.97"></a> +<span class="sourceLineNo">098</span> return incompatibilities;<a name="line.98"></a> +<span class="sourceLineNo">099</span> }<a name="line.99"></a> +<span class="sourceLineNo">100</span><a name="line.100"></a> +<span class="sourceLineNo">101</span> @Override<a name="line.101"></a> +<span class="sourceLineNo">102</span> protected void addOptions() {<a name="line.102"></a> +<span class="sourceLineNo">103</span> addOptNoArg("all", "Run all pre-upgrade validations");<a name="line.103"></a> +<span class="sourceLineNo">104</span> addOptNoArg("validateDBE", "Validate DataBlockEncodings are compatible");<a name="line.104"></a> +<span class="sourceLineNo">105</span> }<a name="line.105"></a> +<span class="sourceLineNo">106</span><a name="line.106"></a> +<span class="sourceLineNo">107</span> @Override<a name="line.107"></a> +<span class="sourceLineNo">108</span> protected void processOptions(CommandLine cmd) {<a name="line.108"></a> +<span class="sourceLineNo">109</span> validateAll = cmd.hasOption("all");<a name="line.109"></a> +<span class="sourceLineNo">110</span> validateDBE = cmd.hasOption("validateDBE");<a name="line.110"></a> +<span class="sourceLineNo">111</span> }<a name="line.111"></a> +<span class="sourceLineNo">112</span><a name="line.112"></a> +<span class="sourceLineNo">113</span> @Override<a name="line.113"></a> +<span class="sourceLineNo">114</span> protected int doWork() throws Exception {<a name="line.114"></a> +<span class="sourceLineNo">115</span> boolean validationFailed = false;<a name="line.115"></a> +<span class="sourceLineNo">116</span> if (validateDBE || validateAll) {<a name="line.116"></a> +<span class="sourceLineNo">117</span> if (validateDBE() > 0) {<a name="line.117"></a> +<span class="sourceLineNo">118</span> validationFailed = true;<a name="line.118"></a> +<span class="sourceLineNo">119</span> }<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> return validationFailed ? 1 : 0;<a name="line.122"></a> +<span class="sourceLineNo">123</span> }<a name="line.123"></a> +<span class="sourceLineNo">124</span><a name="line.124"></a> +<span class="sourceLineNo">125</span> public static void main(String[] args) {<a name="line.125"></a> +<span class="sourceLineNo">126</span> new PreUpgradeValidator().doStaticMain(args);<a name="line.126"></a> +<span class="sourceLineNo">127</span> }<a name="line.127"></a> +<span class="sourceLineNo">128</span>}<a name="line.128"></a> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/downloads.html ---------------------------------------------------------------------- diff --git a/downloads.html b/downloads.html index 3728a27..f42acc9 100644 --- a/downloads.html +++ b/downloads.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="20180605" /> + <meta name="Date-Revision-yyyymmdd" content="20180607" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Apache HBase Downloads</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -366,7 +366,7 @@ under the License. --> <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-06-05</li> + <li id="publishDate" class="pull-right">Last Published: 2018-06-07</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/export_control.html ---------------------------------------------------------------------- diff --git a/export_control.html b/export_control.html index 067871f..3dcda2a 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="20180605" /> + <meta name="Date-Revision-yyyymmdd" content="20180607" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Export Control @@ -331,7 +331,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-06-05</li> + <li id="publishDate" class="pull-right">Last Published: 2018-06-07</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/index.html ---------------------------------------------------------------------- diff --git a/index.html b/index.html index b21721f..bb5d9fa 100644 --- a/index.html +++ b/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="20180605" /> + <meta name="Date-Revision-yyyymmdd" content="20180607" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Apache HBase⢠Home</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -411,7 +411,7 @@ Apache HBase is an open-source, distributed, versioned, non-relational database <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-06-05</li> + <li id="publishDate" class="pull-right">Last Published: 2018-06-07</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/integration.html ---------------------------------------------------------------------- diff --git a/integration.html b/integration.html index 424db66..22404c6 100644 --- a/integration.html +++ b/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="20180605" /> + <meta name="Date-Revision-yyyymmdd" content="20180607" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – CI Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -291,7 +291,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-06-05</li> + <li id="publishDate" class="pull-right">Last Published: 2018-06-07</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/issue-tracking.html ---------------------------------------------------------------------- diff --git a/issue-tracking.html b/issue-tracking.html index 793f35e..93ce278 100644 --- a/issue-tracking.html +++ b/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="20180605" /> + <meta name="Date-Revision-yyyymmdd" content="20180607" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Issue Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -288,7 +288,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-06-05</li> + <li id="publishDate" class="pull-right">Last Published: 2018-06-07</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/license.html ---------------------------------------------------------------------- diff --git a/license.html b/license.html index 7b6a1b7..ad8866e 100644 --- a/license.html +++ b/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="20180605" /> + <meta name="Date-Revision-yyyymmdd" content="20180607" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Project Licenses</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -276,7 +276,209 @@ <h2><a name="Project_Licenses"></a>Project Licenses</h2><a name="Project_Licenses"></a> <div class="section"> <h3><a name="Apache_License_Version_2.0"></a>Apache License, Version 2.0</h3><a name="Apache_License_Version_2.0"></a> -<p>Can't read the url [https://www.apache.org/licenses/LICENSE-2.0.txt] : connect timed out</p></div></div> +<div class="source"><pre class="prettyprint"> + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed 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. +</pre></div></div></div> </div> </div> @@ -289,7 +491,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-06-05</li> + <li id="publishDate" class="pull-right">Last Published: 2018-06-07</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/mail-lists.html ---------------------------------------------------------------------- diff --git a/mail-lists.html b/mail-lists.html index c77f613..68bb7b7 100644 --- a/mail-lists.html +++ b/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="20180605" /> + <meta name="Date-Revision-yyyymmdd" content="20180607" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Project Mailing Lists</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -341,7 +341,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-06-05</li> + <li id="publishDate" class="pull-right">Last Published: 2018-06-07</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/metrics.html ---------------------------------------------------------------------- diff --git a/metrics.html b/metrics.html index bf873b4..acda20f 100644 --- a/metrics.html +++ b/metrics.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="20180605" /> + <meta name="Date-Revision-yyyymmdd" content="20180607" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Apache HBase (TM) Metrics @@ -459,7 +459,7 @@ export HBASE_REGIONSERVER_OPTS="$HBASE_JMX_OPTS -Dcom.sun.management.jmxrem <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-06-05</li> + <li id="publishDate" class="pull-right">Last Published: 2018-06-07</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/old_news.html ---------------------------------------------------------------------- diff --git a/old_news.html b/old_news.html index d1a17ea..5d69f16 100644 --- a/old_news.html +++ b/old_news.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="20180605" /> + <meta name="Date-Revision-yyyymmdd" content="20180607" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Old Apache HBase (TM) News @@ -440,7 +440,7 @@ under the License. --> <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-06-05</li> + <li id="publishDate" class="pull-right">Last Published: 2018-06-07</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/plugin-management.html ---------------------------------------------------------------------- diff --git a/plugin-management.html b/plugin-management.html index 7d3d58b..04e80e7 100644 --- a/plugin-management.html +++ b/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="20180605" /> + <meta name="Date-Revision-yyyymmdd" content="20180607" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Project Plugin Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -440,7 +440,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-06-05</li> + <li id="publishDate" class="pull-right">Last Published: 2018-06-07</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/plugins.html ---------------------------------------------------------------------- diff --git a/plugins.html b/plugins.html index a27955c..939a909 100644 --- a/plugins.html +++ b/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="20180605" /> + <meta name="Date-Revision-yyyymmdd" content="20180607" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Project Plugins</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -375,7 +375,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-06-05</li> + <li id="publishDate" class="pull-right">Last Published: 2018-06-07</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/poweredbyhbase.html ---------------------------------------------------------------------- diff --git a/poweredbyhbase.html b/poweredbyhbase.html index 4469076..8f8e7f6 100644 --- a/poweredbyhbase.html +++ b/poweredbyhbase.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="20180605" /> + <meta name="Date-Revision-yyyymmdd" content="20180607" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Powered By Apache HBaseÂ</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -769,7 +769,7 @@ under the License. --> <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-06-05</li> + <li id="publishDate" class="pull-right">Last Published: 2018-06-07</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/project-info.html ---------------------------------------------------------------------- diff --git a/project-info.html b/project-info.html index 2982749..27b7053 100644 --- a/project-info.html +++ b/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="20180605" /> + <meta name="Date-Revision-yyyymmdd" content="20180607" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Project Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -335,7 +335,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-06-05</li> + <li id="publishDate" class="pull-right">Last Published: 2018-06-07</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/project-reports.html ---------------------------------------------------------------------- diff --git a/project-reports.html b/project-reports.html index 84a69c9..5db7c8c 100644 --- a/project-reports.html +++ b/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="20180605" /> + <meta name="Date-Revision-yyyymmdd" content="20180607" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Generated Reports</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -305,7 +305,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-06-05</li> + <li id="publishDate" class="pull-right">Last Published: 2018-06-07</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/project-summary.html ---------------------------------------------------------------------- diff --git a/project-summary.html b/project-summary.html index d372f50..b7142be 100644 --- a/project-summary.html +++ b/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="20180605" /> + <meta name="Date-Revision-yyyymmdd" content="20180607" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Project Summary</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -331,7 +331,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-06-05</li> + <li id="publishDate" class="pull-right">Last Published: 2018-06-07</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/pseudo-distributed.html ---------------------------------------------------------------------- diff --git a/pseudo-distributed.html b/pseudo-distributed.html index bd9ceb9..d73c270 100644 --- a/pseudo-distributed.html +++ b/pseudo-distributed.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="20180605" /> + <meta name="Date-Revision-yyyymmdd" content="20180607" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Running Apache HBase (TM) in pseudo-distributed mode @@ -308,7 +308,7 @@ under the License. --> <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-06-05</li> + <li id="publishDate" class="pull-right">Last Published: 2018-06-07</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/replication.html ---------------------------------------------------------------------- diff --git a/replication.html b/replication.html index ecde7e9..d485c35 100644 --- a/replication.html +++ b/replication.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="20180605" /> + <meta name="Date-Revision-yyyymmdd" content="20180607" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Apache HBase (TM) Replication @@ -303,7 +303,7 @@ under the License. --> <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-06-05</li> + <li id="publishDate" class="pull-right">Last Published: 2018-06-07</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/resources.html ---------------------------------------------------------------------- diff --git a/resources.html b/resources.html index a64c202..c885b9a 100644 --- a/resources.html +++ b/resources.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="20180605" /> + <meta name="Date-Revision-yyyymmdd" content="20180607" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Other Apache HBase (TM) Resources</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -331,7 +331,7 @@ under the License. --> <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-06-05</li> + <li id="publishDate" class="pull-right">Last Published: 2018-06-07</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/source-repository.html ---------------------------------------------------------------------- diff --git a/source-repository.html b/source-repository.html index 874dec9..4781384 100644 --- a/source-repository.html +++ b/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="20180605" /> + <meta name="Date-Revision-yyyymmdd" content="20180607" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Source Code Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -299,7 +299,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-06-05</li> + <li id="publishDate" class="pull-right">Last Published: 2018-06-07</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/sponsors.html ---------------------------------------------------------------------- diff --git a/sponsors.html b/sponsors.html index 97192ac..b9ececb 100644 --- a/sponsors.html +++ b/sponsors.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="20180605" /> + <meta name="Date-Revision-yyyymmdd" content="20180607" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Apache HBase Sponsors</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -333,7 +333,7 @@ under the License. --> <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-06-05</li> + <li id="publishDate" class="pull-right">Last Published: 2018-06-07</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/supportingprojects.html ---------------------------------------------------------------------- diff --git a/supportingprojects.html b/supportingprojects.html index 743ce9c..7d8022e 100644 --- a/supportingprojects.html +++ b/supportingprojects.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="20180605" /> + <meta name="Date-Revision-yyyymmdd" content="20180607" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Supporting Projects</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -520,7 +520,7 @@ under the License. --> <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-06-05</li> + <li id="publishDate" class="pull-right">Last Published: 2018-06-07</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c3530b0/team-list.html ---------------------------------------------------------------------- diff --git a/team-list.html b/team-list.html index 064fb78..5651a06 100644 --- a/team-list.html +++ b/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="20180605" /> + <meta name="Date-Revision-yyyymmdd" content="20180607" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Project Team</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -736,7 +736,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-06-05</li> + <li id="publishDate" class="pull-right">Last Published: 2018-06-07</li> </p> </div>
