Prepare an end user instruction

Assignment Help Other Subject
Reference no: EM133189703

Specification and Marking

This assignment is an individual work.

The application background

Volunteer computing is to harness the donated computing cycles and temporary storage from millions of internet volunteers for a computation task, which is too big to be processed by a single computer in a reasonable amount of time. The following web page outlines volunteer computing.

The most successful volunteer computing framework is Berkeley Open Infrastructure for Network Computing (BOINC). BOINC is client/server architecture. The server (termed as master) creates a list of compute-tasks. Volunteer clients (termed as worker in BOINC) access the master to download available compute-tasks. Workers perform the compute-tasks and upload the results to the master. Optionally workers may be awarded credits by the master for their contribution to computing cycles and temporary storage. Volunteer computing by using BOINC framework has been applied to many scientific projects such as SETI@home, Einstein@Home, and IBM World Community Grid. The following web pages introduce volunteer computing and application projects.

In this assignment, you are to develop a simplified master/worker framework. The Java networking models and components that you have practised from Week 1 to Week 4 of this unit are used to develop such a simplified framework. The models and components are the client/server model, Java TCP streaming, multi-threading and object serialization. You will need to review the models and components and practise relevant lab projects of the weeks before you start this assignment.

Note:

1. A separate document for demonstration of the system functions is available on the unit Moodle site. You will need to use the demonstration document as a part of the assignment specification. You will need to ensure that you fully understand the scenario and project specification before developing the project; you will also need to ensure the developed system fulfilling the functional requirements as shown in the demonstration document.

2. A file transfer sample code and instruction document are on the unit Moodle site. It helps for transferring tasks from the Master to the Worker in the framework.

3. The algorithms of the 3 sample tasks are provided on the unit Moodle for the freamwork.

The assignment specification is as follows.

Part 1: Java TCP Streaming, Multi-threading and Object Serialization Programming

The framework consists of a Master (i.e. server), a number of Workers (i.e. clients) and a Class Repository in the Master. The framework is depicted in the following diagram. The framework is a generic computing architecture because the Master and Workers just need to know/follow the interaction contract only so that they can interact with each other via the framework. The specification of the interaction contract is as follows.


1. The interaction contract

The interaction contract between a Worker and the Master consists of:

a. The Task interface defines two standard methods that every compute-task must implements.

package Contract; public interface Task {
public void executeTask(); public Object getResult();
}

b. The TaskList class is a container that holds the titles and the class names of available compute-tasks.

package Contract;
import java.io.Serializable;
public class TaskList implements Serializable{ private String AvailableTasks[];
private String TaskClassName[];

public String[] getAvailableTasks() { return AvailableTasks;
}
public void setAvailableTasks(String[] AvailableTasks) { this.AvailableTasks = AvailableTasks;
}
public String[] getTaskClassName() { return TaskClassName;
}
public void setTaskClassName(String[] TaskClassName) { this.TaskClassName = TaskClassName;
}
}
c. The TaskObject class is a container that holds a particular compute-task object, its ID and credit.

package Contract;
import java.io.Serializable;
public class TaskObject implements Serializable{ private Integer TaskID=0;
private Integer Credit=0; private Task TObject=null; public TaskObject() {
}
public Integer getTaskID() { return TaskID;
}
public void setTaskID(Integer TaskID) { this.TaskID = TaskID;
}
public Integer getCredit() { return Credit;
}
public void setCredit(Integer Credit) { this.Credit = Credit;
}
public Task getTObject() { return TObject;
}
public void setTObject(Task TObject) { this.TObject = TObject;
}
}

The above interface and classes form a complete interaction contract between the Master and Workers.

2. The compute-task

The Master has a class repository that holds the Java classes of available compute-tasks. A compute-task must implement the Task interface. Executing the executeTask() method will perform the task and set the result. Calling the getResult() method will return the result. A compute-task must implement java.io.Serializable interface so that the compute-task can be transferred between the Master and a worker over the network. The structure of a compute-class is as follows.

public class CalculatePi implements Task, Serializable{
...... @Override
public void executeTask() {
//The implementation of method

......
}
@Override
public Object getResult() {
//The implementation of method
......
}
//may have other methods
......
}

3. The interaction workflow of the framework

A Worker provides a user frontend to access the remote Master. A Worker just needs to follow the interaction contract only for volunteer computing. The interaction workflow between Worker and Mater includes:

a. Workers connect to the Master

b. Workers download the available task list from the Master

c. Workers download some tasks from the Master

d. Workers perform the tasks

e. Workers upload computing results to the Master.

The demonstration of interaction workflow between Workers and the Mater is in the demonstration document on the unit Moodle site.

4. The implementation

To complete this assignment, you need to implement such a framework and integrate the Calculate Pi, Calculate Primes and Calculate the Greatest Common Divisor tasks into this framework. The algorithms of the tasks are given on the unit web site. The Master must be multi-threaded and follow the ‘thread-per-connection' architecture (reference Week-4 contents). The communication between the Master and Workers must use TCP streaming by using Java TCP API Socket and ServerSocket as described in Week-2 contents of this unit. Note: use of any other networking protocols will incur no marks to be awarded for this part.

To implement the framework, you need to implement the following Java classes:

a. A Java application to implement the Worker; a graphic user interface is required;

b. A Java application to implement the Master; and

c. A number of Java classes to implement the processing threads when necessary.

d. Note: to demonstrate your competence in concurrency programming, you will need to make an analysis on when concurrency is needed. Marks will be deducted if concurrency is not identified or necessary multithreading is not used.

e. A number of Java classes to implement Calculate Pi, Calculate Primes and Calculate the Greatest Common Divisor tasks.

Note: to simulate Master and Worker interaction, you don't have to run them on two physical machines. Instead, they can be run on two JVMs (Java Virtual Machines) on a single physical machine. As a result, the name of the Master machine can be ‘localhost'.

Part 2: Program use and test instruction

After the implementation of the framework, prepare an end user' instruction about how to use your software. The instruction should cover all aspects of the framework as detailed in the Part 2 of marking criteria below.

Submission

You need to provide the following files in your submission.

1. Files of Java source code of the Master, the Worker and the processing threads and the compute-tasks. The in-line comments on the data structure and program structure in the programs are required. The source code files must be able to be compiled by the standard JDK (Java Development Kit) or NetBeans IDE from Oracle.

2. The compiled Java class files of the source code. The Java classes must be runnable on the standard Java Runtime Environment (JRE) from Oracle.

Note: an easy way to provide the source code and executables is to submit them in a NetBeans project.

Attachment:- Simplified Master.rar

Reference no: EM133189703

Questions Cloud

What do you know about your chosen lga : Are there public health issues within that LGA? Does your LGA have storm water guttering for rainwater runoff? Is the LGA on septic tank systems
How much is the interest expense for the year : Annual rental payable in advance on December 31 of each year P70,000. How much is the interest expense for the year 2021
Perform a PolynomialFeatures transformation : Perform a PolynomialFeatures transformation, then perform linear regression to calculate the optimal ordinary least squares regression model parameters
Create a spreadsheet that automatically calculates grade : MGMT 650 Assignment - Create a spreadsheet that automatically calculates your grade in this class as you enter the grades that you receive
Prepare an end user instruction : Compute-task must implement the Task interface. Executing the executeTask() method will perform the task and set the result
What is purpose of the australian guide to healthy eating : What is the purpose of the Australian Guide to Healthy Eating - List 5 alternatives for salt which can be used during preparation and cooking of foods
MTH 230 Probability and Statistics Assignment : MTH 230 Probability and Statistics Assignment - Estimation and Hypothesis Tests-One Population- What sample size is necessary to ensure an interval width
Different applications of wearable technologies : Which countries are the biggest users of the Internet? Social media? Mobile? What are two different applications of wearable technologies?
Infotech import in strat plan : InfoTech Import in Strat Plan, It is a priority that students are provided with strong educational programs and courses

Reviews

Write a Review

Other Subject Questions & Answers

  Design an underwater sculpture to inform and engage

Design an underwater sculpture to inform and engage the public while providing additional habitat for underwater plants and animals.

  What are the most effective ways to organize

What are the most effective ways to organize the early childhood classroom. What should be included in a developmentally appropriate environment

  Data warehousing and data mining in business intelligence

What are the two most important functions of data warehousing and data mining in business intelligence? Explain.

  How does ethnicity relate to an individual identity

How does ethnicity relate to an individual's identity? Give examples.

  What are some of the tools use to perform the work

View "Seth Berkley: HIV and Flu-The Vaccine Strategy." What are some of the tools in this course that epidemiologists use to perform their work?

  Production warehouse move project

You have kicked off the District 4 Production Warehouse Move project, your contractors are in place and working on receiving the proper building permits.

  What is right and wrong in terms of sexual expression

What is right and wrong in terms of sexual expression is a highly individual matter that depends on each person's unique personal exposure.

  Analyze pertinent facts of business client cases

Analyze pertinent facts of business client cases by effectively employing foundational law principles.

  What is sport management and management skills

What is sport management? What are the five management skills? Do all sport managers need these skills? What are the three types of managers?

  Calculate beta of an asx company

Calculate beta of an ASX company using 8 years quarterly returns of the selected stock, the stock market

  Discuss about the homeland security act

The Department of Homeland Security (DHS) was created in 2002 with the passing of the Homeland Security Act by Congress.

  The principle of limited government

He has refused for a long time, after such dissolutions, to cause others to be elected. A Prince whose character is thus marked by every act which may define a Tyrant, is unfit to be the ruler of a free people.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd