Jan van Doorn | 8582b16 | 2016-10-20 13:13:23 -0600 | [diff] [blame] | 1 | <!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 Doorn | 8582b16 | 2016-10-20 13:13:23 -0600 | [diff] [blame] | 16 | </div> |
| 17 | <div class="appWrapper"> |
| 18 | <div class="appHeader"> |
Jan van Doorn | 5db4143 | 2016-12-22 08:57:04 -0700 | [diff] [blame] | 19 | <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 Doorn | 8582b16 | 2016-10-20 13:13:23 -0600 | [diff] [blame] | 29 | </div> |
Jan van Doorn | 8582b16 | 2016-10-20 13:13:23 -0600 | [diff] [blame] | 30 | |
Dan Kirkwood | 11de5ed | 2016-12-27 13:12:54 -0700 | [diff] [blame^] | 31 | <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 |
| 80 | export CATALINA_OPTS="$CATALINA_OPTS -server" |
| 81 | export CATALINA_OPTS="$CATALINA_OPTS -Xms2g -Xmx2g" |
| 82 | export CATALINA_OPTS="$CATALINA_OPTS -XX:+UseG1GC" |
| 83 | export CATALINA_OPTS="$CATALINA_OPTS -XX:+UnlockExperimentalVMOptions" |
| 84 | export 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 < 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 Doorn | 5db4143 | 2016-12-22 08:57:04 -0700 | [diff] [blame] | 98 | Older, non-ASF releases can be found <a href="http://traffic-control-cdn.net/downloads/index.html">here</a>. |
Dan Kirkwood | 11de5ed | 2016-12-27 13:12:54 -0700 | [diff] [blame^] | 99 | </div> |
Jan van Doorn | 5db4143 | 2016-12-22 08:57:04 -0700 | [diff] [blame] | 100 | </div> |
Jan van Doorn | 8582b16 | 2016-10-20 13:13:23 -0600 | [diff] [blame] | 101 | </body> |
| 102 | </html> |