久久久久久精品无码人妻_青春草无码精品视频在线观_无码精品国产VA在线观看_国产色无码专区在线观看

COMP2207 代做、R 程序設計代寫

時間:2024-03-17  來源:  作者: 我要糾錯



COMP2207: Distributed File System coursework Leonardo Aniello, Kirk Martinez
Course: COMP2207 Document version: 1.0 – March 14, 2024
1 Introduction
In this coursework you will build a distributed storage system. This will involve knowledge of Java, networking and distributed systems. The system has one Controller and N Data Stores (Dstores). It supports multiple concurrent clients sending store, load, list, remove requests. You will implement Controller and Dstores; the client will be provided. Each file is replicated R times over different Dstores. Files are stored by the Dstores, the Controller orchestrates client requests and maintains an index with the allocation of files to Dstores, as well as the size in byte of each stored file. The client actually gets the files directly from Dstores – which improves scalability. For simplicity, all these processes will be on the same machine, but the principles are similar to a system distributed over several servers. Files in the distributed storage are not organised in folders and sub- folders. Filenames do not contain spaces.
The Controller is started first, with R as an argument. It waits for Dstores to join the storage system (see Rebalance operation). The Controller does not serve any client request until at least R Dstores have joined the system.
As Dstores may fail and new Dstores can join the storage system at runtime, rebalance operations are required to make sure each file is replicated R times and files are distributed evenly over the Dstores.
       1

2 Networking
Controller, Dstores and Clients will communicate with each other via TCP connections.
Because they will be on the same machine, the Dstores will listen on different ports.
Each client will submit requests to the Controller sequentially over a separate TCP connection.
The Dstores will establish connections with the Controller as soon as they start. These connections will be persistent (i.e., they are expected to be kept alive for as long as the Dstore is running). All the communications between a Dstore and the Controller must take place over that connection; no further connections must be established between a Dstore and the Controller. If the Controller detects that the connection with one of the Dstores dropped, then such a Dstore will be removed from the set of Dstores that are part of the storage system. If a Dstore detects that the connection with the Controller dropped, it should not try to establish a new connection with the Controller.
Processes should send textual messages (e.g., LIST – see below) using the println() method of PrintWriter class, and receive using the readLine() method of BufferedReader class. For data messages (i.e., file content), processes should send using the write() method of OutputStream class and receive using the readNBytes() method of InputStream class.
3 The Index
The index refers to the data structure used by the Controller to keep track of stored files. As Store and Remove operations involve a number of messages to be completed (see Section 4), it is important to ensure that other possibly conflicting concurrent operations are served properly. To achieve that, the index data structure should include a dedicated field for each file to record its current state.
For example, while a file F is being stored (i.e., corresponding index entry updated with state set to “store in progress”), we do not want the storage system to serve any Load or Remove operations on F, nor to include F when List operations are invoked. In this sense, it should be as if F does not exist yet. However, if another concurrent Store operation is requested for another file with the same name of F, then we want to reply with an ERROR ALREADY_EXISTS message. Handling this kind of situations requires to explicitly manage the lifecycle of files, e.g., from "store in progress" to "store complete" to "remove in progress" to "remove complete". When a file is in the "remove complete" state, it can be removed from the index. The expected behaviour of the storage system in these situations is defined at the end of Section 4.
2

4 Code development
You can use the latest version of Java openjdk-21-jdk, on Linux/Unix. Do not use Windows. The code must be testable and not depend on any IDE directory structure/config files.
Command line parameters to start up the system:
Controller: A Dstore: A client:
java Controller cport R timeout rebalance_period
java Dstore port cport timeout file_folder
java Client cport timeout
   The Controller is given a port to listen on (cport), a replication factor (R), a timeout in milliseconds (timeout) and how long to wait (in seconds) to start the next rebalance operation (rebalance_period).
A Dstore is started with the port to listen on (port) and the controller’s port to talk to (cport), timeout in milliseconds (timeout) and where to store the data locally (file_folder). Each Dstore should use a different path and port, so they don’t clash. The client is started with the controller port to communicate with it (cport) and a timeout in milliseconds (timeout).
Controller and Dstores do not need to keep any state between different executions. This means the Controller does not need to save/load the index to/from disk, and Dstores must empty their file folder at start up. You can assume the folder already exists; it does not need to be created by the Dstore.
The timeout should be used when a process expects a response from another process; for example, when the Controller waits for a Dstore to send a STORE_ACK message (see below Store operation). Timeouts should not be used in other circumstances; for example, when the Controller waits for a Client to send a request.
Join operation
This operation is started by a Dstore that wants to join the storage system.
• Dstore -> Controller: JOIN port Where port is the endpoint of the new Dstore.
3

Store operation
• Client -> Controller: STORE filename filesize
• Controller
o updates index, “store in progress”
o Selects R Dstores, their endpoints are port1, port2, ..., portR o Controller -> Client: STORE_TO port1 port2 ... portR
• For each Dstore i
o Client->Dstore i: STORE filename filesize o Dstore i -> Client: ACK
o Client->Dstore i: file_content
o Once Dstore i finishes storing the file,
Dstore i -> Controller: STORE_ACK filename • Once Controller received all acks
o updates index, “store complete”
o Controller -> Client: STORE_COMPLETE
Dstores might be terminated during this operation. You can assume all files are not empty (i.e., file size is always greater than zero) and their size is lower than 100KB. All filesize values are in bytes.
Failure Handling
• Malformed message received by Controller/Client/Dstore
o Ignore message (it would be good practice to log it) • If not enough Dstores have joined
o Controller->Client: ERROR_NOT_ENOUGH_DSTORES • If filename already exists in the index
o Controller->Client: ERROR_FILE_ALREADY_EXISTS
• If the Controller does not receive all the acks (e.g., because the timeout expires), the STORE_COMPLETE message should not be sent to the Client, and filename
should be removed from the index.
 4

Load operation
• Client -> Controller: LOAD filename
• Controller selects one the R Dstores that stores that file, let port be its endpoint
• Controller->Client: LOAD_FROM port filesize
• Client -> Dstore: LOAD_DATA filename
• Dstore -> Client: file_content
All filesize values are in bytes. Dstores might be terminated during this operation.
Failure Handling
• Malformed message received by Controller/Client/Dstore
• Ignore message (it would be good practice to log it) • If not enough Dstores have joined
o Controller->Client: ERROR_NOT_ENOUGH_DSTORES • If file does not exist in the index
o Controller -> Client: ERROR_FILE_DOES_NOT_EXIST • If Client cannot connect to or receive data from Dstore
o Client -> Controller: RELOAD filename
o Controller selects a different Dstore with endpoint port’
▪ This requires the Controller to keep track of which ports have been selected for the last LOAD/RELOAD operation of each active Client; this information can be reset once the Client sends another request that is not a RELOAD
o Controller->Client: LOAD_FROM port’ filesize ▪ All filesize values are in bytes
o If Client cannot connect to or receive data from any of the R Dstores ▪ Controller->Client:ERROR_LOAD
• If Dstore does not have the requested file
o Simply close the socket with the Client
 5

Remove operation
• Client -> Controller: REMOVE filename
• Controller updates index, “remove in progress”
• For each Dstore i storing filename
o Controller->Dstore i: REMOVE filename o Once Dstore i finishes removing the file,
Dstore i -> Controller: REMOVE_ACK filename • Once Controller received all acks
o Remove filename from the index
o Controller -> Client: REMOVE_COMPLETE
Dstores might be terminated during this operation.
Failure Handling
• Malformed message received by Controller/Client/Dstore
o Ignore message (it would be good practice to log it)
• If not enough Dstores have joined
o Controller->Client: ERROR_NOT_ENOUGH_DSTORES
• If filename does not exist in the index
o Controller->Client: ERROR_FILE_DOES_NOT_EXIST
• Controller cannot connect to some Dstore, or does not receive all the ACKs within
the timeout
o No further action, the state of the file in the index will remain "remove in
progress"; future rebalances will try to sort things out by ensuring that no
Dstore stores that file
o The timer to detect timeouts should start right after the Controller has sent
the REMOVE message to all Dstores • If Dstore does not have the requested file
o Dstore -> Controller: ERROR_FILE_DOES_NOT_EXIST filename
o In this case, the Controller can handle this message as if it were a
REMOVE_ACK because in either that Dstore is no longer storing filename
 6

List operation
• Client->Controller: LIST
• Controller->Client: LIST file_list
o file_list is a space-separated list of filenames
Dstores might be terminated during this operation. The controller must only include in the list returned those files that are in "store complete" status. If there are no files to return, the Controller should reply LIST.
Failure Handling
• Malformed message received by Controller/Client
o Ignore message (it would be good practice to log it) • If not enough Dstores have joined
o Controller->Client: ERROR_NOT_ENOUGH_DSTORES
 7

Storage Rebalance operation
This operation is started by the Controller
• Periodically; i.e., based on the rebalance_period argument.
• When a new Dstore joins the storage system.
However, this operation must not be executed if less than R Dstores have joined.
These are the steps to execute this operation.
• For each Dstore i
o Controller -> Dstore i: LIST
o Dstore i -> Controller: LIST file_list
• Controller revises file allocation to ensure (i) each file is replicated over R Dstores,
and (ii) files are evenly stored among Dstores
o With N Dstores, replication factor R, and F files, each Dstore should store
between floor(RF/N) and ceil(RF/N) files, inclusive • Controller produces for each Dstore i a pair
(files_to_send, files_to_remove), where
o files_to_send is the list of files to send and is in the form number_of_files_to_send file_to_send_1 file_to_send_2 ... file_to_send_N
o and file_to_send_i is in the form filename number_of_dstores dstore1 dstore2 ... dstoreM
o files_to_remove is the list of filenames to remove and is in the form number_of_files_to_remove filename1 filename2 ... filenameL
• For each Dstore i
o Controller->Dstore i: REBALANCE files_to_send files_to_remove
▪ Example
▪ Assume that (where pi is the port where Dstore i is listening on)
• file f1 needs to be sent to Dstores p1 and p2
• file f2 needs to be sent to Dstore p3
• files f2 and f3 need to be removed
▪ REBALANCE2f12p1p2f21p32f2f3

o Dstore i will send required files to other Dstores, e.g., to send a file to Dstore j
▪ Dstorei->Dstorej:REBALANCE_STOREfilenamefilesize ▪ Dstorej->Dstorei:ACK
▪ Dstorei->Dstorej:file_content
o Dstore i will remove specified files o When rebalance is completed
Dstore i -> Controller: REBALANCE_COMPLETE 8
 
Additional notes on Rebalance operations.
• All filesize values are in bytes.
• Clients' requests and Dstores’ JOIN requests are queued by the Controller during
rebalance operations; these requests will be served once the rebalance operation
is completed.
• A rebalance operation should wait for any pending STORE and REMOVE
operation to complete before starting.
• At most one rebalance operation should be running at any time.
• Dstores will not be terminated during this operation (but might fail).
• If the index includes a file that no Dstore included in the list sent to the Controller,
then this file must be removed from the index.
• If a file included by a Dstore in its list is not in index, then this file must be removed
by the Dstore.
o This might happen in case the Controller did not receive at least R acks
from Dstores when that file was stored.
Failure Handling
• Malformed message received by Controller/Dstore
o Ignore message (it would be good practice to log it)
• Controller does not receive REBALANCE COMPLETE from a Dstore within a
timeout
o No further action; future rebalance operations will sort things out
 9

Concurrent Operations
• Ongoing operation: Store file
o If a concurrent Store operation on the same file is received, then return
ERROR_FILE_ALREADY_EXISTS
o If a concurrent Load operation on the same file is received, then return
ERROR_FILE_DOES_NOT_EXIST
o If a concurrent Remove operation on the same file is received, then return
ERROR_FILE_DOES_NOT_EXIST
o If a concurrent List operation is received, then do not include file in the list to
return
• Ongoing operations: Remove file
o If a concurrent Store operation on the same file is received, then return ERROR_FILE_ALREADY_EXISTS
o If a concurrent Load operation on the same file is received, then return ERROR_FILE_DOES_NOT_EXIST
o If a concurrent Remove operation on the same file is received, then return ERROR_FILE_DOES_NOT_EXIST
o If a concurrent List operation is received, the do not include file in the list to return
  10

5
Submission Requirements
6

• • • •
Your submission should include the following files: o Controller.java
o Dstore.java
As well as all the additional .java files you developed
These files should be contained in a single zip file called <your username>.zip There should be no package structure to your java code
When extracted from the zip file, the files should be located in the current directory These files will be executed at the Linux command line by us for automatic testing
Marking Scheme
You are asked to implement the Controller and Dstores. You will be given the client, as an obfuscated jar. The client allows the execution of operations via a terminal.
• Up to 50 marks are awarded based on whether the storage system works in compliance with the protocol and correctly serves sequential requests from a single client
• Up to 10 marks are awarded based on whether each file is replicated R times and files are evenly spread over the Dstores (only when stored, not when Dstores fail or new Dstores join the storage system)
• Up to 10 marks are awarded based on whether the storage system correctly serves concurrent requests from more clients (up to 10 concurrent clients)
• Up to 10 marks are awarded based on whether the storage system correctly tolerates the failure of one Dstore
• Up to 10 marks are awarded based on whether the storage system correctly tolerates the failure of up to N-R Dstores
• Up to 10 marks are awarded based on whether files are evenly spread over the Dstores despite Dstores failing and new Dstores joining the storage system
11

7 Code development suggestions
There are various things to develop step-by-step. This includes making TCP connections and passing data to/from, implementing timeouts for when the communication is broken, and so on. This is a good place to start.
8
• • • • • • • • •
Draw an outline of your system to keep track of the functionality/code structure Use techniques you tested from the Java sockets worksheet.
For the Controller, you can start by making it accept connections
Avoid multithreading until you are ready for it
Make sure your Controller and Dstores print detailed log messages to stdout/stderr Work with just the Dstore to be able to save and read files
Progressively add the features such as delete and allocating files to Dstores
Test progressively so you know each area works and can return errors.
Finally write the rebalance operations
Objectives
This coursework has the following module aims, objectives and learning outcomes:
A5. Client-server applications and programming
D1. Build a client-server solution in Java
D2. Build a distributed objects solution in Java
D3. Build and operate simple data networks
B5. Understand the use and impact of concurrency on the design of distributed systems
請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp 

標簽:

掃一掃在手機打開當前頁
  • 上一篇:代寫AIML 2023-2024 Coursework
  • 下一篇:代寫MTRN4010、代做MATLAB程序設計
  • 無相關信息
    昆明生活資訊

    昆明圖文信息
    蝴蝶泉(4A)-大理旅游
    蝴蝶泉(4A)-大理旅游
    油炸竹蟲
    油炸竹蟲
    酸筍煮魚(雞)
    酸筍煮魚(雞)
    竹筒飯
    竹筒飯
    香茅草烤魚
    香茅草烤魚
    檸檬烤魚
    檸檬烤魚
    昆明西山國家級風景名勝區(qū)
    昆明西山國家級風景名勝區(qū)
    昆明旅游索道攻略
    昆明旅游索道攻略
  • 短信驗證碼平臺 理財 WPS下載

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

    Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    久久久久久精品无码人妻_青春草无码精品视频在线观_无码精品国产VA在线观看_国产色无码专区在线观看

    狠狠热免费视频| 日韩欧美精品免费| 水蜜桃在线免费观看| 国产麻花豆剧传媒精品mv在线| 青青草原播放器| 美女网站色免费| 成人在线激情网| 亚洲 欧美 日韩 国产综合 在线| japanese在线播放| 手机看片日韩国产| 久久久久久综合网| www亚洲成人| 日韩一级片播放| 色诱视频在线观看| 麻豆tv在线播放| 国产av国片精品| 欧美中日韩在线| 国产人妻人伦精品| 日韩中文字幕亚洲精品欧美| 中文字幕第17页| 美女网站色免费| 国产一级片自拍| 狠狠干狠狠操视频| 午夜视频在线网站| 国模私拍视频在线观看| 午夜av中文字幕| 做a视频在线观看| 伊人成人222| 中文字幕精品一区二区三区在线| 99re精彩视频| 欧美激情第四页| 国产人妻互换一区二区| 激情视频小说图片| 美女扒开大腿让男人桶| 国产原创中文在线观看| 日日鲁鲁鲁夜夜爽爽狠狠视频97| 国产成人a亚洲精v品无码| 国产精品少妇在线视频| 视色视频在线观看| 国产探花在线观看视频| 可以在线看黄的网站| 欧美久久久久久久久久久久久久| 欧美日韩不卡在线视频| 久久成人免费观看| 妓院一钑片免看黄大片| 可以看污的网站| 色姑娘综合天天| 免费特级黄色片| wwwxxx黄色片| 伊人网在线综合| 91免费国产精品| 人妻精品无码一区二区三区| 欧美黄色性生活| 色呦呦网站入口| 一二三四视频社区在线| 9久久婷婷国产综合精品性色| av在线免费看片| 日本一级黄视频| 虎白女粉嫩尤物福利视频| 污污网站免费看| 日本人妻伦在线中文字幕| 那种视频在线观看| 亚洲热在线视频| 欧美色图色综合| 在线观看中文av| 日韩精品一区在线视频| av网站在线不卡| 嫩草影院中文字幕| 男女污污的视频| 欧美美女黄色网| 亚洲成色www.777999| 欧美少妇在线观看| 欧美日韩大尺度| 久久www视频| 色综合天天色综合| 国产精品久久久久久久乖乖| 男人天堂成人在线| 男女啪啪免费观看| 久草福利视频在线| 日本黄大片在线观看| 污污网站免费看| 国产二区视频在线| 777一区二区| 91专区在线观看| 中文字幕第66页| 欧美一级片中文字幕| 视频区 图片区 小说区| 国产黄色特级片| 亚洲综合在线网站| 9l视频白拍9色9l视频| 久草视频这里只有精品| 成人性生交免费看| 9久久9毛片又大又硬又粗| 在线视频观看一区二区| 中文字幕无码精品亚洲35| 青少年xxxxx性开放hg| www日韩在线观看| 日日摸日日碰夜夜爽无码| 欧美激情第四页| 亚洲综合欧美激情| 成人中文字幕av| 六月丁香婷婷激情| 日韩一级特黄毛片| 色姑娘综合天天| 日本不卡一区二区在线观看| 日韩久久一级片| www.日本在线播放| 免费cad大片在线观看| 午夜av中文字幕| 在线观看国产中文字幕| 国产精品免费观看久久| 免费一级特黄毛片| 五月婷婷之综合激情| 国产乱子伦精品无码专区| 青青草原播放器| 182午夜在线观看| 91在线视频观看免费| 日韩av资源在线| 播放灌醉水嫩大学生国内精品| 日本人体一区二区| 美女扒开大腿让男人桶| 美女av免费观看| 国产女教师bbwbbwbbw| 国产一区 在线播放| 大片在线观看网站免费收看| 亚洲免费视频播放| 无码毛片aaa在线| 加勒比海盗1在线观看免费国语版| 欧美激情第四页| 91xxx视频| 无码毛片aaa在线| 国风产精品一区二区| 亚洲乱码日产精品bd在线观看| 99久久免费观看| 人妻无码久久一区二区三区免费| www.成年人视频| 免费无遮挡无码永久视频| 人妻精品无码一区二区三区| 99re在线视频免费观看| 天堂在线资源视频| 第四色婷婷基地| 992tv人人草| 粉嫩av一区二区三区天美传媒 | 亚洲免费成人在线视频| 五月天视频在线观看| 91性高潮久久久久久久| 国产又粗又硬又长| 欧美午夜性视频| 男人亚洲天堂网| 91福利国产成人精品播放| 亚洲无在线观看| 韩国无码av片在线观看网站| 欧美色图另类小说| 中文字幕第88页| 国产精品一二三在线观看| 日韩xxxx视频| 男人女人黄一级| 中文字幕日韩综合| 日韩在线视频在线| 日本黄网站免费| 日韩欧美中文视频| www.av中文字幕| 97超碰成人在线| 妞干网在线播放| 久久综合伊人77777麻豆最新章节| 天天成人综合网| 国产免费观看高清视频| 午夜精品中文字幕| 国产片侵犯亲女视频播放| 日本成人在线免费视频| 国产精品久久久久久9999| 日日摸日日碰夜夜爽无码| 亚洲欧美日韩精品一区| 欧美大黑帍在线播放| 黄色三级视频在线| www国产无套内射com| 精品一卡二卡三卡| gogogo免费高清日本写真| 中国丰满人妻videoshd| www.久久com| 久久久久免费精品| 亚洲色婷婷久久精品av蜜桃| 男人天堂成人在线| 日b视频免费观看| 性猛交ⅹ×××乱大交| 欧美在线一区视频| 日韩精品视频网址| 激情视频综合网| 成人一级生活片| 欧美性猛交xxxx乱大交91| 无码精品a∨在线观看中文| 日本网站在线看| 99草草国产熟女视频在线| 成人免费性视频| japanese在线视频| www.这里只有精品| 美女福利视频在线| 成人午夜视频在线观看免费| 视频区 图片区 小说区| 日韩大片一区二区|