afs performance
play

AFS Performance Simon Wilkinson Your File System Ltd - PowerPoint PPT Presentation

AFS Performance Simon Wilkinson Your File System Ltd sxw@your-file-system.com Wednesday, 17 October 12 The life of a request vlserver ptserver Cache Network Fileserver Disk Application Manager Wednesday, 17 October 12 The life of a


  1. AFS Performance Simon Wilkinson Your File System Ltd sxw@your-file-system.com Wednesday, 17 October 12

  2. The life of a request vlserver ptserver Cache Network Fileserver Disk Application Manager Wednesday, 17 October 12

  3. The life of a request vlserver ptserver Cache Network Fileserver Disk Application Manager Wednesday, 17 October 12

  4. Application performance • Constantly changing tokens is really expensive Wednesday, 17 October 12

  5. The life of a request vlserver ptserver Cache Network Fileserver Disk Application Manager Wednesday, 17 October 12

  6. vlserver performance • The client accesses the vlserver the first time a new volume is encountered • Caches results for up to 2 hours Wednesday, 17 October 12

  7. The life of a request vlserver ptserver Cache Network Fileserver Disk Application Manager Wednesday, 17 October 12

  8. The Virtual File System • Most modern OSes have a virtual filesystem • Accepts POSIX system calls • Implements common functionality • Provides API which filesystems must implement Wednesday, 17 October 12

  9. Cache Manager in more detail VFS disk filesystem page cache cache manager Wednesday, 17 October 12

  10. Virtual Memory Filesystems (read) • All data operations are mediated by the page cache VFS • VFS checks first for up to date data in cache, and returns this to application page cache • Otherwise, filesystem is requested to fetch date into page cache filesystem • Either way, caller’s data comes from the cache Wednesday, 17 October 12

  11. Virtual Memory Filesystems (write) • Writes go first to the memory cache • Written out to the filesystem in the VFS background, or when requested page cache • Page cache is shared between all filesystems, and managed by the kernel filesystem • Use of virtual memory essential for mmap() support Wednesday, 17 October 12

  12. Cache Manager: Reads VFS disk filesystem page cache cache manager Wednesday, 17 October 12

  13. Cache Manager: Writes VFS disk filesystem page cache cache manager Wednesday, 17 October 12

  14. Cache Manager: Memory cache VFS page cache AFS memcache cache manager Wednesday, 17 October 12

  15. Memory cache: pros and cons • Memory cache is faster than disk cache • Cache size is limited to the memory on your machine • Memory cache space cannot be used for other purposes • Memory cache cannot partially use chunks Wednesday, 17 October 12

  16. Chunksize • The cache is split into a set of chunks dcache x chunksize = blocks • Chunksize is 8k on memory cache, and autotuned on disk cache, according to the cache size • Chunksize also determines the amount of data fetched with each read from the fileserver Wednesday, 17 October 12

  17. Chunksize pros and cons • Chunksize has a big impact on performance • Reading 1Mbyte when the application only wants one byte • Reading a byte a thousand times when the application reads 1Mbyte byte by byte • If your application has no locality of access and a working set much larger than your cache, large chunk sizes really hurt performance Wednesday, 17 October 12

  18. The Global Lock • The OpenAFS cache manager was written when kernels only had interrupt and normal contexts • SMP conversion was done by means of a global lock • Parallel access speeds are poor Wednesday, 17 October 12

  19. Linux page copying improvements kilobytes/sec OpenAFS 1.4 OpenAFS 1.6 ext3 (cache fs) 2250000 1500000 750000 size 64k 128k 256k 512k 1M 2M 4M 8M 16M 32M 64M 128M 256M 512M 1G 2G 4G Wednesday, 17 October 12

  20. Avoiding the Cache • fs bypassthreshold -size <filesize> • Any files larger than filesize will not be cached • Use file options to allow application to bypass cache open(“/afs/mycell/path/to/file”, O_RDONLY | O_DIRECT) Wednesday, 17 October 12

  21. Using the cache more • fs precache -size <filesize> • Controls a readahead size Wednesday, 17 October 12

  22. Perception and storebehind • On Unix, AFS is write on close • Users (and applications) don’t expect close to take a long time! • fs storebehind allows writes to the fileserver to happen in the background • BUT if the write fails, no one will know Wednesday, 17 October 12

  23. Bulkstat, fakestat and friends • Mainly concentrating on data operations, but metadata ops can have performance impact too • The afsd option -fakestat avoids looking up the root.cell volume of every cell in /afs • The option -fakestat-all blocks stat lookups of all mountpoints • Bulkstat (not on Mac OS X) lumps multiple stat operations into a single RPC Wednesday, 17 October 12

  24. Tuning the cache manager • Apart from the stuff already mentioned, auto tuning works well in 1.6 • Make sure your startup script doesn’t hard code in appropriate values! Wednesday, 17 October 12

  25. The life of a request vlserver ptserver Cache Network Fileserver Disk Application Manager Wednesday, 17 October 12

  26. Network performance RX UDP stack Network RX UDP stack Wednesday, 17 October 12

  27. RX: Ooops 20000 15000 10000 5000 0 1.5.50 1.5.52 1.5.54 1.5.56 1.5.58 1.5.60 1.5.62 1.5.64 1.5.66 1.5.68 1.5.70 1.5.72 1.5.74 1.5.76 1.5.78 Time in ms to perform an RPC with 20Mbyte of data with each OpenAFS version Wednesday, 17 October 12

  28. RX performance work 2000 1500 1000 500 0 OpenAFS 1.4 OpenAFS 1.6 OpenAFS master Experimental RX Wednesday, 17 October 12

  29. UDP Stack • Don’t run out of packets • 30 simultaneous clients moving 1Mbyte of data each is enough to swamp Linux’s default UDP buffer size [magrathea]sxw: netstat -su Udp: 7200071 packets received 123 packets to unknown port received. 3283 packet receive errors 7194192 packets sent RcvbufErrors: 3283 Wednesday, 17 October 12

  30. Jumbograms • Jumbograms send UDP payloads larger than the standard Ethernet MTU • Now turned off by default - it broke on too many networks • BUT - fragmented packets can actually be faster • Also provides a way of exploiting larger MTUs Wednesday, 17 October 12

  31. The life of a request vlserver ptserver Cache Network Fileserver Disk Application Manager Wednesday, 17 October 12

  32. ptserver performance • Fileserver contacts the ptserver with every new connection • Until the ptserver responds, fileserver thread is blocked • There aren’t many fileserver threads • Be very careful about ptserver response time, and shutting down ptservers for maintenance Wednesday, 17 October 12

  33. The life of a request vlserver ptserver Cache Network Fileserver Disk Application Manager Wednesday, 17 October 12

  34. Fileserver tuning - threads • Each simultaneous incoming call requires a thread rxdebug <server> Trying 192.168.0.1 (port 7000): Free packets: 3279, packet reclaims: 554, calls: 575230, used FDs: 64 not waiting for packets. 0 calls waiting for a thread 122 threads are idle 0 calls have waited for a thread • OpenAFS 1.6 allows a maximum of 16384 threads (of which 16376 are available for calls) Wednesday, 17 October 12

  35. Ensure you have sufficient callbacks • Fileserver has a limited amount of space for callbacks, set at run time. • Check whether you’re running out ! ./xstat_fs_test -collID 3 -fsname lammasu.inf.ed.ac.uk 0 DeleteFiles 1517 DeleteCallBacks 0 BreakCallBacks 382707 AddCallBack 0 GotSomeSpaces 23265 DeleteAllCallBacks 33 nFEs 192 nCBs 100000 nblks 7327 CBsTimedOut 0 nbreakers 0 GSS1 0 GSS2 0 GSS3 0 GSS4 0 GSS5 Wednesday, 17 October 12

  36. UDP buffers • Make sure that the -udpsize parameter is big enough! • Don’t worry about -rxpcks - we autotune this now Wednesday, 17 October 12

  37. Abort threshold • Fileserver protects itself against misbehaving clients • If a client sends more than a configured number of failed requests it is throttled • Very easy to be throttled by doing, for example, ls on a directory you don’t have permission for • -abortthreshold controls this Wednesday, 17 October 12

  38. The life of a request vlserver ptserver Cache Network Fileserver Disk Application Manager Wednesday, 17 October 12

  39. Journalling woes Wednesday, 17 October 12

  40. Dodgy RAID • Poor performance RAID arrays can have big effects on fileserver performance • In particular, RAID 5 is evil Wednesday, 17 October 12

  41. Tuning your OS • Normal operating system tuning for high speed I/O applies • Memory not used by the fileserver will be used for page cache - the more the merrier! Wednesday, 17 October 12

  42. Questions Wednesday, 17 October 12

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend