introduction 1 of 2 performance and extension of
play

Introduction (1 of 2) Performance and Extension of Developing - PowerPoint PPT Presentation

4/15/2014 Introduction (1 of 2) Performance and Extension of Developing in-kernel file systems challenging User Space File Understand and deal with kernel code and data structures Steep learning curve for kernel development Aditya


  1. 4/15/2014 Introduction (1 of 2) Performance and Extension of • Developing in-kernel file systems challenging User Space File – Understand and deal with kernel code and data structures – Steep learning curve for kernel development Aditya Raigarhia and Ashish Gehani • No memory protection Stanford and SRI • No use of debuggers • Must be in C • No standard C library • In-kernel implementations not so great ACM Symposium on Applied Computing (SAC) – Porting to other flavors of Unix can be difficult Sierre, Switzerland, March 22-26, 2010 – Needs root to mount – tough to use/test on servers Introduction (2 of 2) Introduction - FUSE • File system in USEr space (FUSE) – framework for Unix- • Modern file system research adds functionality like OSes over basic systems, rather than designing low- • Allows non-root users to develop file systems in user level systems space – Ceph [37] – distributed file system for performance • API for interface with kernel, using fs-type operations and reliability – uses client in users space • Many different programming language bindings • Programming in user space advantages • FUSE file systems can be mounted by non-root users – Wide range of languages • Can compile without re-compiling kernel – Use of 3 rd party tools/libraries • Examples – Fewer kernel quirks (although still need to couple user – WikipediaFS [2] lets users view/edit Wikipedia articles as if code to kernel system calls) local files – SSHFS access via SFTP protocol 1

  2. 4/15/2014 Problem Statement Outline • Prevailing view – user space file systems suffer • Introduction (done) significantly lower performance compared to • Background (next) kernel • FUSE overview – Overhead from context switch, memory copies • Programming for FS • Perhaps changed due to processor, memory and • Benchmarking bus speeds? • Results • Regular enhancements also contribute to performance? • Conclusion • Either way – measurement of “prevailing view” Background – Operating Systems Background – Stackable FS • Stackable file systems [28] allow new features to • Microkernel (Mach [10], Spring [11]) have only be added incrementally basic services in kernel – FiST [40] allows file systems to be described using – File systems (and other services) in user space high-level language – But performance is an issue, not widely deployed – Code generation makes kernel modules – no recompilation required • Extensible OSes (Spin[1], Vino[4]) export OS • But interfaces – cannot do low-level operations (e.g., block layout on – User level code can modify run-time behavior disk, metatdata for i-nodes) – Still in research phase – Still require root to load 2

  3. 4/15/2014 Background – NFS Loopback Background - Misc • Coda [29] is distributes file system • NFS loopback servers [24] puts server in user- – Venus cache manager in user space space with client – Arla [38] has AFS user-space daemon – Provides portability – But not widespread – Good performance • ptrace() – process trace – Working infrastructure for user-level FS • But – Can interacept anything – Limited to NFS weak cache consistency – But significant overhead – Uses OS network stack, which can limit • puffs [15] similar to FUSE but NetBSD performance – FUSE built on puffs for some systems – But puffs not as widespreadh Background – FUSE contrast Background – FUSE in Use • FUSE similar since loadable kernel module • TierStore [6] distributed file system to simply deployment of apps in unreliable networks • Unlike others is mainstream – part of Linux – Uses FUSE since 2.6.14, ports to Mac OSX, OpenSolaris, FreeBSD and NetBSD • Increasing trend for dual OS (Win/Linux) – Reduces risk of obsolete once developed – NTFS-3G [25] open source NTFS uses FUSE • Licensing flexible – free and commercial – ZFS-FUSE [41] is port of Zeta FS to Linux – VMWare disk mount [36] uses FUSE on Linux • Widely used (examples next) 3

  4. 4/15/2014 FUSE Example – SSHFS on Linux Outline https://help.ubuntu.com/community/SSHFS • Introduction (done) • Background (done) % mkdir ccc • FUSE overview (next) % sshfs -o idmap=user claypool@ccc.wpi.edu:/home/claypool ccc % fusermount -u ccc • Programming for FS • Benchmarking • Results • Conclusion FUSE Overview FUSE APIs for User FS On userfs mount, FUSE • kernel module registers • Low-level with VFS – e.g., call to “sshfs” – Resembles VFS – user fs handles i-nodes, pathname userfs provides callback • translations, fill buffer, etc. functions All file system calls (e.g., • – Useful for “from scratch” file systems (e.g., ZFS-FUSE) read() ) proceed normally from other process • High-level When targeted at FUSE dir, • go through FUSE module – Resembles system calls If in page cache, return • – User fs only deals with pathnames, not i-nodes Otherwise, to userfs via • /dev/fuse and libfuse – libfuse does i-node to path translation, fill buffer userfs can do anything • fusermount allows non- (e.g., request data from • – Useful when adding additional functionality ext3 and add stuff) before root users to mount returning data 4

  5. 4/15/2014 FUSE – Hello World (1 of 4) FUSE – Hello World Example Flow Run ~/fuse/example$ mkdir /tmp/fuse ~/fuse/example$ ./hello /tmp/fuse ~/fuse/example$ ls -l /tmp/fuse total 0 -r--r--r-- 1 root root 13 Jan 1 1970 hello ~/fuse/example$ cat /tmp/fuse/hello Hello World! ~/fuse/example$ fusermount -u /tmp/fuse ~/fuse/example$ Callback operations Invoking does ‘mount’ http://fuse.sourceforge.net/helloworld.html http://fuse.sourceforge.net/helloworld.html FUSE – Hello World (2 of 4) Check that path is right Check permissions right (read only) Check that path is right Copy data to buffer Fill in file status structure (type, permissions) http://fuse.sourceforge.net/helloworld.html http://fuse.sourceforge.net/helloworld.html 5

  6. 4/15/2014 Performance Overhead of FUSE : FUSE – Hello World (4 of 4) Switching • When using native (e.g., ext3) – Two user-kernel mode switches (to and from) • Relatively fast since only privilege/unpriviledge – No context switches between processes/address space Copy in directory listings • When using FUSE – Four user-kernel mode switches (adds up to userfs and back) – Two context switches (user process and userfs) • Cost depends upon cores, registers, page table, pipeline http://fuse.sourceforge.net/helloworld.html Performance Overhead of FUSE : Performance Overhead of FUSE : Reading Time for Writing (Write 16 MB file) • FUSE used to have 4 KB read size – If memory constrained, large reads would do many context switch each read • swap out userfs, bring in page, swap in userfs, continue request, swap out userfs, bring in next page … • FUSE now reads in 128 KB chunks with big_writes mount option – Most Unix utilities ( cp , cat , tar ) use 32 KB file buffers Note, benefit from 4KB to 32KB, but not 32KB to 128KB 6

  7. 4/15/2014 Performance Overhead of FUSE : Performance Overhead of FUSE : Memory Copying Memory Cache • For native (e.g., ext3), write copies from • For native (e.g., ext3), read/written data in application to kernel page cache (1x) page cache • For user fs, write copies from application to • For user fs, libfuse and userfs both have data page cache, then from page cache to libfuse, in page cache, too (extra copies) – useful since then libfuse to userfs (3x) make overall more efficient, but reduce size of usable cache • direct_io mount option – bypass page cache, user copy directly to userfs (1x) – But reads can never come from kernel page cache! Outline Language Bindings • 20 language bindings – can build userfs in • Introduction (done) many languages • Background (done) – C++ or C# for high-perf, OO • FUSE overview (done) – Haskell and OCaml for higher order functions • Programming for FS (next) (functional languages) – Erlang for fault tolerant, real-time, distributed • Benchmarking (parallel programming) • Results – Python for rapid development (many libraries) • Conclusion • JavaFuse [27] built by authors 7

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