RTUComputer ScienceYr 2024 · Sem 62024

Q10Distributed System

Question

2 marks

Define a stateless server in distributed file systems.

Answer

A stateless server is a highly resilient file system architecture that mathematically refuses to store any historical client session data between network requests.

In a Stateless Distributed File System (like NFS v3), the server memory is completely amnesiac. Every single client request MUST mathematically contain absolute, complete information (e.g., "Read exactly 50 bytes from file X starting at offset 100"). If the server crashes and reboots, no client state is lost.

Back to Paper