<em id="rw4ev"></em>

      <tr id="rw4ev"></tr>

      <nav id="rw4ev"></nav>
      <strike id="rw4ev"><pre id="rw4ev"></pre></strike>
      合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

      代寫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號線
      合肥機場巴士2號線
      合肥機場巴士2號線
    4. 幣安app官網下載 短信驗證碼 丁香花影院

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

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

      成人久久18免费网站入口