mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
update server names
parent
5589a46af9
commit
08d1b95e84
BIN
MountRead.png
BIN
MountRead.png
Binary file not shown.
Before Width: | Height: | Size: 73 KiB After Width: | Height: | Size: 104 KiB |
BIN
MountWrite.png
BIN
MountWrite.png
Binary file not shown.
Before Width: | Height: | Size: 110 KiB After Width: | Height: | Size: 104 KiB |
23
zenuml.txt
23
zenuml.txt
|
@ -1,20 +1,23 @@
|
||||||
WeedMount.Start{
|
Mount.Background{
|
||||||
meta_updates = WeedFiler.PublishSubscribe{
|
meta_updates = Filer.PublishSubscribe{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fileContent = WeedMount.ReadFile{
|
Content = Mount.Read{
|
||||||
location = WeedFiler.LookupVolumeId{
|
metadata = LocalMetadata{
|
||||||
|
}
|
||||||
|
location = Filer.LookupVolumeId{
|
||||||
location = CachedLookup{}
|
location = CachedLookup{}
|
||||||
|
location = Master.IfCacheMiss{}
|
||||||
}
|
}
|
||||||
chunks = VolumeServer.ReadChunks(){}
|
chunks = VolumeServer.ReadChunks(){}
|
||||||
}
|
}
|
||||||
|
|
||||||
success = WeedMount.WriteFile{
|
success = Mount.WriteFile{
|
||||||
fileIds = WeedFiler.Assign{
|
fileIds = Filer.Assign{
|
||||||
fileIds = Master.Assign{}
|
fileIds = Master.Assign{}
|
||||||
}
|
}
|
||||||
success = VolumeServer.WriteChunks(fileId){}
|
success = VolumeServer.WriteChunks(fileId){}
|
||||||
success = WeedFiler.WriteMetaData{
|
success = Filer.WriteMetaData{
|
||||||
success = FilerStore.SaveMetaData{}
|
success = FilerStore.SaveMetaData{}
|
||||||
VolumeServer.PurgeOldChunks{}
|
VolumeServer.PurgeOldChunks{}
|
||||||
}
|
}
|
||||||
|
@ -23,11 +26,5 @@ success = WeedMount.WriteFile{
|
||||||
metadata = Filer.Read(path){
|
metadata = Filer.Read(path){
|
||||||
metadata = FilerStore.Lookup(path)
|
metadata = FilerStore.Lookup(path)
|
||||||
}
|
}
|
||||||
volumeServerLocation = WeedMaster.Lookup(volumdId)
|
|
||||||
content = VolumeServer.Read(fileId) {
|
content = VolumeServer.Read(fileId) {
|
||||||
}
|
}
|
||||||
|
|
||||||
fileContent = WeedMount.ReadFile{
|
|
||||||
metadata = WeedFiler.ReadMetaData{}
|
|
||||||
chunks = VolumeServer.ReadChunks(){}
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue