Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions doc/figures/hardware-view1.pu
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
@startuml
package "Single Server Pattern" {
skinparam DefaultTextAlignment center
left to right direction

component "Storage-A" {
database OST3
database OST2
database OST1
storage OSS
OSS -- OST3
OSS -- OST2
OSS -- OST1
}

component node {
component Application
component "Storage\nClient" as kernel
kernel <- Application : sequence\nof\nstorage\nchunks
}

kernel --> OSS: LAN traffic\nsequence of\nblocks

}
@enduml
49 changes: 49 additions & 0 deletions doc/figures/hardware-view1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions doc/figures/hardware-view2.pu
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
@startuml
package "No OSS Pattern" {
left to right direction

component "\nStorage-B\n" {
database OST3
database OST2
database OST1
}

component node {
component Application
component "Storage\nClient" as kernel
kernel <- Application: sequence\nof\nstorage\nchunks
}
kernel --> OST1: LAN
kernel --> OST2: LAN
kernel --> OST3: LAN

}
@enduml
43 changes: 43 additions & 0 deletions doc/figures/hardware-view2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions doc/figures/hardware-view3.pu
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
@startuml
left to right direction
package "Multiple OSS Pattern" {

component "Storage-C" {
database OST4
database OST3
database OST2
database OST1
storage OSS2
storage OSS1
OSS1 -- OST1
OSS1 -- OST2
OSS2 -- OST3
OSS2 -- OST4
}

component node {
component Application
component "Storage\nClient" as kernel
kernel <- Application : sequence\nof\nstorage\nchunks
}
kernel --> OSS1: LAN
kernel --> OSS2: LAN
}
@enduml
Loading