Module 23 Fancy File Systems

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/12

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

13 Terms

1
New cards

NFS

network file system, where files are stored on a remote file server, client accesses files transparently

2
New cards

RPC

clients execute services on a remote server using a procedure call

3
New cards

RPC lower level

mechanism that generates client stubs and server stubs that are used for communicating messages for procedure call

4
New cards

consistency models

shared data that is kept in a data store that clients can access the data through read and write operations

5
New cards

coherence

resitricts order of reads and writes to one location

6
New cards

staleness

bounds maximum ( real time ) delay between writes and reads to one location

7
New cards

Consistency

restricts orders of reads and writes across locations

8
New cards

sequential consistency

create a total order that includes all the operations of the execution

9
New cards

FIFO Consistency

Writes done by a single process are seen by all

other processes in the order in which they

were issued, but writes from different

processes may be seen in a different order by

different processes”

10
New cards

Causal Consistency

Writes that are potentially causally related must

be seen by all processes in the same order.

Concurrent writes may be seen in a different

order on different machines

11
New cards

stateless protocol

server maintains no state about clients or open files

12
New cards

idempotent operations

all requests can be repeated

13
New cards

GFS

file system optimized for very large files with particular access patterns and for a very large number of simultaneous clients