99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代寫EMS5730、代做Python設計程序

時間:2024-02-14  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



EMS5**0 Spring 2024 Homework #0
Release date: Jan 10, 2024
Due date: Jan 21, 2024 (Sunday) 23:59 pm
(Note: The course add-drop period ends at 5:30 pm on Jan 22.)
No late homework will be accepted!
Every Student MUST include the following statement, together with his/her signature in the
submitted homework.
I declare that the assignment submitted on the Elearning system is
original except for source material explicitly acknowledged, and that the
same or related material has not been previously submitted for another
course. I also acknowledge that I am aware of University policy and
regulations on honesty in academic work, and of the disciplinary
guidelines and procedures applicable to breaches of such policy and
regulations, as contained in the website
Submission notice:
● Submit your homework via the elearning system
General homework policies:
A student may discuss the problems with others. However, the work a student turns in must
be created COMPLETELY by oneself ALONE. A student may not share ANY written work or
pictures, nor may one copy answers from any source other than one’s own brain.
Each student MUST LIST on the homework paper the name of every person he/she has
discussed or worked with. If the answer includes content from any other source, the
student MUST STATE THE SOURCE. Failure to do so is cheating and will result in
sanctions. Copying answers from someone else is cheating even if one lists their name(s) on
the homework.
If there is information you need to solve a problem but the information is not stated in the
problem, try to find the data somewhere. If you cannot find it, state what data you need,
make a reasonable estimate of its value and justify any assumptions you make. You will be
graded not only on whether your answer is correct, but also on whether you have done an
intelligent analysis.
Q0 [10 marks]: Secure Virtual Machines Setup on the Cloud
In this task, you are required to set up virtual machines (VMs) on a cloud computing
platform. While you are free to choose any cloud platform, Google Cloud is recommended.
References [1] and [2] provide the tutorial for Google Cloud and Amazon AWS, respectively.
The default network settings in each cloud platform are insecure. Your VM can be hacked
by external users, resulting in resource overuse which may charge your credit card a
big bill of up to $5,000 USD. To protect your VMs from being hacked and prevent any
financial losses, you should set up secure network configurations for all your VMs.
In this part, you need to set up a whitelist for your VMs. You can choose one of the options
from the following choices to set up your whitelist: 1. only the IP corresponding to your
current device can access your VMs via SSH. Traffic from other sources should be blocked.
2. only users in the CUHK network can access your VMs via SSH. Traffic outside CUHK
should be blocked. You can connect to CUHK VPN to ensure you are in the CUHK network
(IP Range: 137.189.0.0/16). Reference [3] provides the CUHK VPN setup information from
ITSC.
a. [10 marks] Secure Virtual Machine Setup
Reference [4] and [5] are the user guides for the network security configuration of
AWS and Google Cloud, respectively. You can go through the document with respect
to the cloud platform you use. Then follow the listed steps to configure your VM’s
network:
i. locate or create the security group/ firewall of your VM;
ii. remove all rules of inbound/ ingress and outbound/ egress, except for the
default rule(s) responsible for internal access within the cloud platform;
iii. add a new rule to the inbound/ ingress, with the SSH port(s) of VMs (default:
22) and source specified, e.g., ‘137.189.0.0/16’ for CUHK users only;
iv. (Optional) more ports may be further permitted based on your needs (e.g.,
when completing Q1 below).
Q1 [** marks + 20 bonus marks]: Hadoop Cluster Setup
Hadoop is an open-source software framework for distributed storage and processing. In this
problem, you are required to set up a Hadoop cluster using the VMs you instantiated in Q0.
In order to set up a Hadoop cluster with multiple virtual machines (VM), you can set up a
single-node Hadoop cluster for each VM first [6]. Then modify the configuration file in each
node to set up a Hadoop cluster with multiple nodes. References [7], [9], [10], [11] provide
the setup instructions for a Hadoop cluster. Some important notes/ tips on instantiating VMs
are given at the end of this section.
a. [20 marks] Single-node Hadoop Setup
In this part, you need to set up a single-node Hadoop cluster in a pseudo-distributed
mode and run the Terasort example on your Hadoop cluster.
i. Set up a single-node Hadoop cluster (recommended Hadoop version: 2.9.x,
all versions available in [16]). Attach the screenshot of http://localhost:50070
(or http://:50070 if opened in the browser of your local machine) to
verify that your installation is successful.
ii. After installing a single-node Hadoop cluster, you need to run the Terasort
example [8] on it. You need to record all your key steps, including your
commands and output. The following commands may be useful:
$ ./bin/hadoop jar \
./share/hadoop/mapreduce/hadoop-mapreduce-examples-2.9.2.jar \
teragen 120000 terasort/input
//generate the data for sorting
$ ./bin/hadoop jar \
./share/hadoop/mapreduce/hadoop-mapreduce-examples-2.9.2.jar \
terasort terasort/input terasort/output
//terasort the generated data
$ ./bin/hadoop jar \
./share/hadoop/mapreduce/hadoop-mapreduce-examples-2.9.2.jar \
teravalidate terasort/output terasort/check
//validate the output is sorted
Notes: To monitor the Hadoop service via Hadoop NameNode WebUI (http://ip>:50070) on your local browser, based on steps in Q0, you may further allow traffic
from CUHK network to access port 50070 of VMs.
b. [40 marks] Multi-node Hadoop Cluster Setup
After the setup of a single-node Hadoop cluster in each VM, you can modify the
configuration files in each node to set up the multi-node Hadoop cluster.
i. Install and set up a multi-node Hadoop cluster with 4 VMs (1 Master and 3
Slaves). Use the ‘jps’ command to verify all the processes are running.
ii. In this part, you need to use the ‘teragen’ command to generate 2 different
datasets to serve as the input for the Terasort program. You should use the
following two rules to determine the size of the two datasets of your own:
■ Size of dataset 1: (Your student ID % 3 + 1) GB
■ Size of dataset 2: (Your student ID % 20 + 10) GB
Then, run the Terasort code again for these two different datasets and
compare their running time.
Hints: Keep an image for your Hadoop cluster. You would need to use the Hadoop
cluster again for subsequent homework assignments.
Notes:
1. You may need to add each VM to the whitelist of your security group/ firewall
and further allow traffic towards more ports needed by Hadoop/YARN
services (reference [17] [18]).
2. For step i, the resulting cluster should consist of 1 namenode and 4
datanodes. More precisely, 1 namenode and 1 datanode would be running on
the master machine, and each slave machine runs one datanode.
3. Please ensure that after the cluster setup, the number of “Live Nodes” shown
on Hadoop NameNode WebUI (port 50070) is 4.
c. [30 marks] Running Python Code on Hadoop
Hadoop streaming is a utility that comes with the Hadoop distribution. This utility
allows you to create and run MapReduce jobs with any executable or script as the
mapper and/or the reducer. In this part, you need to run the Python wordcount script
to handle the Shakespeare dataset [12] via Hadoop streaming.
i. Reference [13] introduces the method to run a Python wordcount script via
Hadoop streaming. You can also download the script from the reference [14].
ii. Run the Python wordcount script and record the running time. The following
command may be useful:
$ ./bin/hadoop jar \
./share/hadoop/tools/lib/hadoop-streaming-2.9.2.jar \
-file mapper.py -mapper mapper.py \
-file reducer.py -reducer reducer.py \
-input input/* \
-output output
//submit a Python program via Hadoop streaming
d. [Bonus 20 marks] Compiling the Java WordCount program for MapReduce
The Hadoop framework is written in Java. You can easily compile and submit a Java
MapReduce job. In this part, you need to compile and run your own Java wordcount
program to process the Shakespeare dataset [12].
i. In order to compile the Java MapReduce program, you may need to use
“hadoop classpath” command to fetch the list of all Hadoop jars. Or you can
simply copy all dependency jars in a directory and use them for compilation.
Reference [15] introduces the method to compile and run a Java wordcount
program in the Hadoop cluster. You can also download the Java wordcount
program from reference [14].
ii. Run the Java wordcount program and compare the running time with part c.
Part (d) is a bonus question for IERG 4300 but required for ESTR 4300.
IMPORTANT NOTES:
1. Since AWS will not provide free credits anymore, we recommend you to use Google
Cloud (which offers a **-day, $300 free trial) for this homework.
2. If you use Putty for SSH client, please download from the website
https://www.putty.org/ and avoid using the default private key. Failure to do so will
subject your AWS account/ Hadoop cluster to hijacking.
3. Launching instances with Ubuntu (version >= 18.04 LTS) is recommended. Hadoop
version 2.9.x is recommended. Older versions of Hadoop may have vulnerabilities
that can be exploited by hackers to launch DoS attacks.
4. (AWS) For each VM, you are recommended to use the t2.large instance type with
100GB hard disk, which consists of 2 CPU cores and 8GB RAM.
5. (Google) For each VM, you are recommended to use the n2-standard-2 instance
type with 100GB hard disk, which consists of 2 CPU cores and 8GB RAM.
6. When following the given references, you may need to modify the commands
according to your own environment, e.g., file location, etc.
7. After installing a single-node Hadoop, you can save the system image and launch
multiple copies of the VM with that image. This can simplify your process of installing
the single-node Hadoop cluster on each VM.
8. Keep an image for your Hadoop cluster. You will need to use the Hadoop cluster
again for subsequent homework assignments.
9. Always refer to the logs for debugging single/multi-node Hadoop setup, which
contains more details than CLI outputs.
10. Please shut down (not to terminate) your VMs when you are not using them. This can
save you some credits and avoid being attacked when your VMs are idle.
Submission Requirements:
1. Include all the key steps/ commands, your cluster configuration details, source codes
of your programs, your compiling steps (if any), etc., together with screenshots, into a
SINGLE PDF report. Your report should also include the signed declaration (the first
page of this homework file).
2. Package all the source codes (as you included in step 1) into a zip file individually.
3. You should submit two individual files: your homework report (in PDF format) and a
zip file packaged all the codes of your homework.
4. Please submit your homework report and code zip file through the Blackboard
system. No email submission is allowed.
如有需要,請加QQ:99515681 或WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:代做CSCI3280、Python設計編程代寫
  • 下一篇:代寫CS 476/676 程序
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                国产午夜亚洲精品午夜鲁丝片| 亚洲视频 欧洲视频| 一级做a爱片久久| 在线观看亚洲a| 亚洲一区二区视频在线观看| 欧美午夜寂寞影院| 五月天激情综合网| 精品国产凹凸成av人导航| 国产精品18久久久久| 国产精品久久精品日日| 欧美色倩网站大全免费| 国产麻豆一精品一av一免费| 亚洲精品日韩一| 精品第一国产综合精品aⅴ| 99精品视频在线免费观看| 亚洲一区电影777| 欧美精品一区二区三区高清aⅴ| 成人午夜私人影院| 日韩成人精品在线观看| 国产精品久久久久永久免费观看 | 成人午夜av在线| 亚洲亚洲人成综合网络| 国产色爱av资源综合区| 5858s免费视频成人| 91麻豆国产福利在线观看| 久久电影网电视剧免费观看| 亚洲乱码国产乱码精品精98午夜| 久久综合狠狠综合久久综合88| 色狠狠综合天天综合综合| 国产美女精品人人做人人爽| 日本成人在线一区| 亚洲另类在线视频| 国产精品久久久久久久第一福利| 欧美不卡一区二区| 美日韩一区二区| 亚洲精品国产高清久久伦理二区| 一区二区三区资源| 欧美大片拔萝卜| 久久久久久久免费视频了| 欧美国产日韩一二三区| 中文字幕在线观看不卡| 午夜精品影院在线观看| 国产毛片精品视频| 欧美日韩一区久久| 国产欧美视频一区二区三区| 亚洲免费高清视频在线| 精品一区二区三区欧美| 色婷婷av一区二区三区gif| 欧美一区二区三区色| 国产欧美日韩亚州综合| 亚洲综合激情网| 久久国产精品99精品国产| 97久久久精品综合88久久| 日韩免费一区二区三区在线播放| 国产精品国产自产拍在线| 日韩av在线免费观看不卡| www.欧美.com| 国产乱码一区二区三区| 欧洲一区二区av| 日本一区二区不卡视频| 精品在线播放免费| 欧美日韩在线播放| 亚洲同性gay激情无套| 国产一级精品在线| 欧美日韩高清在线播放| 亚洲桃色在线一区| 国产黄色91视频| 91精品国产综合久久久久久| 亚洲色大成网站www久久九九| 狠狠色丁香婷婷综合久久片| 欧美日韩1234| 亚洲电影一区二区| 在线精品视频一区二区三四| 成人欧美一区二区三区小说 | 欧美中文字幕亚洲一区二区va在线 | 国产精品久久久久国产精品日日| 久久电影网站中文字幕| 日韩三级视频在线观看| 亚洲国产另类av| 欧美自拍偷拍午夜视频| 亚洲午夜激情网站| 在线观看欧美日本| 亚洲综合精品久久| 欧美日韩国产精选| 日本欧美加勒比视频| 日韩一区二区三区av| 久久99九九99精品| 久久九九全国免费| fc2成人免费人成在线观看播放| 国产精品毛片a∨一区二区三区| 成人高清伦理免费影院在线观看| 成人欧美一区二区三区黑人麻豆| www.欧美色图| 亚洲一区在线播放| 欧美特级限制片免费在线观看| 亚洲一区自拍偷拍| 日韩亚洲欧美高清| 国产成人夜色高潮福利影视| 中文字幕在线不卡一区二区三区| 91美女片黄在线| 亚洲成人资源网| 久久在线观看免费| 99精品黄色片免费大全| 亚洲www啪成人一区二区麻豆| 欧美va亚洲va在线观看蝴蝶网| 国产麻豆成人精品| **性色生活片久久毛片| 欧美老肥妇做.爰bbww视频| 麻豆精品视频在线观看免费| 国产日产亚洲精品系列| 欧洲亚洲国产日韩| 久久97超碰色| 亚洲欧洲成人精品av97| 91精品国产综合久久精品app| 国产精品自产自拍| 午夜欧美在线一二页| 久久精品夜色噜噜亚洲a∨| 一本大道综合伊人精品热热| 麻豆91精品视频| 亚洲视频网在线直播| 日韩无一区二区| 91啪亚洲精品| 极品少妇xxxx精品少妇| 一级日本不卡的影视| 久久精品亚洲精品国产欧美kt∨| 欧亚洲嫩模精品一区三区| 狠狠色狠狠色综合系列| 午夜电影一区二区| 国产精品超碰97尤物18| 欧美大尺度电影在线| 欧美性猛交xxxxxx富婆| 成人午夜免费电影| 国内欧美视频一区二区 | 国产酒店精品激情| 亚洲一区二区三区四区五区中文 | 国产精品乱人伦| 日韩午夜在线观看| 欧美亚洲综合网| 成人av在线播放网址| 另类小说综合欧美亚洲| 亚洲国产一区在线观看| 国产精品黄色在线观看| 久久免费视频色| 日韩小视频在线观看专区| 欧美特级限制片免费在线观看| 成人激情黄色小说| 国产福利一区二区三区在线视频| 裸体一区二区三区| 免费高清成人在线| 丝袜亚洲另类欧美| 午夜精品一区二区三区免费视频| 亚洲少妇屁股交4| 日韩一区在线看| 中文字幕一区不卡| 综合激情网...| 亚洲婷婷在线视频| 亚洲人成人一区二区在线观看| 亚洲欧洲日产国产综合网| 久久精品视频在线免费观看| 日韩免费观看2025年上映的电影| 欧美在线免费观看视频| 99精品视频在线免费观看| 成人性色生活片免费看爆迷你毛片| 国产最新精品精品你懂的| 久久99国产精品尤物| 久久国产剧场电影| 国产在线视频一区二区| 国产在线精品一区在线观看麻豆| 国内精品久久久久影院一蜜桃| 久久99精品视频| 国产精一区二区三区| 高清视频一区二区| 99精品在线免费| 欧美日韩中文字幕一区二区| 欧美人xxxx| 久久毛片高清国产| 国产精品国产三级国产aⅴ中文 | 欧美日韩在线三级| 91精品国产一区二区三区蜜臀 | 成人精品国产一区二区4080| 成人免费视频一区| 色94色欧美sute亚洲13| 欧美日韩国产综合一区二区| 91精品国产91久久综合桃花 | 国产蜜臀97一区二区三区| 亚洲三级在线免费| 日韩av中文字幕一区二区三区| 国产伦精品一区二区三区免费迷| 不卡视频免费播放| 欧美在线观看一二区| 精品福利在线导航| 亚洲精品国产a| 精品在线观看视频| 色婷婷亚洲婷婷| 精品久久久久久久久久久久久久久久久| 国产女人aaa级久久久级| 亚洲v中文字幕| 国产成人丝袜美腿| 欧美日韩在线三区| 国产日韩影视精品|