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

        代寫ISIT312 、代做Java編程語言
        代寫ISIT312 、代做Java編程語言

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



        School of Computing & Information Technology University of Wollongong
        ISIT312 Big Data Management SIM S4 2024 Assignment 1
        Scope
        The objectives of Assignment 1 include implementation of HDFS applications, implementation of simple MapReduce applications, and describing an implementation of complex MapReduce applications.
        This assignment is due on 20 October 2024 by 9:00 pm Singaporean Time (SGT).
        This assignment is worth 10% of the total evaluation in the subject.
        The assignment consists of 3 tasks and the specification of each task starts from a new page.
        Only electronic submission through Moodle at:
        https://moodle.uowplatform.edu.au/login/index.php
        will be accepted. A submission procedure is explained at the end of Assignment 1 specification.
        A policy regarding late submissions is included in the subject outline. Only one submission of Assignment 1 is allowed and only one submission per student is accepted.
        A late submission penalty (25% of the total mark) will be applied for every 24 hours late.
        A submission that contains an incorrect file attached is treated as a correct submission with all consequences coming from the evaluation of the file attached.
        All files left on Moodle in a state "Draft(not submitted)" will not be evaluated.
        An implementation that does not compile well due to one or more syntactical and/or run time
        errors scores no marks.
        The first assignment is an individual assignment and it is expected that all its tasks will be solved individually without any cooperation with the other students. However, it is allowed to declare in the submission comments that a particular component or task of this assignment has been implemented in cooperation with another student. In such a case evaluation of a task or component may be shared with another student. In all other cases plagiarism will result in a FAIL grade being recorded for entire assignment. If you have any doubts, questions, etc. please consult your lecturer or tutor during laboratory/tutorial classes or over e-mail.
        Session: 4, 2024
        Lecturer: Dr Fenghui Ren
           
        Task 1 (3 marks)
        Implementation of HDFS application
        Implement a HDFS application that merges two files located in HDFS into one file also located in HDFS.
        file.
        Perform the following steps.
        Implement the application and save its source code in a file solution1.java.
        When ready, compile, create jar file, and process your application. Display the results created by the application.
        Use Hadoop to provide a piece of evidence that two files uploaded into HDFS have been successful merged into one file in HDFS.
        Deliverables
        A file solution1.java with a source code of the application that merges two HDFS files. A file solution1.pdf that contains
        two files uploaded into HDFS has been successful merges in one file in HDFS with explanation of how the statements work.
          The application must have the following parameters.
         (1) A path to, and a name of the first input file in HDFS.
         (2) A path to, and a name of the second input file in HDFS.
         (3) A path to, and a new name of an output file to be created in HDFS. The file is supposed
         to contain the contents of the first input file followed by the contents of the second input
          Upload two files to HDFS. The contents, the name, and the locations of the files in HDSF are
         up to you.
          the contents of Terminal window with a report from
         compilation, creation of jar file, uploading to HDFS two small files for testing, processing of
         the application, and evidence that
         
        Task 2 (4 marks)
        Implementation of MapReduce application
        Assume, that a speed camera records the speed of passing cars and saves the measurements in a text file. The speed of each car is measured in kilometres per hour. A single row in the file contains a car registration number, a location of the camera, a date when the speed has been measured, and the speed of a car with the recorded registration number. The values are always separated with a single blank.
        For example, a sample file (SpeedCamera.txt) with the speed measurements contains the following lines:
        PKR856 AYE 14-NOV-2021 80
        UPS234 CTE 20-FEB-2022 110
        PKR856 PIE 20-MAR-2020 **
        PKR856 PIE 17-JUN-2021 100
        UPS234 CTE 22-SEP-2022 100
        UPS234 CTE 03-AUG-2020 **
        Assume, that a speed limit in a location of the speed camera is ** kilometres per hour.
        Your task is to implement a MapReduce application, that finds an average speed of all cars,
        that exceeded a speed limit in the location of the speed camera.
        An input file with the speed measurements must include the lines listed above and it must contain at least 20 measurements. All additional measurements are up to you.
        Save your solution in a file solution2.java.
        When ready, compile, create a jar file, and process your application. Display the results created by the application. The result of your application includes (1) the content of your input
        file, (2) the car registration number, the location of the camera, and the average speed that exceed the speed limit. When finished, Copy and Paste the messages from a Terminal screen into a file solution2.pdf.
        A sample output of the application is as follows:
        Deliverables
        A file solution2.java with a source code of the application that implement the functionality of the problem statement specified above. A file
           from the compilation of your code, the creation of the jar file, the processing of your application, the listing of your input file with the speed measurements , and the results of
        solution2.pdf with a report
          processing the solution2.java.
         
        Task 3 (3 marks)
        Implementation of MapReduce application
        An application MinMax described in an Exercise 2 has the functionality the same as the following SQL statement.
          SELECT key, MIN(value), MAX(value)
          FROM Sequence-of-key-value-pairs
          GROUP BY key;
        Extend Java code of the application such that it implements the functionality the same as the following SQL statement.
        SELECT key, MAX(value), MIN(value), AVG(value), SUM(value) FROM Sequence-of-key-value-pairs
        GROUP BY key;
        Save your solution in a file solution3.java.
        When ready, compile, create the jar file, and process your application. To test your application, you can use a file sales.txt included in the zipped file of this specification. Display the results created by the application. When finished, Copy and Paste the messages from a Terminal screen into a file solution3.pdf.
        A sample output of the application is as follows:
        Deliverables
        A file solution3.java with a source code of the application that implement the functionality of SELECT statement given above. A file
           compilation, creation of the jar file, processing of your application, and screen captures of
        solution3.pdf with a report from
          the results of processing solution3.java.
         
        Submission of Assignment 1
        Note, that you have only one submission. So, make absolutely sure that you submit the correct files with the correct contents. Please submit an Academic Consideration in SOLS if an extension (1 week maximally) is required.
        Please combine the files solution1.pdf, solution2.pdf, and solution3.pdf as a single pdf (solutions.pdf) first, then zip the files solutions.pdf, solution1.java, solution2.java, and solution3.java into a single zipped file (A**solutions.zip). Please submit the zipped file through Moodle in the following way:
        (1) Access Moodle at http://moodle.uowplatform.edu.au/
        (2) To login use a Login link located in the right upper corner the Web page or in the
        middle of the bottom of the Web page
        (3) When logged select a site ISIT312 (SP424) Big Data Management
        (4) Scroll down to a section SUBMISSIONS
        (5) Click at Assignment 1 link.
        (6) Click at a button Add Submission
        (7) Move the zipped file A**solutions.zip into an area You can drag and
        drop files here to add them. You can also use a link Add...
        (9) Click at a button Save changes
        (10) Click at a button Submit assignment
        (11)Click at the checkbox with a text attached: By checking this box, I
        confirm that this submission is my own work, ... in order to
        confirm authorship of your submission. (12) Click at a button Continue
        End of specification
          
        請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp






         

        掃一掃在手機打開當前頁
      1. 上一篇:代寫EF4323、python語言編程代做
      2. 下一篇:CE243程序代做、代寫C++編程語言
      3. 無相關信息
        合肥生活資訊

        合肥圖文信息
        出評 開團工具
        出評 開團工具
        挖掘機濾芯提升發動機性能
        挖掘機濾芯提升發動機性能
        戴納斯帝壁掛爐全國售后服務電話24小時官網400(全國服務熱線)
        戴納斯帝壁掛爐全國售后服務電話24小時官網
        菲斯曼壁掛爐全國統一400售后維修服務電話24小時服務熱線
        菲斯曼壁掛爐全國統一400售后維修服務電話2
        美的熱水器售后服務技術咨詢電話全國24小時客服熱線
        美的熱水器售后服務技術咨詢電話全國24小時
        海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
        海信羅馬假日洗衣機亮相AWE 復古美學與現代
        合肥機場巴士4號線
        合肥機場巴士4號線
        合肥機場巴士3號線
        合肥機場巴士3號線
      4. 短信驗證碼 酒店vi設計

        国产精品第一区第27页| 亚洲精品白色在线发布| 国产精品自在在线午夜蜜芽tv在线| 7777久久久国产精品消防器材| sihu国产精品永久免费| 亚洲国产日韩在线一区| 国产精品一区电影| 日韩精品久久久久久| 亚洲欧美国产日韩av野草社区| 亚洲欧洲国产经精品香蕉网| 久久九九久精品国产日韩经典| 亚洲精品无码精品mV在线观看 | 久久精品国产一区二区 | 国产a∨精品一区二区三区不卡| 情侣视频精品免费的国产| 国产AV午夜精品一区二区三区| 四虎国产精品免费永久在线| 久久精品中文字幕有码| 2022免费国产精品福利在线| 国产精品青青青高清在线观看 | 亚洲精品美女网站| 国内精品免费在线观看| 日韩不卡免费视频| 日韩人妻无码精品专区| 国产三级精品三级在专区中文| 亚洲系列国产精品制服丝袜第| 99精品众筹模特自拍视频| 国产精品人成在线观看| 国产免费无遮挡精品视频| 国产精品第二页在线播放| 国产精品无码制服丝袜| 国产真实乱子伦精品视手机观看 | 亚洲精品国产福利一二区| 亚洲精品国产va在线观看蜜芽| 国产成人精品午夜福麻豆| 精品久久久久久国产三级| 国产在线91区精品| 日韩成人在线视屏| 日韩色图在线观看| 成人精品在线视频| 国产在线观看精品一区二区三区91|