update server names

Chris Lu 2021-01-22 19:41:57 -08:00
parent 5589a46af9
commit 08d1b95e84
3 changed files with 10 additions and 13 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 104 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 110 KiB

After

Width:  |  Height:  |  Size: 104 KiB

@ -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(){}
}