-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# NFSv4.1/pNFS Door | ||
|
||
|
||
```mermaid | ||
sequenceDiagram | ||
autonumber | ||
actor Client | ||
participant Door | ||
participant poolA | ||
participant PoolManager | ||
Client->>Door: OPEN(file), LAYOUTGET | ||
Door->>PoolManager: Select Pool | ||
PoolManager-->>Door: 'poolA' | ||
Door->>poolA: Start Mover (state) | ||
poolA-->>Door: Ready(id) | ||
Door-->>Client: 'open state', 'layout' | ||
loop Application IO | ||
Client->>poolA: READ(file, state, offset, len) | ||
poolA-->>Client: 'bytes' | ||
end | ||
Client->>Door: LAYOUT_RETURN, CLOSE | ||
Door->>poolA: Kill Mover(id) | ||
poolA->>poolA: state invalidated | ||
poolA-->>Door: Trnaster Finish | ||
Door->>Door: Invalidate state | ||
Door-->>Client: OK | ||
``` |