next up previous contents
Next: Summary Up: Abstract Source-level Modeling Previous: Validation using Synthetic Applications   Contents

Subsections


Analysis Results


Table 3.1: Breakdown of the TCP connections found in five traces.
  Sequential Connections Concurrent Connections
Trace Count % GB % Count % GB %
Abilene-I 2,335,428 98.4 400.36 68.1 39,260 1.7 187.95 31.9
Leipzig-II 1,836,553 96.4 46.08 78.3 68,857 3.6 12.77 21.7
UNC 1 AM 529,381 98.5 90.35 82.4 8,345 1.6 19.34 17.6
UNC 1 PM 2,124,431 99.1 189.75 87.9 18,855 0.9 26.11 12.1
UNC 7:30 PM 808,857 98.7 102.04 76.8 10,542 1.3 30.83 23.2


The a-b-t model provides a novel way of describing the workload that applications create on TCP connections. Thanks to the efficiency of the analysis method presented in Section 3.3, we are able to process large packet header traces from several Internet links. This section presents our results. The analysis of the a-b-t connection vectors extracted from disparate traces reveals that certain distributional properties remain surprisingly homogeneous across links and times-of-day, while others change substantially. To the best of our knowledge, this is the first characterization of the behavior of sources driving TCP connections that considers the entire mix of application traffic rather than just one or a few applications.

Our results come from the five traces shown in Table 3.1. This table reports statistics that compare the number of connections that are determined to be sequential and those that are determined to be concurrent according to the analysis algorithm described in section 3.3. The main lesson from Table 3.1 is the very different view of aggregate source-level behavior that counting connections or counting bytes provide. In terms of the number of connections, concurrent connections appear insignificant, accounting for a mere 3.6% of the connections in the Leipzig-II trace. The picture is completely different, however, when we consider the total number of bytes carried in those concurrent connections. In this case, concurrent connections account for 21.7% of the Leipzig-II workload, clearly suggesting that concurrency is frequently associated with TCP connections that carry large amounts of data. Abilene-I provides an even more striking illustration, where 31.9% of the bytes were carried by concurrent connections, which only accounted for 1.7% of the total number of connections in the trace. This is not surprising given that one of the motivations for the use of data exchange concurrency is to increase throughput. Applications with a substantial amount of data to send can greatly benefit from higher throughput, and this justifies the increase in complexity that implementing concurrency requires. On the contrary, applications which generally transfer small amounts of data have less incentive to complicate their application protocols in order to support concurrency. In this fashion, interactive traffic (e.g., telnet, SSH, IRC), which tends to be associated with large numbers of small ADUs, does not usually profit from concurrency.

It is important to note that two types of TCP connections are not included in the statistics in Table 3.1: unidirectional connections and connections that carried no application data (i.e., no segment carried a payload). Unidirectional connections are those for which the trace contains only segments flowing in one direction (either data or ACK segments). There are two major causes for these types of connections3.10. First, attempts to contact a nonexistent or unavailable host may not receive any response segments. In this case, the trace would show only one or a few SYN segments flowing in one direction, and no communication of application data between the two hosts. Attempts to connect to firewalled hosts also result in similar unidirectional connections. Second, routing asymmetries, that are known to be frequent in the Internet backbone, may result in connections that traverse the measured link only in one direction. Among our traces, routing asymmetries are only possible for the Abilene-I trace. The UNC and Leipzig-II traces were collected from border links that carry all of the network traffic to and from these two institutions. Two other possible causes of unidirectionality, that we believe have a much smaller impact on the count of unidirectional connections, are the effects of trace boundaries, which can limit the tracing to only a few segments flowing in one direction; and misconfigurations, where incorrect or spoofed source addresses are used.

In the UNC and Leipzig-II traces, the number of unidirectional connections was relatively high. We found between 249,923 (Leipzig-II) and 1,963,511 (UNC 1 AM) unidirectional connections. Since these are traces without any routing asymmetry, it is clear that a substantial number of attempts to establish a TCP connection failed. For example, the UNC 1 AM trace has approximately one million more unidirectional connections than the other two UNC traces. These connections are likely related to some traffic anomaly, such as malicious network scanning3.11 and port scanning3.12. We have not studied this phenomenon further, but it is clearly important to filter out unidirectional connections to produce the results in Table 3.1. Otherwise, the percentages would be misleading, since this table is about connections that exchanged one or more ADUs during TCP application communication, and unidirectional connections did not engage in any kind of useful communication. Furthermore, unidirectional connections accounted for less than 0.15% of the bytes in the Leipzig-II and UNC traces.

The number of unidirectional connections in the Abilene-I trace was even larger: 2.6 millions in the Indianapolis to Cleveland direction and 22.3 millions in the opposite direction. Unlike the UNC and Leipzig-II traces, these connections accounted for a significant fraction of the bytes in each direction (1.63% and 14.42%). This fact, and a closer examination of the connections3.13, confirmed that routing asymmetry is present in the Abilene-I trace. Asymmetric connections can carry application data, and therefore should be considered in source-level studies. However, our concurrency test requires bidirectional measurements, so the type of breakdown shown in Table 3.1 cannot be performed with the unidirectional connections in the Abilene-I trace.

Our traces also include a significant number of connections that did not carry any application data (i.e., TCP connections that were established and terminated without transmitting a single data segment3.14). The number of connections without any data units varied between 75,522 in the UNC 1 AM trace and 400,853 in the Abilene-I trace. These ``dataless'' connections can again be due to network and port scanning, and also to failed attempts to establish TCP connections. These failures can come from attempts to contact endpoint port numbers on which no application is listening3.15. They can also come from aborted connections which are due to high loss rates, excessive round-trip times, or implementation problems. While the number of connections without application data is relatively high when compared with the number of connections in Table 3.1, these connections accounted for less than 0.11% of the bytes.

The rest of this section examines the distributional properties of the connection vectors derived from the traces. Connection vectors constitute a rich data set that can be explored along different axes. We have chosen to first compare traces collected at different sites. This helps us study variability in source-level behavior originating from differences in the populations of users and services. The second part of the section studies the three traces from UNC, analyzing the changes in source-level behavior due to the strong time-of-day effects that most Internet links exhibit. At the same time, this section illustrates the significant difference between TCP connections initiated from one side of the link (by clients inside UNC) and those initiated from the other side (by clients outside UNC that contacted servers inside UNC).

Note that the analysis below reports only on those connection vectors derived from TCP connections that were fully captured, i.e., those for which we believe that every segment was observed. In practice, we consider that a connection was fully captured when we observe both the start of the connection, marked by SYN and SYN-ACK segments, and the end of the connection, marked by FIN or RST segments. This does not necessarily mean that we observed every single segment of the connection3.16, but it does imply that the full source-level behavior of the connection is observed. Another reason to work only with fully captured connections is that the absence of connection establishment segments prevents us from identifying the connection initiator. It is often the case that the acceptor is listening on a reserved port number (\(<1024\)), which provides a way to address this difficulty. However, there is still a large fraction of the connections that use dynamic port numbers, and for which the initiator cannot be identified with certainty.

Variability Across Sites


Sequential Connections

Figure 3.16: Bodies of the \(A\) and \(B\) distributions for Abilene-I, Leipzig-II and UNC 1 PM.
\includegraphics[width=3in]{fig/abt-dists/unc-abi-leip.A_B.all.cdf.eps}
Figure 3.17: Tails of the \(A\) and \(B\) distributions for Abilene-I, Leipzig-II and UNC 1 PM.
\includegraphics[width=3in]{fig/abt-dists/unc-abi-leip.A_B.all.ccdf.eps}

We start our statistical analysis with the characterization of sequential connections from different sites. Figure 3.16 examines the distributions of the sizes of the ADUs for three traces: Abilene-I, Leipzig-II and UNC 1 PM. We use the letter ``\(A\)'' to refer to a distribution of a-type ADU sizes, and the letter ``\(B\)'' to refer to a distribution of b-type ADU sizes. The distributions in this figure only include samples from sequential connection vectors. We can distinguish two regions in this plot. For sizes of ADUs above 250 bytes, the shape of the \(A\) distributions is remarkably similar for all three traces, and quite different from the shapes of the \(B\) distributions. The vast majority of the ADUs sent from the connection initiator (92%) had a size below 1,000 bytes. This is consistent with the idea that a-type ADUs mostly carry small requests and control messages. Most a-type ADUs can therefore be carried in a single standard-size segment of 1960 bytes. The shape of the \(B\) distributions is also consistent with our intuition, although the Leipzig-II distribution is significantly lighter than the others. The \(B\) distributions are heavier than the \(A\) distributions. Between 38% and 27% of the b-type ADUs are larger than 1460 bytes, so they require two or more segments to be transported from the connection acceptor to the connection initiator. Only 8% to 12% of the b-type ADUs carried 10,000 bytes or more. We also note that for ADU sizes below 250 bytes, the plot shows less similarity among distributions of the same type. However, the logarithmic scale on the x-axis can be misleading. The large separation between the curves corresponds to only a few tens of bytes, and this has little impact on TCP performance. ADUs as small as 250 bytes can always be transported in a single (small) segment.

Figure 3.17 shows the tails of the \(A\) and \(B\) distributions using complementary cumulative distribution functions. It shows that even a-type ADUs can be quite large, and that the distributions are consistent with heavy-tailness (i.e., exhibits linear decay in the log-log CCDF). For this reason, Pareto or Lognormal models could provide a good foundation for analytical modeling of the distributions3.17. Interestingly, when we compare \(A\) and \(B\) distributions for the same trace, we find that \(B\) distributions are only slightly heavier than \(A\) distributions, especially for Abilene-I and Leipzig-II. This implies that there are protocols in which the initiator sends large ADUs to the acceptor. For example, web browsers are often used to upload files and email attachments for web-based email accounts. It is also interesting to note that Abilene-I's \(A\) distribution is heavier than UNC's and Leipzig-II's \(B\) distributions, and that UNC's \(B\) distribution is significantly heavier than Leipzig-II's \(B\) distribution. We believe this reflects the type of network measured and/or the population of users. Transferring large ADUs is more feasible in higher capacity networks, and this fosters the use of more data-intensive applications and more data-intensive uses of applications. Abilene is a well-provisioned backbone network that carries traffic between well-connected American universities, so it seems more likely to exhibit connections with larger ADUs.

Figure 3.18: Bodies of the \(A\) and \(B\) distributions with per-byte probabilities for Abilene-I, Leipzig-II and UNC 1 PM
\includegraphics[width=3in]{fig/abt-dists/unc-abi-leip.A_B.all.wcdf.eps}
Figure 3.19: Bodies of the \(E\) distributions for Abilene-I, Leipzig-II and UNC 1 PM.
\includegraphics[width=3in]{fig/abt-dists/unc-abi-leip.E.all.cdf.eps}

The small probabilities of finding large ADUs shown in Figures 3.16 and 3.17 can give the false impression that only small ADUs are important. Figure 3.18 corrects this view by plotting the probability that a byte is carried in an ADU of a given size. The figure shows that the majority of the bytes in the network were carried in large ADUs. For example, the probability that a byte was carried in an ADU of 100,000 bytes or more was as high as 0.9 for Abilene-I. This is in stark contrast to the corresponding Abilene-I distribution in Figure 3.16, where the probability of an ADU of 100,000 bytes or more is as low as 0.01 for the three traces.

The three networks show remarkably different distributions in Figure 3.18. This is in part due to the impact of sampling on this type of analysis, which is rather sensitive to the number of samples in the tail of the distribution. Adding a single very large sample can shift the entire distribution downward, since the probability of finding a byte in the rest of the ADU sizes decreases significantly. However, we can still make interesting observations about the bodies of these distributions based on their shapes (which are not affected by sampling artifacts). The distributions for UNC and Leipzig-II show two striking crossover points, the first one around 10 KB and the second one around 10 MB. The curves before the first crossover point show that the ADUs carrying 20% of the a-type bytes tended to be much smaller than those carrying 20% of the b-type bytes. The curves between the two crossover points show the opposite for larger ADUs. Here 50% of the a-type bytes are carried in ADUs that tended to be much larger than those ADUs carrying b-type bytes. The situation reverses again after the second crossover point. This shows that the \(A\) distributions are strongly bimodal: objects are either much smaller or much larger than the average b-type ADU. The same phenomenon is found in the Abilene-I distributions between 10 KB and 1 MB, but the difference in probability is much smaller here (and could be explained by tail sampling artifacts). In addition, there is a third crossover point in the Abilene-I distributions, which defines a new region between 15 and 250 MB.

Figure 3.20: Bodies of the \(E\) distributions with per-byte probabilities for Abilene-I, Leipzig-II and UNC 1 PM.
\includegraphics[width=3in]{fig/abt-dists/unc-abi-leip.E_bytes.all.cdf.eps}
Figure 3.21: Tails of the \(E\) distributions for Abilene-I, Leipzig-II and UNC 1 PM.
\includegraphics[width=3in]{fig/abt-dists/unc-abi-leip.E.all.ccdf.eps}

The distribution of the number of epochs \(E\) in each set of connection vectors is shown in Figure 3.19. Between 58% and 66% of the connection vectors have a single epoch. This includes a significant number of connections with a single half-epoch that come from FTP-DATA connections. Only 5% of the connections have more than 10 epochs. This does not mean that connections with a large number of epochs are unimportant. As Figure 3.20 shows, connections with a large number of epochs are responsible for a large fraction of the bytes. For example, connections with 10 epochs or more, which represent 3% of the connections, carried between 30% and 50% of the total bytes, depending on the trace.

Figure 3.20 shows that UNC's \(E\) distribution is substantially heavier than the ones for the other two traces when probability is computed over the total number of bytes. This suggests that the type of traffic in the UNC trace includes applications that make more use of multi-epoch connections. This also provides evidence that connections with moderate numbers of epochs can fit within the shorter duration (1 hour) of this trace. Otherwise, the Abilene-I trace (2 hours long) and the Leipzig-II traces(2 hours and 45 minutes long) would show heavier bodies. On the contrary, the tails of the \(E\) distributions shown in Figure 3.21 are significantly heavier for Abilene-I and Leipzig-II than for UNC. This perhaps suggests that 1-hour traces are too short to observe connections with thousands of epochs. The sharp change in the slope of the tail of UNC's \(E\) distribution could be explained by a common application that has a fixed limit on the number of epochs (perhaps 110). However, we know of no such application.

Figure 3.22: Average size \(a_j + b_j\) of the epochs in each connection vector as a function of the number of epochs, for UNC 1 PM, Abilene-I and Leipzig-II
\includegraphics[width=3in]{fig/abt-dists/unc-abi-leip.E_avg.all.eps}
Figure 3.23: Average of the median size of the ADUs in each connection vector as a function of the number of epochs, for UNC 1 PM.
\includegraphics[width=3in]{fig/abt-dists/unc04-aug3-1pm.E_median.all.eps}

One interesting modeling question is whether there is any dependency between the size of the ADU in one epoch and the number of epochs in the connection. If these are independent, it would be straightforward to generate synthetic connection vectors simply by first sampling a number of epochs \(E\) and then assigning ADU sizes by sampling from \(A\) and \(B\). Figure 3.22 shows that this independence does not exist. The average size of an epoch (i.e., \(a_j + b_j\)) increases very quickly for connections up to 30 epochs (notice the logarithmic y-axis). Connections with more epochs show high variability in the average size of their epochs. UNC and Abilene-I have quite similar averages that are much larger than those found in Leipzig-II (but note the sharp increase in average sizes for connections with 60 to 80 epochs).

Figure 3.24: Average of the median size of the ADUs in each connection vector as a function of the number of epochs, for Leipzig-II.
\includegraphics[width=3in]{fig/abt-dists/Leip-II.E_median.all.eps}
Figure 3.25: Average of the median size of the ADUs in each connection vector as a function of the number of epochs for Abilene-I.
\includegraphics[width=3in]{fig/abt-dists/IPLS-CLEV.E_median.all.eps}

Figures 3.24-3.26 provide further evidence against the independence of ADU sizes and number of epochs, and illustrate some remarkable complexity and site dependence. The plots illustrate how the number of epochs changes the size of the typical ADU, where "typical" is defined as the median of the sizes of the ADUs in each connection vector. Since a large number of connection vectors have the same number of epochs, we summarized these data by plotting the average of the median sizes vs. the number of epochs. Unlike the data in Figure 3.22, we analyzed median ADU sizes for a-type and b-type ADUs separately.

The two distributions for UNC trace in Figure 3.23 are completely different (the median sizes for b-type ADU are much larger). There are, however, some epochs sizes between 25 and 50 for which a-type data units can be as large as b-type data units. Leipzig-II shows a completely different structure in Figure 3.24, where a-type ADUs are shown to be as large as b-type ADUs, and both are larger than UNC's a-type ADUs, and smaller than UNC's b-type ADUs. Abilene-I's distribution of b-type ADUs is similar to that of UNC. On the contrary, Abilene-I's distribution of a-type ADUs shows extreme variability for 60 epochs or more, and this phenomenon is completely absent in UNC's distribution. The conclusion of these four plots is clear: it is quite unrealistic to generate synthetic connection vectors using a simple model that assumes independence between ADU sizes and number of epochs.

Figure 3.26: Bodies of the \(TA\) and \(TB\) distributions for Abilene-I, Leipzig-II and UNC 1 PM.
\includegraphics[width=3in]{fig/abt-dists/unc-abi-leip.TA_TB.all.cdf.eps}
Figure 3.27: Tails of the \(TA\) and \(TB\) distributions for Abilene-I, Leipzig-II and UNC 1 PM.
\includegraphics[width=3in]{fig/abt-dists/unc-abi-leip.TA_TB.all.ccdf.eps}

Figure 3.26 examines the distributions of quiet times between ADUs. Shown are the distributions \(TA\) for \(ta_j\) and \(TB\) for \(tb_j\). Note that the quiet times between the last ADU and connection termination, i.e., \(tb_j\) for the last epoch, are not included in \(TB\). The plot shows that, as the durations of the quiet times increase, the bodies of the \(TA\) distributions become increasingly lighter than those of the \(TB\) distributions. This is consistent with our understanding of client/server applications. Inter-epoch quiet times (\(TB\)) are usually user-driven, while intra-epoch quiet times (\(TA\)) are usually due to server processing delays. Server processing delays should generally be far shorter than user think times. For UNC and Abilene-I, most of the probability mass of \(TA\) is below 100 milliseconds, while that of \(TB\) is spread more widely. This is a strong indication that quiet times on the order of a few hundred milliseconds mostly reflect source-level quiet times. Observing \(TA\) being significantly lighter than \(TB\) is explained by the presence of user think times. Neither network delays nor the location of the monitor can provide an alternative explanation of the difference, since both factors have exactly the same impact on both distributions. The bodies Leipzig-II's \(TA\) and \(TB\) distributions are substantially heavier than the corresponding bodies of the other two traces. This could be due in part to network-level components of these distributions. Since Leipzig is in Europe, clients in the Leipzig-I trace suffer far longer round-trip times to US servers than clients found in the UNC and Abilene-I traces.

Unlike the bodies, the tails of the distributions shown in Figure 3.27 do not show the same difference between Leipzig-II and the other traces. This is consistent with the expectation that these longer quiet times are completely dominated by source-level behavior, and not by the impact of network location (i.e., Europe vs. U.S.A.). We observe that Abilene-I's and UNC's \(TB\) are both substantially heavier than Leipzig-II's \(TB\). Also, Leipzig-II's \(TA\) becomes lighter than Abilene-I's \(TA\) for quiet times above 11 seconds. Interestingly, we also find a similar shape for the two heaviest tails, Abilene-I's and UNC's \(TB\), which came from traces of very different durations (2 hours vs. 1 hour). This provides strong evidence that trace boundaries are not introducing artifacts in our characterization of inter-ADU quiet times, despite the hard upper limit that trace duration imposes on quiet time duration.

Figure 3.28: Distribution of the durations of the quiet times between the final ADU and connection termination.
\includegraphics[width=3in]{fig/abt-dists/unc-abi-leip.Extra_QT.all.cdf.eps}

Figure 3.28 shows the distribution of extra quiet times between the last ADU in a connection and TCP's connection termination. In the UNC and Abilene-I traces, 84% of the connections had extra quiet times below 1 second. The extra quiet time is actually zero for 83% of the cases, where the last segment of the last ADU had the FIN flag enabled. Leipzig-II showed an even higher percentage, 65%, of long quiet times after the last ADU. In all cases, we find large jumps in the probability for some values (e.g., 7, 11 and 15 seconds). Moreover, the tails are surprisingly long. Since most connections transfer small amounts of data, this high frequency of extra quiet times has an important impact on the lifetimes of TCP connections observed from real links, and play an important role in realistic traffic generation.

Concurrent Connections

Figure 3.29: Bodies of the \(A\) and \(B\) distributions for the concurrent connections in Abilene-I, Leipzig-II and UNC 1 PM.
\includegraphics[width=3in]{fig/abt-dists/unc-abi-leip.conc-full.A_B.all.cdf.eps}
Figure 3.30: Tails of the \(A\) and \(B\) distributions for the concurrent connections in Abilene-I, Leipzig-II and UNC 1 PM.
\includegraphics[width=3in]{fig/abt-dists/unc-abi-leip.conc-full.A_B.all.ccdf.eps}

Concurrent connections exhibit substantially different distributions. Figure 3.16 showed distributions of a-type ADU sizes with bodies that were clearly lighter than those of b-type ADU sizes. In contrast, Figure 3.29 shows that concurrent connections made use of larger a-type ADUs, and that the shapes of \(A\) and \(B\) are not consistent across sites. Abilene-I does not show any significant difference between \(A\) and \(B\), while Leipzig-II and UNC distributions do show a heavier \(B\). The tails of these distributions shown in Figure 3.30 are as heavy as those for sequential connections, with the same three distributions (Abilene-I's \(A\) and \(B\) and UNC's \(B\)) having much longer tails that the other three. This phenomenon is far more striking for concurrent connections.

Figure 3.31: Bodies of the \(TA\) and \(TB\) distributions for the concurrent connections in Abilene-I, Leipzig-II and UNC 1 PM.
\includegraphics[width=3in]{fig/abt-dists/unc-abi-leip.conc-full.TA_TB.all.cdf.eps}
Figure 3.32: Tails of the TA and TB distributions for the concurrent connections in Abilene-I, Leipzig-II and UNC 1 PM.
\includegraphics[width=3in]{fig/abt-dists/unc-abi-leip.conc-full.TA_TB.all.ccdf.eps}

The distributions of quiet time durations shown in Figure 3.31 reveal that concurrent connections do not exhibit the clear separation between \(TA\) and \(TB\) that was observed for the sequential connections in Figure 3.26. This is consistent with the motivations for using concurrent data exchanges given in section 3.2. Connections that use concurrency to improve throughput by keeping the pipeline full do so to reduce the impact of user delays and client processing, thereby making \(TB\) lighter. Connections used by applications that are naturally concurrent should not exhibit any systematic difference between \(TA\) and \(TB\) distributions. Note that the minimum quiet time was 500 milliseconds, which was the duration of our threshold separating ADUs in concurrent connections.

The \(TA\) distribution for concurrent connections is significantly heavier for UNC. This suggests the presence of a concurrent application at UNC that is rather asymmetric and that is not so common in Abilene-I and Leipzig-II. The tails of the \(TA\) and \(TB\) distributions for concurrent connections shown in Figure 3.32 exhibit similar shapes and lengths to those found for sequential connections.

Time-of-Day Variability and Workload Directionality

The previous analysis illustrated the variability of the a-b-t distributions when several sites are compared. It also pointed out a number of features that are consistent with the communication patterns that motivate our models. TCP workloads at the same site can also exhibit significant differences, as the set of dominant applications changes throughout the day. For example, we expect to find substantial traffic from applications that are used for study and work activities (e.g., e-business, research digital libraries) from 8 AM to 5 PM in the academic environment. In contrast, our guess is that traffic from gaming and other leisure time applications should be more common after 5 PM, mostly coming from the dorms where students live. This change in the mix of applications should have an impact on the source-level properties of the traffic.

Another important dimension of traffic variability that was not considered in the previous section was the fact that traffic may be asymmetric. For example, traffic created by UNC clients is representative of the network activity of a large population of users (30,000) that can access any kind of service on the Internet. On the contrary, traffic created by clients from outside UNC is representative of the type of services that an academic institution offers to the rest of the Internet. This dichotomy should have an impact on the source-level properties of the traffic, as traffic from UNC's connection initiators is expected to be driven by a rather different mix of applications than that of UNC's connection acceptors.

Figure 3.33: Bodies of the \(A\) distributions for UNC 1 AM, UNC 1 PM and UNC 7:30 PM.
\includegraphics[width=3in]{fig/abt-dists/unc04-aug3.A.src_dst.cdf.eps}
Figure 3.34: Bodies of the \(B\) distributions for UNC 1 AM, UNC 1 PM and UNC 7:30 PM.
\includegraphics[width=3in]{fig/abt-dists/unc04-aug3.B.src_dst.cdf.eps}

Figure 3.33 provides a first illustration of the impact of these two kinds of variability on source-level properties. The plot shows \(A\) distributions for sequential connections observed at UNC during three different intervals (1 to 2 AM, 1 to 2 PM, and 7:30 to 8:30 PM). The plots separate data from connections initiated by UNC clients (labeled ``UNC Initiated'') and data from connections initiated by clients outside UNC (labeled ``Inet Initiated''). The significant difference between \(A\) distributions for UNC initiators is in sharp contrast with the quite similar \(A\) distributions for UNC acceptors. This shows that time-of-day variation is substantial for connections initiated at UNC, but not for connections initiated outside UNC. This is consistent with the observation that UNC services, such as the large software repository ibiblio.org, are available 24 hours a day, and they serve clients from different parts of the world throughout the entire day. On the contrary, the activities of UNC clients are a function of campus activity and its evolution along a diurnal cycle. The distributions of b-type ADU sizes in Figure 3.34 also reflect this dichotomy. The \(B\) distributions on UNC initiated connections for the 1 AM and 1 PM traces form an envelope around the other distributions, while the three distributions for non-UNC initiators are remarkably similar.

Figure 3.35: Bodies of the \(TB\) distributions for UNC 1 AM, UNC 1 PM and UNC 7:30 PM.
\includegraphics[width=3in]{fig/abt-dists/unc04-aug3.TB.src_dst.cdf.eps}
Figure 3.36: Tails of the \(TB\) distributions for UNC 1 AM, UNC 1 PM and UNC 7:30 PM.
\includegraphics[width=3in]{fig/abt-dists/unc04-aug3.TB.src_dst.ccdf.eps}

Figure 3.35 serves to illustrate the impact of monitor location on the measurement of quiet times. UNC traces were collected on the border link between UNC and the rest of the Internet. This means that the monitoring occurred very close, in terms of delay, to UNC clients and UNC servers. Going back to the diagram in Figure 3.10, this means that connections initiated from UNC are seen from the first monitoring point (very close to the client), while those initiated from outside UNC are seen from the second monitoring point (very far from the client). As a consequence, \(TB\) distributions from UNC clients, which measure the time between the end of a response \(b_j\) and the beginning of a new request \(a_{j+1}\), are observed much closer to the clients, and are characterized very accurately. \(TB\) distributions from non-UNC clients are measured much further from the client, so they tend to overestimate true quiet times. As discussed before, this type of inaccuracy is a function of round trip time. This is clearly shown in Figure 3.35, where \(TB\) distributions from UNC initiators are much lighter than those for non-UNC initiators for quiet times below 1 second. As quiet times get larger and larger, the inaccuracy due to the placement of the monitoring point becomes less and less significant. The crossing points of the distributions between 500 milliseconds and 1 second suggest that the characteristics of applications and user behavior start to dominate measured quiet times above a few hundred milliseconds.

Figure 3.37: Bodies of the \(TA\) distributions for UNC 1 AM, UNC 1 PM and UNC 7:30 PM.
\includegraphics[width=3in]{fig/abt-dists/unc04-aug3.TA.src_dst.cdf.eps}
Figure 3.38: Tails of the \(TA\) distributions for UNC 1 AM, UNC 1 PM and UNC 7:30 PM.
\includegraphics[width=3in]{fig/abt-dists/unc04-aug3.TA.src_dst.ccdf.eps}

The same observations regarding the impact of the monitoring point also holds for the \(TA\) distributions in Figures 3.37 and 3.38. Here the effect of the monitoring point is reversed: \(ta_j\) is observed far from the client for UNC initiated connections, and close to the client for non-UNC initiated connections).

Time-of-day effects are less clear in Figure 3.35. If we look at quiet times above 1 second (the relevant ones), we can see that the distributions for 1 PM and 7:30 PM are quite similar for both directions, while those for 1 AM are lighter and not consistent with each other (especially for UNC acceptors). This is also true for the tails of these distributions shown in Figure 3.36 for quiet times below 500 seconds. The tails of the \(TA\) distributions in Figure 3.38 do not show any consistent pattern (i.e., no grouping based on time-of-day or directionality). They are also somewhat lighter than the \(TB\) distributions.


next up previous contents
Next: Summary Up: Abstract Source-level Modeling Previous: Validation using Synthetic Applications   Contents

Doctoral Dissertation: Generation and Validation of Empirically-Derived TCP Application Workloads
© 2006 Félix Hernández-Campos