版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
GoogleClusterComputingFacultyTrainingWorkshopModuleVI:DistributedFilesystems©SpinnakerLabs,Inc.OutlineFilesystemsoverviewNFS&AFS(AndrewFileSystem)GFS©SpinnakerLabs,Inc.FileSystemsOverviewSystemthatpermanentlystoresdataUsuallylayeredontopofalower-levelphysicalstoragemediumDividedintologicalunitscalled“files”Addressablebyafilename(“foo.txt”)Usuallysupportshierarchicalnesting(directories)©SpinnakerLabs,Inc.FilePathsAfilepathjoinsfile&directorynamesintoarelativeorabsoluteaddresstoidentifyafileAbsolute:/home/aaron/foo.txtRelative:docs/someFile.docTheshortestabsolutepathtoafileiscalleditscanonicalpathThesetofallcanonicalpathsestablishesthenamespaceforthefilesystemWhatGetsStoredUserdataitselfisthebulkofthefilesystem'scontentsAlsoincludesmeta-dataonadrive-wideandper-filebasis:Drive-wide:AvailablespaceFormattinginfocharacterset...Per-file:nameownermodificationdatephysicallayout...©SpinnakerLabs,Inc.High-LevelOrganizationFilesareorganizedina“tree”structuremadeofnesteddirectoriesOnedirectoryactsasthe“root”“links”(symlinks,shortcuts,etc)providesimplemeansofprovidingmultipleaccesspathstoonefileOtherfilesystemscanbe“mounted”anddroppedinassub-hierarchies(otherdrives,networkshares)©SpinnakerLabs,Inc.Low-LevelOrganization(1/2)Filedataandmeta-datastoredseparatelyFiledescriptors+meta-datastoredininodesLargetreeortableatdesignatedlocationondiskTellshowtolookupfilecontentsMeta-datamaybereplicatedtoincreasesystemreliability©SpinnakerLabs,Inc.Low-LevelOrganization(2/2)“Standard”read-writemediumisaharddrive(othermedia:CDROM,tape,...)ViewedasasequentialarrayofblocksMustaddress~1KBchunkatatimeTreestructureis“flattened”intoblocksOverlappingreads/writes/deletescancausefragmentation:filesareoftennotstoredwithalinearlayoutinodesstoreallblockidsrelatedtofileFragmentationDesignConsiderationsSmallerinodesizereducesamountofwastedspaceLargerinodesizeincreasesspeedofsequentialreads(maynothelprandomaccess)Shouldthefilesystembefasterormore
reliable?Butfasteratwhat:Largefiles?Smallfiles?Lotsofreading?Frequentwriters,occasionalreaders?©SpinnakerLabs,Inc.FilesystemSecurityFilesystemsinmulti-userenvironmentsneedtosecureprivatedataNotionofusernameisheavilybuiltintoFSDifferentusershavedifferentaccesswritestofiles©SpinnakerLabs,Inc.UNIXPermissionBitsWorldisdividedintothreescopes:User–Thepersonwhoowns(usuallycreated)thefileGroup–Alistofparticularuserswhohave“groupownership”ofthefileOther–Everyoneelse“Read,”“write”and“execute”permissionsapplicableateachlevel©SpinnakerLabs,Inc.UNIXPermissionBits:LimitsOnlyonegroupcanbeassociatedwithafileNohigher-ordergroups(groupsofgroups)Makesitdifficulttoexpressmorecomplicatedownershipsets©SpinnakerLabs,Inc.AccessControlListsMoregeneralpermissionsmechanismImplementedinWindowsRichernotionofprivilegesthanr/w/xe.g.,SetPrivilege,Delete,Copy…AllowforinheritanceaswellasdenylistsCanbecomplicatedtoreasonaboutandleadtosecuritygaps©SpinnakerLabs,Inc.ProcessPermissionsImportantnote:processesrunningonbehalfofuserXhavepermissionsassociatedwithX,notprocessfileownerYSoifrootownsls,useraaroncannotuselstopeekatotherusers’filesException:specialpermission“setuid”setstheuser-idassociatedwitharunningprocesstotheowneroftheprogramfile©SpinnakerLabs,Inc.DiskEncryptionDatastoragemediumisanothersecurityconcernMostfilesystemsstoredataintheclear,relyonruntimesecuritytodenyaccessAssumesthephysicaldiskwon’tbestolenThediskitselfcanbeencryptedHopefullybyusingseparatepasskeysforeachuser’sfiles(Challenge:howdoyouimplementreadaccessforgroupmembers?)Metadataencryptionmaybeaseparateconcern©SpinnakerLabs,Inc.DistributedFilesystemsSupportaccesstofilesonremoteserversMustsupportconcurrencyMakevaryingguaranteesaboutlocking,who“wins”withconcurrentwrites,etc...MustgracefullyhandledroppedconnectionsCanoffersupportforreplicationandlocalcachingDifferentimplementationssitindifferentplacesoncomplexity/featurescale©SpinnakerLabs,Inc.NFSFirstdevelopedin1980sbySunPresentedwithstandardUNIXFSinterfaceNetworkdrivesaremountedintolocaldirectoryhierarchyYourhomedirectoryonattuisNFS-drivenType'mount'sometimeatthepromptifcurious©SpinnakerLabs,Inc.NFSProtocolInitiallycompletelystatelessOperatedoverUDP;didnotuseTCPstreamsFilelocking,etc,implementedinhigher-levelprotocolsModernimplementationsuseTCP/IP&statefulprotocolsServer-sideImplementationNFSdefinesavirtualfilesystemDoesnotactuallymanagelocaldisklayoutonserverServerinstantiatesNFSvolumeontopoflocalfilesystemLocalharddrivesmanagedbyconcretefilesystems(EXT,ReiserFS,...)OthernetworkedFS'smountedinby...?©SpinnakerLabs,Inc.NFSLockingNFSv4supportsstatefullockingoffilesClientsinformserverofintenttolockServercannotifyclientsofoutstandinglockrequestsLockingislease-based:clientsmustcontinuallyrenewlocksbeforeatimeoutLossofcontactwithserverabandonslocksNFSClientCachingNFSClientsareallowedtocachecopiesofremotefilesforsubsequentaccessesSupportsclose-to-opencacheconsistencyWhenclientAclosesafile,itscontentsaresynchronizedwiththemaster,andtimestampischangedWhenclientBopensthefile,itchecksthatlocaltimestampagreeswithservertimestamp.Ifnot,itdiscardslocalcopy.Concurrentreader/writersmustuseflagstodisablecaching©SpinnakerLabs,Inc.NFS:TradeoffsNFSVolumemanagedbysingleserverHigherloadoncentralserverSimplifiescoherencyprotocolsFullPOSIXsystemmeansit“dropsin”veryeasily,butisn’t“great”foranyspecificneed©SpinnakerLabs,Inc.DistributedFSSecuritySecurityisaconcernatseverallevelsthroughoutDFSstackAuthenticationDatatransferPrivilegeescalationHowaretheseappliedinNFS?©SpinnakerLabs,Inc.AuthenticationinNFSInitialNFSsystemtrustedclientprogramsUserlogincredentialswerepassedtoOSkernelwhichforwardedthemtoNFSserver…AmaliciousclientcouldeasilysubvertthisModernimplementationsusemoresophisticatedsystems(e.g.,Kerberos)©SpinnakerLabs,Inc.DataPrivacyEarlyNFSimplementationssentdatain“plaintext”overnetworkModernversionstunnelthroughSSHDoubleproblemwithUDP(connectionless)protocol:Observerscouldwatchwhichfileswerebeingopenedandtheninsert“write”requestswithfakecredentialstocorruptdata©SpinnakerLabs,Inc.PrivilegeEscalationLocalfilesystemusernameisusedasNFSusernameImplication:being“root”onlocalmachinegivesyourootaccesstoentireNFSclusterSolution:“rootsquash”–NFShard-codesaprivilegede-escalationfrom“root”downto“nobody”forallaccesses.©SpinnakerLabs,Inc.AFS(TheAndrewFileSystem)DevelopedatCarnegieMellonStrongsecurity,highscalabilitySupports50,000+clientsatenterpriselevel©SpinnakerLabs,Inc.SecurityinAFSUsesKerberosauthenticationSupportsrichersetofaccesscontrolbitsthanUNIXSeparate“administer”,“delete”bitsAllowsapplication-specificbits©SpinnakerLabs,Inc.LocalCachingFilereads/writesoperateonlocallycachedcopyLocalcopysentbacktomasterwhenfileisclosedOpenlocalcopiesarenotifiedofexternalupdatesthroughcallbacks©SpinnakerLabs,Inc.LocalCaching-TradeoffsShareddatabasefilesdonotworkwellonthissystemDoesnotsupportwrite-throughtosharedmedium©SpinnakerLabs,Inc.ReplicationAFSallowsread-onlycopiesoffilesystemvolumesCopiesareguaranteedtobeatomiccheckpointsofentireFSattimeofread-onlycopygenerationModifyingdatarequiresaccesstothesoler/wvolumeChangesdonotpropagatetoread-only copies©SpinnakerLabs,Inc.AFSConclusionsNotquitePOSIXStrongersecurity/permissionsNofilewrite-throughHighavailabilitythroughreplicas,localcachingNotappropriateforallfiletypes©SpinnakerLabs,Inc.TheGoogleFileSystem©SpinnakerLabs,Inc.MotivationGoogleneededagooddistributedfilesystemRedundantstorageofmassiveamountsofdataon
cheapandunreliablecomputersWhynotuseanexistingfilesystem?Google’sproblemsaredifferentfromanyoneelse’sDifferentworkloadanddesignprioritiesGFSisdesignedforGoogleappsandworkloadsGoogleappsaredesignedforGFS©SpinnakerLabs,Inc.AssumptionsHighcomponentfailureratesInexpensivecommoditycomponentsfailoften“Modest”numberofHUGEfilesJustafewmillionEachis100MBorlarger;multi-GBfilestypicalFilesarewrite-once,mostlyappendedtoPerhapsconcurrentlyLargestreamingreadsHighsustainedthroughputfavoredoverlowlatency©SpinnakerLabs,Inc.GFSDesignDecisionsFilesstoredaschunksFixedsize(64MB)ReliabilitythroughreplicationEachchunkreplicatedacross3+chunkserversSinglemastertocoordinateaccess,keepmetadataSimplecentralizedmanagementNodatacachingLittlebenefitduetolargedatasets,streamingreadsFamiliarinterface,butcustomizetheAPISimplifytheproblem;focusonGoogleappsAddsnapshotandrecordappendoperations©SpinnakerLabs,Inc.GFSClientBlockDiagramGFSArchitectureSinglemasterMutiplechunkservers…Cananyoneseeapotentialweaknessinthisdesign?©SpinnakerLabs,Inc.SinglemasterFromdistributedsystemsweknowthisisa:SinglepointoffailureScalabilitybottleneckGFSsolutions:ShadowmastersMinimizemasterinvolvementnevermovedatathroughit,useonlyformetadataandcachemetadataatclientslargechunksizemasterdelegatesauthoritytoprimaryreplicasindatamutations(chunkleases)Simple,andgoodenough!©SpinnakerLabs,Inc.Metadata(1/2)GlobalmetadataisstoredonthemasterFileandchunknamespacesMappingfromfilestochunksLocationsofeachchunk’sreplicasAllinmemory(64bytes/chunk)FastEasilyaccessible©SpinnakerLabs,Inc.Metadata(2/2)Masterhasanoperationlogforpersistentloggingofcriticalmetadataupdatespersistentonlocaldiskreplicatedcheckpointsforfasterrecovery©SpinnakerLabs,Inc.MutationsMutation=writeorappendmustbedoneforallreplicasGoal:minimizemasterinvolvementLeasemechanism:masterpicksonereplicaasprimary;givesita“lease”
formutationsprimarydefinesaserialorderofmutationsallreplicasfollowthisorderDataflowdecoupledfromcontrolflow©SpinnakerLabs,Inc.MutationsDiagram©SpinnakerLabs,Inc.MutationExampleClient1opens"foo"formodify.ReplicasarenamedA,B,andC.Bisdeclaredprimary.Client1sendsdataXforchunktochunkserversClient2opens"foo"formodify.ReplicaBstillprimaryClient2sendsdataYforchunktochunkserversServerBdeclaresthatXwillbeappliedbeforeYOtherserverssignalreceiptofdataAllserverscommitXthenYClients1&2closeconnectionsB'sleaseonchunkislost©SpinnakerLabs,Inc.AtomicrecordappendClientspecifiesdataGFSappendsittothefileatomicallyatleastonceGFSpickstheoffsetworksforconcurrentwritersUsedheavilybyGoogleappse.g.,forfilesthatserveasmultiple-producer/single-consumerqueues©SpinnakerLabs,Inc.Relaxedconsistencymodel(1/2)“Consistent”=allreplicashavethesamevalue“Defined”=replicareflectsthemutation,consistentSomeproperties:concurrentwritesleaveregionconsistent,butpossiblyundefinedfailedwritesleavetheregioninconsistentSomeworkhasmovedintotheapplications:e.g.,self-validating,self-identifyingrecords©SpinnakerLabs,Inc.Relaxedconsistencymodel(2/2)Simple,efficientGoogleappscanlivewithitwhataboutotherapps?Namespaceupdatesatomicandserializable©SpinnakerLabs,Inc.Master’sresponsibilities(1/2)MetadatastorageNamespacemanagement/lockingPeriodiccommunicationwithchunkserversgiveinstructions,collectstate,trackclusterhealthChunkcreation,re-replication,rebalancingbalancespaceutilizationandaccessspeedspreadreplicasacrossrackstoreducecorrelatedfailuresre-replicatedataifredundancyfallsbelowthresholdrebalancedatatosmoothoutstorageandrequestload©SpinnakerLabs,Inc.Master’sresponsibilities(2/2)GarbageCollectionsimpler,morereliablethantraditionalfiledeletemasterlogsthedeletion,renamesthefiletoahiddennamelazilygarbagecollectshiddenfi
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2026山东省精神卫生中心博士、高级岗位招聘29人考试备考题库及答案详解
- 2026年上海市静安区街道办人员招聘考试备考题库及答案详解
- 壶关县2027届数学四上期末学业质量监测试题含解析
- 2026年松原市宁江区法检系统书记员招聘笔试参考题库及答案详解
- 2026年济南市历城区中小学教师招聘考试模拟试题及答案详解
- 2026年济宁邹城市事业单位公开招聘工作人员(卫生类)(48人)考试参考题库及答案详解
- 2026年黑龙江省街道办人员招聘考试备考题库及答案详解
- 2027届云南省红河哈尼族彝族自治州绿春县数学六年级第一学期期末联考模拟试题含解析
- 2026年邯郸市丛台区街道办人员招聘考试参考试题及答案详解
- 安徽省芜湖市繁昌县2027届数学四上期末检测试题含解析
- 基础会计教材电子版
- 美丽中国建设十五五规划讲解
- 2026广西柳州市城中区人民法院招录聘用工作人员3人(二)笔试参考题库及答案详解
- 2026年一元二次方程测试题含答案
- 《水利工程智慧感知与测量技术》课件-31.无人机水利应用案例
- D-二聚体升高诊治与管理专家共识
- 2026年山东省春季高考数学试卷(含答案解析)
- 上海市浦东新区2025-2026学年高一上学期期末考试英语试题
- 2026年入党培训考核测试题及答案
- 厂房照明灯具安装施工方案
- AQT3034-2022《化工过程安全管理导则》核心要点解读
评论
0/150
提交评论