workload driven analysis of file systems in shared multi
play

Workload-driven Analysis of File Systems in Shared Multi-Tier - PowerPoint PPT Presentation

Workload-driven Analysis of File Systems in Shared Multi-Tier Data-Centers over InfiniBand K. Vaidyanathan P. Balaji H. W. Jin D.K. Panda Network-Based Computing Laboratory Department of Computer Science and Engineering The Ohio


  1. Workload-driven Analysis of File Systems in Shared Multi-Tier Data-Centers over InfiniBand K. Vaidyanathan P. Balaji H. –W. Jin D.K. Panda Network-Based Computing Laboratory Department of Computer Science and Engineering The Ohio State University

  2. Presentation Outline • Introduction and Background • Characterization of local and network- based file systems • Multi File System for Data-Centers • Experimental Results • Conclusions

  3. Introduction • Exponential growth of Internet – Primary means of electronic interaction – Online book-stores, World-cup scores, Stock markets – Ex. Google, Amazon, etc • Highly Scalable and Available Web-Services • Performance is critical for such Services • Utilizing Clusters for Web-Services? [shah01] – High Performance-to-cost ratio – Has been proposed by Industry and Research Environments [shah01]: CSP: A Novel System Architecture for Scalable Internet and Communication Services. H. V. Shah, D. B. Minturn, A. Foong, G. L. McAlpine, R. S. Madukkarumukumana and G. J. Regnier In USITS 2001

  4. Cluster-Based Data-Centers Web Proxy Server Clients Server (Apache) Storage WAN WAN Application Database Server Server (PHP) (MySQL) • Nodes are logically partitioned – provides specific services (serving static and dynamic content) – Use high speed interconnects like InfiniBand, Myrinet, etc. • Requests get forwarded through multiple tiers • Replication of content on all nodes

  5. Shared Cluster-Based Data-Centers A } Web B Proxy Clients C Server Server } Website A A Storage B C } Website B A WAN WAN B Website C C Application Database Server Server • Hosting several unrelated services on a single data-center – Currently used by several ISPs and Web Service Providers (IBM, HP) • Replication of content – Amount of data replicated increases linearly with the number of web- sites hosted

  6. Issues in Shared Cluster-Based Data-Centers • File System Caches being shared across multiple web-sites • Under-utilization of aggregate cache of all nodes • Web-site Content – Replication of content on all nodes if we use local file system – Need to fetch the document via network if we use network file system, however no replication required • Can we adapt the file system to avoid these?

  7. File System Interactions Network-based File Systems Web Local file system Server Proxy Server Local file system SAN SAN SAN SAN Local file system Database Server Application Server Data-Center File System Interaction Interaction

  8. Existing File Systems Metadata Meta Manager Data Local file system Web Server I/O(OST) Data Node SAN SAN compute compute node node compute compute node node I/O(OST) Data Node Server-side Cache Client-side Cache • Network-based File System: Parallel Virtual File System (PVFS) and Lustre (supports client-side caching) • Local File System: ext3fs and memory file system (ramfs)

  9. Presentation Outline • Introduction and Background • Characterization of local and network- based file systems • Multi File System for Data-Centers • Experimental Analysis • Conclusions

  10. Characterization of local and network-based File Systems • Network Traffic Requirements • Aggregate Cache • Cache Pollution Effects

  11. Network Traffic Requirements • Absolute Network Traffic generated – Static Content – Dynamic Content • Network Utilization – Large/Small burst (static or dynamic content) • Overhead of Metadata Operations

  12. Aggregate Cache in Data-Centers • Local File Systems use only single node’s cache – Small files get huge benefits, if in memory. Otherwise, we pay a penalty of accessing the disk – Large Files may not fit in memory and also have high penalties in accessing the disk • Network File Systems use aggregate cache from all nodes – Large Files, if striped, can reside in file system cache on multiple nodes – Small files also get benefits due to aggregate cache

  13. Cache Pollution Effects • Working set – frequently accessed documents; usually fits in memory • Shared Data-Centers – Multiple web-sites share the file system cache; each website has lesser amount of file system cache to utilize – Bursts of requests/accesses to one web-site may result in cache pollution – May result in drastic drop in the number of cache hits

  14. Presentation Outline • Introduction and Background • Characterization of local and network- based file systems • Multi File System for Data-Centers • Experimental Results • Conclusions

  15. Multi File System for Data-Centers Characterization ext3fs ramfs pvfs lustre Network Traffic Min Min More Min generated traffic Use of Aggregate No No Yes Yes Cache Cache pollution Yes No Yes Yes effects Metadata No No Yes Yes overhead

  16. Multi File System for Data-Centers • A combination of file systems for different environments • Memory file system and local file system (ext3fs) for workloads with high temporal locality • Memory file system and network file system (pvfs/lustre) for workloads with low temporal locality

  17. Presentation Outline • Introduction and Background • Characterization of local and network- based file systems with data-centers • Multi File System for Data-Centers • Experimental Results • Conclusions

  18. Experimental Test-bed • Cluster 1 with: – 8 SuperMicro SUPER X5DL8-GG nodes; Dual Intel Xeon 3.0 GHz processors – 512 KB L2 Cache, 2 GB memory; PCI-X 64 bit 133 MHz • Cluster 2 with: – 8 SuperMicro SUPER P4DL6 nodes; Dual Intel Xeon 2.4 GHz processors – 512 KB L2 Cache, 512 MB memory; PCI-X 64 bit 133 MHz • Mellanox MT23108 Dual Port 4x HCAs; MT43132 24-port switch • Apache 2.0.48 Web and PHP 4.3.7 Servers; MySQL 4.0.12, PVFS 1.6.2, Lustre 1.0.4

  19. Workloads • Zipf workloads: the relative probability of a request for the i th most popular document is proportional to 1/i α with α ≤ 1 – High Temporal locality (constant α ) – Low Temporal locality (varying α ) • TPC-W traces according to the specifications Class File Sizes Size Class 0 1K – 250K 25 MB Class 1 1K – 1MB 100 MB Class 2 1K – 4MB 450 MB Class 3 1K – 16MB 2 GB Class 4 1K – 64MB 6 GB

  20. Experimental Analysis (Outline) • Basic Performance of different file systems • Network Traffic Requirements • Impact of Aggregate Cache • Cache Pollution Effects • Multi File System for Data-Centers

  21. Basic Performance Latency ext3fs ramfs pvfs lustre (usecs) (usecs) (usecs) (usecs) 4K 1M 4K 1M 4K 1M 4K 1M Open & Close 1060 1060 876 876 6 6 6 6 overhead Read Latency 7.7 4 1602 4 1578 680 13825 1998 (cache) Read Latency (no 1500 76312 1400 2379 9600 44108 3000 50713 cache) • Network File Systems incur high overhead for metadata operations (open() and close()) • Lustre supports client-side cache • For large files, network-based file system does better than local file system due to striping of the file

  22. Network Traffic Requirements 800000 800000 #packets sent/received #packets sent/receiv 600000 600000 400000 400000 200000 200000 0 0 Zipf Zipf Zipf Zipf TPCW TPCW TPCW TPCW Class 0 Class 1 Class 2 Class 3 Class 0 Class 1 Class 2 Class 3 ext3fs pvfs lustre ext3fs pvfs lustre • Absolute Network Traffic Generated: – Increases proportionally compared to the local file system for PVFS – For Lustre, the traffic is close to that of the local file system – For dynamic content, the network traffic does not increase with increase in database size

  23. Impact of Caching and Metadata operations 14000 250 12000 200 10000 ext3fs ext3fs 150 8000 ramfs ramfs T P S T P S pvfs 6000 pvfs 100 lustre lustre 4000 50 2000 0 0 Zipf Zipf Zipf Zipf TPCW TPCW TPCW TPCW Class 0 Class 1 Class 2 Class 3 Class 0 Class 1 Class 2 Class 3 • Local File Systems are better for workloads with high temporal locality • Surprisingly Lustre performs comparable with local file systems

  24. Impact of Aggregate Cache 100 80 ext3fs 60 TPS pvfs 40 lustre 20 0 α = α = α = α = α = α = α = α = α = 0.8 0.75 0.7 0.65 0.6 0.55 0.5 0.4 0.3 Workload with varying temporal locality • Aggregate Cache improves data-center performance for network-based file systems

  25. Cache Pollution Effects in Shared Data-Centers Percentage of Cached/NonCached Content 100% 80% 60% NonCached Cached 40% 20% 0% Single Shared Single Shared Single Shared Single Shared Single Shared Zipf Class Zipf Class Zipf Class Zipf Class Zipf Class 0 1 2 3 4 • Small Workloads, web-sites are not affected • Large Workloads, cache pollution affects multiple web-sites • Placing files on memory file system might avoid the cache pollution effects

  26. Multi File System Data-Centers 50% 60% Performance Improvement P erfo rm an ce Im p ro vem en t 50% 40% 40% Zipf Class 0 TPCW Class 0 30% Zipf Class 1 30% TPCW Class 1 20% Zipf Class 2 TPCW Class 2 20% 10% 10% 0% 0% Low Medium Heavy Low Medium Heavy Load Load Load Load Load Load • Performance benefits for static content is close to 48% • Performance benefits for dynamic content is close to 41%

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