blob: 0a0439cad6a1e2fbc5037b5fae6fd53d3160e572 [file] [log] [blame]
Jan van Doorn8582b162016-10-20 13:13:23 -06001<!DOCTYPE html>
2<html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <meta http-equiv="X-UA-Compatible" content="IE=edge">
6 <meta name="viewport" content="width=device-width, initial-scale=1">
7 <title>Traffic Control</title>
8
9 <!-- Bootstrap -->
10 <link href="../css/bootstrap.min.css" rel="stylesheet">
11 <link href="../css/home.css" rel="stylesheet">
12
13 </head>
14 <body>
15 <div class="bkgdWrapper">
Jan van Doorn8582b162016-10-20 13:13:23 -060016 </div>
17 <div class="appWrapper">
18 <div class="appHeader">
Jan van Doorn5db41432016-12-22 08:57:04 -070019 <div class="applogo"></div>
20 <div class="navWrapper">
21 <ul>
22 <li class="selected"><b>DOWNLOADS</b></a></li>
23 <li class="navMain"><a href="https://github.com/apache/incubator-trafficcontrol">GIT</a></li>
24 <li class="navMain"><a href="../docs/latest/index.html">DOCS</a></li>
25 <li class="navMain"><a href="../ask/index.html">INFO</a></li>
26 <li class="navMain"><a href="../index.html">HOME</a></li></ul>
27 </ul>
28 </div>
Jan van Doorn8582b162016-10-20 13:13:23 -060029 </div>
Jan van Doorn8582b162016-10-20 13:13:23 -060030
Dan Kirkwood11de5ed2016-12-27 13:12:54 -070031 <div class="announce">
32 <p class="relNotesText">Apache Traffic Control-1.8.0-incubating has not yet been released!
33 The artifacts and release notes below are drafts for a proposed release of
34 Apache Traffic Control which has not yet occurred.</p>
35 </div>
36
37 <hr/>
38
39 <div class="relNotesContainer">
40 <h1>Apache Traffic Control 1.8.0-incubating Release Notes</h1>
41 The source code for Traffic Control 1.8.0 is available here:
42 <table><tbody padding="0 15px 0 15px">
43 <tr>
44 <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>
45 <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>
46 <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>
47 <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>
48 </tr>
49 </tbody></table>
50 </div>
51
52 <div class="relNotesContainer">
53 <h2>We're Incubating!</h2>
54 <p class="relNotesText">The Traffic Control project has been accepted into the Apache Incubator, and is
55 thus now Apache Traffic Control (incubating). Beyond simply moving the website,
56 this necessitated a number of changes, including switching to the Apache
57 License.
58 </p>
59
60 <p class="relNotesText">The 1.8.0-incubating release is Apache Traffic Control's
61 first release under the Apache incubator. This release contains numerous bug
62 fixes in addition to the following:
63 </p>
64
65 <h3>Traffic Router</h3>
66 <p class="relNotesText">Recommendations based on load testing of HTTPS support: </p>
67
68 <p class="relNotesText">It is generally recommended to use the G1 garbage collector for JVM
69 applications running on multi core machines. In addition to using the G1
70 garbage collector, the InitiatingHeapOccupancyPercent was lowered to run
71 garbage collection more frequently. This improved overall throughput for
72 Traffic Router and reduced 'Stop the World' garbage collection. </p>
73 <p class="relNotesText">The following example of /opt/tomcat/bin/setenv.sh that
74 has been tested on a multi core server running under HTTPS load test requests.
75 Note that setting the min and max heap settings in setenv.sh will override init
76 scripts in /etc/init.d/tomcat.</p>
77
78 <pre><code>
79#! /bin/sh
80export CATALINA_OPTS="$CATALINA_OPTS -server"
81export CATALINA_OPTS="$CATALINA_OPTS -Xms2g -Xmx2g"
82export CATALINA_OPTS="$CATALINA_OPTS -XX:+UseG1GC"
83export CATALINA_OPTS="$CATALINA_OPTS -XX:+UnlockExperimentalVMOptions"
84export CATALINA_OPTS="$CATALINA_OPTS -XX:InitiatingHeapOccupancyPercent=30"
85 </code></pre>
86
87 <h3>Traffic Stats</h3>
88 <ul>
89 <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>
90 <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>
91
92 <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>
93</ul>
94
95
96 </div>
97 <div class="relNotesContainer">
Jan van Doorn5db41432016-12-22 08:57:04 -070098 Older, non-ASF releases can be found <a href="http://traffic-control-cdn.net/downloads/index.html">here</a>.
Dan Kirkwood11de5ed2016-12-27 13:12:54 -070099 </div>
Jan van Doorn5db41432016-12-22 08:57:04 -0700100 </div>
Jan van Doorn8582b162016-10-20 13:13:23 -0600101 </body>
102</html>