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

        代寫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設計

        主站蜘蛛池模板: 亚洲av无一区二区三区| 在线播放偷拍一区精品| 四虎永久在线精品免费一区二区 | 国产一区二区三区高清在线观看 | 亚洲av乱码中文一区二区三区| 国产福利电影一区二区三区久久久久成人精品综合 | 精品人无码一区二区三区| 色视频综合无码一区二区三区| 亚洲爆乳精品无码一区二区| 亚洲一区中文字幕久久| 久草新视频一区二区三区| 视频一区二区中文字幕| 亚洲国产成人久久一区WWW | 中文字幕在线精品视频入口一区| 亚洲av午夜精品一区二区三区| 精品国产一区二区三区久| 国产精品无码一区二区在线观| 亚洲综合一区二区| 国产一区二区久久久| 综合无码一区二区三区四区五区 | 亚洲福利一区二区| 3d动漫精品啪啪一区二区中文| 97av麻豆蜜桃一区二区| 无码人妻一区二区三区免费手机 | 日本在线不卡一区| 色欲AV蜜臀一区二区三区| 麻豆AV一区二区三区久久| 亚洲一区二区三区高清视频| 久久无码人妻一区二区三区| 91一区二区在线观看精品| 伦精品一区二区三区视频| 国产精品熟女视频一区二区| 美女福利视频一区二区| 久久无码一区二区三区少妇| 嫩B人妻精品一区二区三区| 久久高清一区二区三区| 美女视频一区三区网站在线观看| 欧美日韩国产免费一区二区三区 | 精品视频一区二区三区四区五区| 变态拳头交视频一区二区| 亚洲国产精品自在线一区二区 |