You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by da...@apache.org on 2016/12/27 20:13:11 UTC

incubator-trafficcontrol-website git commit: adds 1.8.0 with release notes to download page

Repository: incubator-trafficcontrol-website
Updated Branches:
  refs/heads/release-1.8.0-draft [created] 0271fee25


adds 1.8.0 with release notes to download page


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol-website/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol-website/commit/0271fee2
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol-website/tree/0271fee2
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol-website/diff/0271fee2

Branch: refs/heads/release-1.8.0-draft
Commit: 0271fee250cd822fa2a4e65649e7ea61ddfbf151
Parents: 5db4143
Author: Dan Kirkwood <da...@gmail.com>
Authored: Tue Dec 27 13:12:54 2016 -0700
Committer: Dan Kirkwood <da...@gmail.com>
Committed: Tue Dec 27 13:12:54 2016 -0700

----------------------------------------------------------------------
 css/home.css         | 26 +++++++++++++++++
 downloads/index.html | 74 +++++++++++++++++++++++++++++++++++++++++++----
 2 files changed, 94 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol-website/blob/0271fee2/css/home.css
----------------------------------------------------------------------
diff --git a/css/home.css b/css/home.css
index 85086fe..7125c79 100644
--- a/css/home.css
+++ b/css/home.css
@@ -145,6 +145,24 @@ body {
 	background-color: black;
 }
 
+.relNotesText {
+	margin:0px;
+	margin-top: 16px;
+}
+
+.relNotesContainer {
+	margin-top:30px;
+	text-align: left;
+	background-color: black;
+	font-size: medium;
+	text-align: left;
+	color: #ffffff;
+}
+
+.relNotesContainer td {
+	padding: 0 15px 0 15px;
+}
+
 table.tableMain {
 	color: #ffffff;
     margin-top:40px;
@@ -183,6 +201,14 @@ table.dlTable {
 	background-color: black;
 }
 
+.announce {
+	color: #ffffff;
+	font-size: larger;
+	border-style: solid;
+	padding: 0 10px 0 10px;
+	margin: 2em 20em 0 20em;
+	width: 32em;
+}
 
 
 

http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol-website/blob/0271fee2/downloads/index.html
----------------------------------------------------------------------
diff --git a/downloads/index.html b/downloads/index.html
index 0b7cab0..0a0439c 100644
--- a/downloads/index.html
+++ b/downloads/index.html
@@ -28,13 +28,75 @@
           </div>
         </div>
 
-	  <hr/>
-	  <p class="sectionContainer">
-		 We are working on our first Apache Incubator approved release. Keep an eye on the mailing lists to find out details.
-      </p>
-	  <p class="sectionContainer">
+      <div class="announce">
+	      <p class="relNotesText">Apache Traffic Control-1.8.0-incubating has not yet been released!
+	      The artifacts and release notes below are drafts for a proposed release of
+	      Apache Traffic Control which has not yet occurred.</p>
+      </div>
+
+      <hr/>
+
+	  <div class="relNotesContainer">
+	  <h1>Apache Traffic Control 1.8.0-incubating Release Notes</h1>
+		The source code for Traffic Control 1.8.0 is available here:
+		<table><tbody padding="0 15px 0 15px">
+		<tr>
+		   <td><a href="https://dist.apache.org/repos/dist/dev/incubator/trafficcontrol/1.8.0/RC5/incubator-trafficcontrol-1.8.0.tar.gz">incubator-trafficcontrol-1.8.0.tar.gz</a></td>
+		   <td padding="10px"><a href="https://dist.apache.org/repos/dist/dev/incubator/trafficcontrol/1.8.0/RC5/incubator-trafficcontrol-1.8.0.tar.gz.md5">MD5</a></td>
+		   <td padding="10px"><a href="https://dist.apache.org/repos/dist/dev/incubator/trafficcontrol/1.8.0/RC5/incubator-trafficcontrol-1.8.0.tar.gz.sha1">SHA1</a></td>
+		   <td padding="10px"><a href="https://dist.apache.org/repos/dist/dev/incubator/trafficcontrol/1.8.0/RC5/incubator-trafficcontrol-1.8.0.tar.gz.asc">PGP</a></td>
+		</tr>
+		</tbody></table>
+	  </div>
+
+	  <div class="relNotesContainer">
+		<h2>We're Incubating!</h2>
+		<p class="relNotesText">The Traffic Control project has been accepted into the Apache Incubator, and is
+		thus now Apache Traffic Control (incubating). Beyond simply moving the website,
+		this necessitated a number of changes, including switching to the Apache
+		License.
+		</p>
+
+		<p class="relNotesText">The 1.8.0-incubating release is Apache Traffic Control's
+		first release under the Apache incubator.  This release contains numerous bug
+		fixes in addition to the following:
+		</p>
+
+		<h3>Traffic Router</h3>
+		<p class="relNotesText">Recommendations based on load testing of HTTPS support: </p>
+
+		<p class="relNotesText">It is generally recommended to use the G1 garbage collector for JVM
+		applications running on multi core machines. In addition to using the G1
+		garbage collector, the InitiatingHeapOccupancyPercent was lowered to run
+		garbage collection more frequently.  This improved overall throughput for
+		Traffic Router and reduced 'Stop the World' garbage collection. </p>
+		<p class="relNotesText">The following example of /opt/tomcat/bin/setenv.sh that
+		has been tested on a multi core server running under HTTPS load test requests.
+		Note that setting the min and max heap settings in setenv.sh will override init
+		scripts in /etc/init.d/tomcat.</p>
+
+			<pre><code>
+#! /bin/sh
+export CATALINA_OPTS="$CATALINA_OPTS -server"
+export CATALINA_OPTS="$CATALINA_OPTS -Xms2g -Xmx2g"
+export CATALINA_OPTS="$CATALINA_OPTS -XX:+UseG1GC"
+export CATALINA_OPTS="$CATALINA_OPTS -XX:+UnlockExperimentalVMOptions"
+export CATALINA_OPTS="$CATALINA_OPTS -XX:InitiatingHeapOccupancyPercent=30"
+			</code></pre>
+
+	<h3>Traffic Stats</h3>
+	<ul>
+	<li>As of 1.8 Traffic Stats now requires InfluxDB 1.0 or greater.  For support of InfluxDb version &lt; 1.0 please use Traffic Stats 1.7.</li> 
+	<li>Traffic Stats now uses its config file to determine which influxdb urls to use. This allows a user to run a single instance of influxdb, an enterprise clustered solution, or a HA solution using influxdb-relay (https://github.com/influxdata/influxdb-relay).</li>
+
+	<li>It is recommended to use the traffic_stats.cfg file provided by the TS 1.8 RPM. This version of the config file contains the new InfluxUrls array and there were some unnecessary variables that were removed.</li>
+</ul>
+
+
+	  </div>
+	  <div class="relNotesContainer">
 		 Older, non-ASF releases can be found <a href="http://traffic-control-cdn.net/downloads/index.html">here</a>.
-      </p>
+	  </div>
     </div>
   </body>
 </html>