代码代写|Assignment 3 – Paxos 2022

这是一篇来自澳洲的关于编码并提交一份经过测试和工作的代码副本,需要调试和修复错误,并测试代码在大学Linux映像的代码代写

Assignment Description

Objective

To gain an understanding of consensus and voting protocols in the presence of failures of one or more of the participants.

Welcome to the Suburbs Council Election!

This year, Suburbs Council is holding elections for council president. Any member of its nine person council is eligible to become council president.

Member M1 – M1 has wanted to be council president for a very long time. M1 is very chatty over social media and responds to emails/texts/calls almost instantly. It is as if M1 has an in-brain connection with their mobile phone!

Member M2 – M2 has also wanted to be council president for a very long time, except their very long time is longer than everybody else’s. M2 lives in a remote part of the Suburbs and thus their internet connection is really poor, almost non-existent. Responses to emails come in very late, and sometimes only to one of the emails in the email thread, so it is unclear whether M2 has read/understood them all. However, M2 sometimes likes to work at Café @ Bottom of the Hill. When that happens, their responses are instant and M2 replies to all emails.

Member M3 – M3 has also wanted to be council president. M3 is not as responsive as M1, nor as late as M2, however sometimes emails completely do not get to M3. The other councilors suspect that it’s because sometimes M3 goes on retreats in the woods at the top of the Suburbs, completely disconnected from the world.

Members M4-M9 have no particular ambitions about council presidency and no particular preferences or animosities, so they will try to vote fairly. Their jobs keep them fairly busy and as such their response times will vary.

How does voting happen: On the day of the vote, one of the councilors will send out an email/message to all councilors with a proposal for a president. A majority (half+1) is required for somebody to be elected president.

YOUR TASK:

Write a program that implements a Paxos voting protocol for Suburbs Council President that is fault tolerant and resilient to various failure types, some of which are shown in the above. Communication happens strictly via sockets. You are responsible for the message design.

Assessment

Your assignment will be marked out of 100 points, as following:

10 points – Paxos implementation works when two councillors send voting proposals at the same time

30 points – Paxos implementation works in the case where all M1-M9 have immediate responses to voting queries 30 points – Paxos implementation works when M1 – M9 have responses to voting queries suggested by the profiles above, including when M2 or M3 propose and then go offline 20 points – Testing harness for the above scenarios + evidence that they work (in the form of printouts)

10 points for the quality of your code:

Code Quality Checklist

Do!

o write comments above the header of each of your methods, describing

o what the method is doing, what are its inputs and expected outputs

o describe in the comments any special cases

o create modular code, following cohesion and coupling principles

Don’t!

o use magic numbers

o use comments as structural elements (see video)

o mis-spell your comments

o use incomprehensible variable names

o have long methods (not more than 80 lines)

o allow TODO blocks

10 points – Paxos implementation works with a number ‘n’ of councilors with four profiles of response times: immediate; medium; late; never 50 points – (you can use these points in this assignment, or in any other subsequent assignment)

– Fast Byzantine Paxos implementation that works when councilors lie, collude, or intentionally do not participate in some voting queries but participate in others.

Use the Websubmission system.

IMPORTANT If your code does not compile and run the awarded mark is 0. For details on how to submit this exercise read through the steps of this assignment.

Procedure for this Assignment

Step 0: Getting to know Subversion

Subversion, also known as svn, is a powerful version control system to help maintain a coherent copy of a project that can be worked on from multiple locations. We will use Subversion as the handin mechanism throughout this course. Click here

(http://www.cs.adelaide.edu.au/docs/svninstr.pdf) to learn about the features of interest to us.

Step 1: Creating the assignment directory in your svn repository

Current versions of the svn client program.

Open a terminal window on your machine, and cut-and-paste the following command:

svn mkdir –parents -m “assignments” https://version-control.adelaide.edu.au/svn/aXXXXXX/YYYY/s2/ds/assignment3

(https://version-control.adelaide.edu.au/svn/aXXXXXX/YYYY/s2/ds/assign1)

This command will create an empty directory named YYYY/s2/ds/assignment3 in an svn repository that we have set up for you on the machine version-control.adelaide.edu.au. Your svn repository is called https://version-control.adelaide.edu.au/svn/aXXXXXXX/

Note: Replace XXXXXXX with your student ID and YYYY with the four digits representing the year we are in.

Old versions of the svn client program.

NOTE Older versions of the svn client, (pre 1.5), do not support the –parents option. If you are using an older client, the following explicit steps must be used to create the YYYY/s2/ds/assignment3 directory in your svn repository. If a directory already exists and you attempt to recreate it, you will receive an error message complaining about MKCOL.

Create the YYYY directory if it does not exist.