国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

COMPSCI 315代做、代寫(xiě)Python/Java語(yǔ)言編程
COMPSCI 315代做、代寫(xiě)Python/Java語(yǔ)言編程

時(shí)間:2024-09-26  來(lái)源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



Web Server Workload Characterization
Assignment 3 and 4, COMPSCI 315
Due: Refer to the deadline on Canvas; Submission via Canvas
1 Introduction
Internet traffic measurement involves collecting network data that can be analyzed for several purposes such
as traffic modeling, designing better network protocols, and traffic management. The growth in popularity
of Web in the 19**s resulted in researchers trying to characterize Web traffic. These research works have
utilized Web server logs to understand the workload characteristics of Web servers. The results of the
research has led to improving performance of Web applications, designing better caching and load balancing
techniques, and providing better user experience to clients, among other things [1, 3–5].
2 Web Server Access Logs
In this assignment, you will analyze one of two university Web server access logs [2]:
1. A campus-wide Web server at the University of Saskatchewan (UofS_access_log).
2. A department-level Web server at the University of Calgary (UofC_access_log).
The server access log contains information about all requests made to the server and the corresponding
server responses. The server log is in the fixed text-based Common Log Format and has the following syntax:
hostname - - [dd/mm/yyyy:hh:mm:ss time_zone] object response_code transfer_size
The hostname is the resolved name or IP address of the client making a request for an object stored on
the Web server. The following fields (- -) are usually empty, but may contain user-identifier information
such as username. The next field indicates the day and time the request was made along with the time zone.
The URL requested is noted in the object field. The response_code field indicates the HTTP response
code returned by the server. The transfer_size field records the bytes transferred by the server.
For example, the following is a line from the UofS_access_log:
imhotep.usask.ca - - [15/Sep/1995:16:02:09 -0600] "GET /changes.html HTTP/1.0" 200 1254
This line represents a request made by host imhotep.usask.ca on September 15, 1995 at 4:02:09 p.m.
The time zone is central time (GMT-0600). The host requested the HTML file called changes.html using
HTTP version 1.0. This request was successfully completed by the server as shown by the status code 200.
The server transferred 1254 bytes to the host imhotep.usask.ca.
Note the following about the datasets:
• UofS_access_log: This trace contains seven month’s worth of all HTTP requests to the university
Web server. The logs fully preserve the originating host and HTTP request. A local client is one
containing usask.ca in the hostname or an IP address with 128.233.X.X. All others are considered
remote clients. Timestamps have 1 second resolution.
1• UofC_access_log: This trace contains approximately one year’s worth of all HTTP requests to the
University of Calgary’s Department of Computer Science Web server. The hosts making requests to
the server have had their addresses removed to preserve privacy. Hosts are identified as either local
or remote where local is a host from the University of Calgary, and remote is a host from outside of
the University of Calgary domain. Paths have been removed. Files were numbered from 1 for the
first file encountered in the trace. Files retain the original file extension, so that the type of file can
be determined. Paths of the filenames have been removed. Modified filenames consist of two parts:
num.type, where num is a unique integer identifier, and type is the extension of the requested file.
Timestamps have 1 second resolution.
3 Web Server Workload Analysis
Choose one dataset you like and answer all questions:
1. Based on your learning of Internet measurements in this course answer the following questions:
(a) What measurement mechanism was used for the collection of the Web server logs? Active, Passive,
or both.
(b) What type of network were the measurements taken from? Edge network, core network, or both.
(c) What type of analysis techniques did you apply on the dataset to get the answers? Online, offline,
or both.
(d) Is analyzing server logs the only way to characterize the workload of a Web server? Why?
2. How many requests are made per day on average?
3. How many bytes were transferred during the entire log duration expressed in Megabytes (MB)?
4. What is the average number of bytes transferred per day expressed in MB per day?
5. Produce a breakdown of the server response codes expressed in percentage of the total number of
requests. Group the status code as follows: Successful, Not Modified, Found, Unsuccessful. A successful
response (status code: 200) means that the server received a request for a valid object (for which the
client has the necessary access privilege), the object was found, and returned successfully to the client.
A not modified response (status code: 304) means that the client already has a copy of the requested
object in its cache, wants to verify if the object is up-to-date, and the client is informed that the
object has not been modified at the server. A found response (status code: 302) results when the
requested object is known to be stored in a different location than the URL requested by the client.
The server responds with the new URL in this situation. A unsuccessful response (status code: 4XX
and 5XX) happens when the requested object does not exist on the server, the client did not have
access permission, or there was a server-side error.
6. How many requests are made by local clients and remote clients, respectively? Report your answer as
a percentage of total requests.
7. How many bytes are transferred by local clients and remote clients, respectively? Report your answer
as a percentage of total bytes transferred.
8. Produce a breakdown of requests by file type category. The file categories are as follows: Video, Sound,
Dynamic, Formatted, HTML, Images, Others. Report your answer as a percentage of total requests.
The file categories by file extensions are described in Table 1.
9. Using Table 1, produce a breakdown of bytes transferred by each file category. Report your answer as
a percentage of total bytes transferred.
10. Using Table 1, calculate the average transfer sizes (in bytes) of each file category.
2Table 1: File categories
Category File extension
HTML html, htm, shtml, map
Images gif, jpeg, jpg, xbm, bmp, rgb, xpm
Sound au, snd, wav, mid, midi, lha, aif, aiff
Video mov, movie, avi, qt, mpeg, mpg
Formatted ps, eps, doc, dvi, txt
Dynamic cgi, pl, cgi-bin
Others Everything else
11. Identify all unique object requests in the log and sort them based on frequency. Next, identify all the
objects that were requested only once in the log. What percentage of unique objects are accessed only
once in the log? What percentage of bytes are accessed only once in the log?
12. Produce a Cumulative Distribution Function (CDF) plot of the transfer sizes of all distinct objects.
The x-axis should be in log-10 scale.
13. Produce at least one plot to show the percentage of total requests per hour of the day, the percentage
of total requests per day of the week, or percentage of total requests per month of the year.
14. Produce a CDF plot of the inter-reference times of objects that are requested more than once. The
x-axis should be in log-10 scale.
For questions 6 onwards, your analysis should be based on successful requests only. Report
your results to 2 decimal places. Some requests in the log may be malformed. It is safe to
ignore these requests in your analysis. Please check that these requests account for a negligible
fraction of the total requests. Briefly comment on your results (Explain the results and discuss
their implications).
4 Submission
Complete the attached file with your answers. Convert this file to PDF format. Rename it
to your username.pdf. Submit the file to Canvas. Submit answers to questions **7 as part of
Assignment 3. Submit answers to questions 8-14 as part of Assignment 4.
A code template will be provided at a later date. For added challenge, you are encouraged to write the
parser and analysis scripts from scratch using a programming language of your choice. You are free to use
online resources (e.g., online code, tools) as long as you provide appropriate attribution. You do not need
to submit the code. You should keep the code, in case we wish to see it. You are encouraged to discuss the
assignment with each other, however, the code and the produced results must be done individually.
Questions regarding this assignment and code template should be directed to the course tutors.
5 Grading Scheme
Each question is worth 10 points. Assignment 3 is worth 70 points. Assignment 4 is worth 70 points. For
each question, you will receive full points for the correct answer. You will receive 50% points for an answer,
which is close to the correct answer. You will receive zero points for an answer that is far off from the correct
answer. Each answer should have a brief explanation to receive full marks.
References
[1] Martin Arlitt and Tai Jin, A Workload Characterization Study of the 1998 World Cup Web Site, IEEE
Network 14 (2000), no. 3.
3[2] Martin Arlitt and Carey Williamson, Internet Web Servers: Workload Characterization and Performance
Implications, IEEE/ACM Trans. Netw. 5 (1997), no. 5, 631–645.
[3] Leeann Bent, Michael Rabinovich, Geoffrey M. Voelker, and Zhen Xiao, Characterization of a Large Web
Site Population with Implications for Content Delivery, WWW 9 (2006), no. 4.
[4] Venkata Padmanabhan and Lili Qiu, The Content and Access Dynamics of a Busy Web Site: Findings
and Implications, Proc. ACM SIGCOMM, 2000.
[5] Weisong Shi, Y Wright, Eli Collins, and Vijay Karamcheti, Workload Characterization of a Personalized
Web Site and its Implications for Dynamic Content Caching, Proc. WCW, 2002.


請(qǐng)加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp








 

掃一掃在手機(jī)打開(kāi)當(dāng)前頁(yè)
  • 上一篇:代寫(xiě)AI6012程序、代做Java/c++編程
  • 下一篇:INFT 2064代做、代寫(xiě)C++, Java設(shè)計(jì)編程
  • 無(wú)相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢(qián)_專(zhuān)業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢(qián)_專(zhuān)業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路流場(chǎng)仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路
    流體CFD仿真分析_代做咨詢(xún)服務(wù)_Fluent 仿真技術(shù)服務(wù)
    流體CFD仿真分析_代做咨詢(xún)服務(wù)_Fluent 仿真
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢(xún)外包_剛強(qiáng)度疲勞振動(dòng)
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢(xún)外包_剛強(qiáng)度疲
    流體cfd仿真分析服務(wù) 7類(lèi)仿真分析代做服務(wù)40個(gè)行業(yè)
    流體cfd仿真分析服務(wù) 7類(lèi)仿真分析代做服務(wù)4
    超全面的拼多多電商運(yùn)營(yíng)技巧,多多開(kāi)團(tuán)助手,多多出評(píng)軟件徽y1698861
    超全面的拼多多電商運(yùn)營(yíng)技巧,多多開(kāi)團(tuán)助手
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢(xún)服務(wù)平臺(tái)
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢(xún)服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗(yàn)證碼 豆包網(wǎng)頁(yè)版入口 破天一劍 目錄網(wǎng) 排行網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號(hào)-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    亚洲爆乳无码专区| 秋霞久久久久久一区二区| 日韩a∨精品日韩在线观看| 国产日韩在线免费| 久久精视频免费在线久久完整在线看| 亚洲a在线观看| 99国产在线观看| 一区二区三区观看| 国产一区二区视频免费在线观看| 久久久久久亚洲精品| 亚洲一区二区三区在线视频| 免费看污污视频| 久久久精品免费视频| 日本电影亚洲天堂| 国产xxx69麻豆国语对白| 亚洲一二三区精品| 国产伦视频一区二区三区| 久色乳综合思思在线视频| 欧美精彩一区二区三区| 国产成人精品午夜| 人人爽久久涩噜噜噜网站| 116极品美女午夜一级| 亚洲a中文字幕| 国产精品69精品一区二区三区| 久久久久久国产精品三级玉女聊斋| 国产视频99| 国产精品国产精品国产专区蜜臀ah| 欧美国产日韩激情| 国产精品观看在线亚洲人成网| 内射国产内射夫妻免费频道| 国产精品免费久久久| 国产肉体ⅹxxx137大胆| 最新国产精品久久| 91久久精品国产91性色| 日本一区二区三区免费看| 久久久久久久97| 欧美激情国产精品日韩| 国产精品国模在线| 国产精品一二三在线| 亚洲一区久久久| 国产黄页在线观看| 日韩一级免费在线观看| 久久精视频免费在线久久完整在线看| 国内精品视频在线| 欧美激情图片区| 91av国产在线| 欧美一区二区综合| 欧美精品在线视频观看| 99精品在线直播| 日本国产精品视频| 国产精品国产三级国产aⅴ9色 | 国产精品欧美一区二区三区奶水| 免费观看国产精品视频| 中文字幕在线亚洲精品| 国产精品a久久久久久| 久久精品.com| 国产综合在线看| 一区二区三区欧美成人| 国产成人精品电影久久久| 欧美日韩黄色一级片| 久久99久久亚洲国产| 国产精品av在线播放| 日韩免费在线看| 欧美成人精品一区二区| 国产精彩精品视频| 欧美激情一区二区三区在线视频| 久久久久久97| 久久精品国产69国产精品亚洲| 成人精品一区二区三区电影黑人 | av免费观看网| 日本不卡在线播放| 欧美成人午夜剧场免费观看| 久久人妻无码一区二区| 国产一区在线播放| 日韩欧美亚洲日产国产| 一区高清视频| 国产精品人人做人人爽| 91久久久国产精品| 蜜桃传媒一区二区三区| 色欲av无码一区二区人妻| 国产精品久久久久久亚洲影视| 久久综合九色综合网站| 国产三级精品在线不卡| 青青视频免费在线| 亚洲精品在线视频观看 | 国产精品视频最多的网站| 97免费在线视频| 免费一级特黄特色毛片久久看| 日韩wuma| 亚洲精品欧美精品| 九九精品视频在线| 国产精品视频永久免费播放| 久久久国产精品一区二区三区| 国产天堂视频在线观看| 欧美在线一区视频| 欧美一级特黄aaaaaa在线看片| 久久99久久99精品中文字幕 | 久久久久久91| 不卡av电影院| 国产精品丝袜高跟| 久久狠狠久久综合桃花| 97精品免费视频| 国产美女精品在线观看| 蜜桃日韩视频| 黄色一级视频在线播放| 青青视频免费在线| 日韩五码在线观看| 日韩最新中文字幕| 亚洲精品一区二区三区四区五区| 欧美久久精品午夜青青大伊人| 久久久久久久久久福利| 久久久久久a亚洲欧洲aⅴ| 成人av在线不卡| 国产女人18毛片| 国产一区二区自拍| 欧美大陆一区二区| 日韩欧美国产综合在线| 天天成人综合网| 亚洲一区二区三区午夜| 一本色道久久88亚洲精品综合| 欧美乱大交xxxxx| 精品久久久久久一区二区里番 | 成人a级免费视频| 国产女主播av| 成人av中文| 99精品一区二区三区的区别| 国产精品一香蕉国产线看观看| 国产情侣第一页| 国产日韩精品一区二区| 国内自拍中文字幕| 美日韩免费视频| 国产一区二区三区精彩视频| 国产中文字幕免费观看| 国产亚洲综合视频| 国产一区二区不卡视频| 国产免费一区二区三区视频| 国产精品香蕉av| 91精品国产综合久久香蕉的用户体验 | 俺去啦;欧美日韩| zzijzzij亚洲日本成熟少妇| 国产精品网红福利| 久久香蕉国产线看观看网| 精品久久中出| 亚洲一区二区三区在线视频| 欧美一级片在线播放| 热re99久久精品国产66热| 欧美 日韩 国产 激情| 国产一级大片免费看| 99久久精品免费看国产四区 | www亚洲国产| 国产极品粉嫩福利姬萌白酱| 久久久国产精品亚洲一区| 精品免费二区三区三区高中清不卡| 国产aaa精品| 色中色综合成人| 内射国产内射夫妻免费频道| 国产精品自产拍在线观看| 91九色精品视频| 日韩中文字在线| 美女国内精品自产拍在线播放| 中文字幕日本最新乱码视频| 天天摸天天碰天天添| 极品美女扒开粉嫩小泬| 国产精品一区视频| 国产h视频在线播放| 国产精品久久久久9999小说| 一级黄色免费在线观看| 日本精品久久久久中文字幕| 欧美极品欧美精品欧美| 北条麻妃av高潮尖叫在线观看| 日韩中文在线视频| 欧美激情国产日韩精品一区18 | 国产精品一区二区三区久久久| 国产不卡av在线| 国产精品人人做人人爽| 亚洲成色www久久网站| 好吊色欧美一区二区三区四区| 99久re热视频这里只有精品6| 久久久国产一区| 日韩一级片免费视频| 国产在线青青草| 久久成人资源| 九九综合九九综合| 日韩网址在线观看| dy888夜精品国产专区| 国产精品免费一区二区三区四区 | 日本一区二区三区四区视频 | 68精品国产免费久久久久久婷婷| 国产精品日韩在线一区| 欧美一级日本a级v片| 国产精品一区二区免费在线观看| 精品国产欧美成人夜夜嗨| 久久久久久国产精品| 黄色av网址在线播放| 国产成a人亚洲精v品在线观看| 欧美精品亚州精品| 日韩免费中文字幕| 久久久在线免费观看| 制服诱惑一区| 免费99视频|