COS 318: Operating Systems. File Systems: Networked, Abstractions and Protection. Topics. Evolved Data Center Storage Hierarchy

Size: px
Start display at page:

Download "COS 318: Operating Systems. File Systems: Networked, Abstractions and Protection. Topics. Evolved Data Center Storage Hierarchy"

Transcription

1 Topics COS 18: Operating Systems Fie Systems: Networked, Abstractions and Protection What s behind the fie system: Networked hierarchy More on the fie system abstraction Fie system protection Jaswinder Pa Singh Computer Science Department Princeton University ( Traditiona Data Center Hierarchy Evoved Data Center Hierarchy Cients LAN Server SAN Remote mirror Cients LAN Network Attached (NAS) w/ snapshots to protect data Remote mirror Onsite Backup Offsite backup Onsite Backup Offsite backup 4 5 1

2 Aternative with no Tape Pubic Coud Hierarchy LAN Remote mirror w/ snapshots to protect data Cients Network Attached (NAS) Cients Remote Backup Onsite Backup Dedupication Capacity and bandwidth optimization Interfaces Geo-pex Exampes: Googe GFS, Spanner, Appe icoud, Amazon S, Dropbox, Mozy, etc 6 NFS Protocos Network Fie System u u 7 Mutipe cients share an NFS server NFS v2 was introduced in eary 80s u Mounting Network NFS server u Cients NFS server can expose directories for remote access Cient sends a mount request with path name to server Server returns a hande (fie system type, disk, i-node of directory, security information) Automount / /dev /u/cos126 /bin /u/cos18 Cient Directory and fie accesses proj No open and cose Use handes to read and write 1 7 /u 2 Server 8 2

3 NFS Protoco (v) NFS Architecture 1. NULL: Do nothing 2. GETATTR: Get fie attributes. SETATTR: Set fie attributes 4. LOOKUP: Lookup fiename 5. ACCESS: Check Access Permission 6. READLINK: Read from symboic ink 7. READ: Read From fie 8. WRITE: Write to fie 9. CREATE: Create a fie 10. MKDIR: Create a directory 11. SYMLINK: Create a symboic ink 12. MKNOD: Create a specia device 1. REMOVE: Remove a Fie 14. RMDIR: Remove a Directory 15. RENAME: Rename a Fie or Directory 16. LINK: Create Link to an object 17. READDIR: Read From Directory 18. READDIRPLUS: Extended read from directory 19. FSSTAT: Get dynamic fie system information 20. FSINFO: Get static fie system Information 21. PATHCONF: Retrieve POSIX information 22. COMMIT: Commit cached data on a server to stabe storage 9 Loca FS NFS Server Virtua fie system Loca FS Buffer cache NFS server Network NFS cient Cient kerne Virtua fie system Loca FS Buffer cache Loca FS 10 NFS Cient Caching Issues u Consistency among mutipe cient caches Cient cache contents may not be up-to-date Mutipe writes can happen simutaneousy u Soutions Expiration Read-ony fie and directory data (expire in 60 seconds) Data written by the cient machine (write back in 0 seconds) No shared caching A fie can be cached at ony one cient cache Network ock manager Sequentia consistency (one writer or N readers) NFS Protoco Deveopment u Version 2 issues 18 operations Size: imit to 4GB fie size Write performance: server writes data synchronousy Severa other issues u Version changes (most products sti use this) 22 operations Size: increase to 64 bit Write performance: WRITE and COMMIT Fixed severa other issues Sti stateess u Version 4 changes 42 operations Sove the consistency issues Security issues Statefu 11 12

4 Topics Revisit Fie System Abstractions What s behind the fie system: networked storage hierarchy More on the fie system abstraction Fie system protection Network fie system Map to oca fie systems Exposes fie system API NFS, CIFS, etc Loca fie system Impement fie system abstraction on bock storage Exposes fie system API Voume manager Logica voumes of bock storage Map to physica storage RAID and reconstruction Exposes bock API Physica storage Previous ectures Network Fie System Loca Fie System Voume Manager Physica storage 8 Voume Manager Fie versus Bock Abstractions Group mutipe storage partitions into a ogica voume Virtuaization of capacity and performance No need to dea with physica disk or sector numbers Read(vo#, bock#, buf, n) Reiabe bock storage Incude RAID, toerating device faiures Provide error detection at bock eve Remote abstraction Bock storage in the coud Remote voumes for disaster recovery Remote mirrors can be spit or merged for backups How to impement? OS kerne: Windows, OSX, Linux, etc. subsystem: EMC, Hitachi, HP, IBM, NetApp Fie abstraction Byte oriented Named fies Users protected from each other Robust to machine faiures Emuate bock storage interface Disk/Voume abstraction Bock oriented Bock numbers No protection among users of the system Data might be corrupted if machine crashes Support fie systems, database systems, etc

5 Fie Abstraction: Fie Structures Fie Abstraction: Fie Types Byte sequence Read or write N bytes Unstructured or inear Record sequence Fixed or variabe ength Read or write a number of records Tree Records with keys Read, insert, deete a record (typicay using B-tree) ASCII Binary data Record Tree An Unix executabe fie header: magic number, sizes, entry point, fags text data reocation bits symbo tabe Devices Character specia fies (to mode terminas, printers) Bock specia fies (to mode disks) Everything ese in the system Fie Abstraction: Fie Operations Operations for sequence of bytes fies Create: create a fie (mapping from a name to a fie) Deete: deete a fie Open: incuding authentication Cose: done with accessing a fie Seek: jump to a particuar ocation in a fie Read: read some bytes from a fie Write: write some bytes to a fie A few more operations on directories: ater Impementation chaenges Keep disk accesses ow Keep space overhead ow Fie system abstraction u Directory Group of named fies or subdirectories Mapping from fie name to fie metadata ocation u Path String that uniquey identifies fie or directory Ex: /cse/www/education/courses/ cse451/12au u Links Hard ink: ink from name to metadata ocation Soft ink: ink from name to aternate name u Mount Mapping from name in one fie system to root of another 1 5

6 Fie Access Patterns Sequentia (the common pattern) Fie data processed sequentiay Exampe: Editor writes out a fie Random access Access a bock in fie directy Exampe: Read a message in an inbox fie Keyed access Search for a record with particuar vaues Usuay not provided by today s fie systems Exampes: Database search and indexing Fie System vs. Virtua Memory Simiarity Location transparency Size "obiviousness" Protection Fie system is easier than VM in some ways Fie system mappings can be sow Fies are dense and mosty sequentia, whie page tabes dea with sparse address spaces and random accesses Fie system is more difficut than VM in some ways Each ayer of transation causes potentia I/Os Memory space for caching is never enough Fie size range vary: many < 10k, some > GB Impementation must be reiabe VM Page Tabe vs. Fie System Metadata Topics Page tabe Manage the mappings of an address space Map virtua page # to physica page # Check access permission and iega addressing TLB does it a in one cyce Fie metadata Manage the mappings of fies Map byte offset to disk bock address Check access permission and iega addressing Impemented in software, may cause I/Os What s behind the fie system: hierarchy More on fie system abstraction Fie system protection 15 6

7 Protection: Poicy vs. Mechanism Poicy is about what Mechanism is about how A protection system is the mechanism to enforce a security poicy Same set of choices, no matter what poicies A security poicy defines acceptabe and unacceptabe behaviors. Exampes: A given user can ony aocate 4GB of disk storage No one but root can write to the password fie A user is not aowed to read others mai fies Protection Mechanisms Authentication Identity check Unix: password Credit card: ast 4 digits of credit card # + SSN + zipcode Airport: driver s icense or passport Authorization Determine if x is aowed to do y Need a simpe database Access enforcement Enforce authorization decision Must make sure there are no oophoes Authentication Usuay done with passwords Reativey weak, because you must remember them Passwords are stored in an encrypted form Use a secure hash (one way ony) Issues Passwords shoud be obscure, to prevent dictionary attacks Each user has many passwords Aternatives? Protection Domain Once identity known, provides rues E.g. what is Bob aowed to do? E.g. who can do what to fie A? Protection matrix: domains vs. resources Fie A Printer B Fie C Domain 1 R W RW Domain 2 RW W Domain R RW

8 By Coumns: Access Contro Lists (ACLs) Each object has a ist of <user, priviege> pairs ACL is simpe, impemented in most systems Owner, group, word Impementation considerations Stores ACLs in each fie Use ogin authentication to identify Kerne impements ACLs Any issues? By Rows: Capabiities For each user, there is a capabiity ist A ists of <object, priviege> pairs Capabiities provide both naming and protection Can ony see an object if you have a capabiity Impementation considerations Architecture support Capabiities stored in the kerne Capabiities stored in the user space in encrypted format Issues? Access Enforcement Use a trusted party to Enforce access contros Protect authorization information Kerne is the trusted party This part of the system can do anything it wants If there is a bug, the entire system coud be destroyed Want it to be as sma & simpe as possibe Security is ony as strong as the weakest ink in the protection system Some Easy Attacks Abuse of vaid priviege On Unix, super-user can do anything Read your mai, send mai in your name, etc. If you deete the code for COS18 project 5, your partner is not happy Spoier/Denia of service (DoS) Use up a resources and make system crash Run she script to: whie(1) { mkdir foo; cd foo; } Listener Passivey watch network traffic

9 No Perfect Protection System Cannot prevent bad things, can ony make it difficut to do them There are aways ways to defeat protection burgary, bribery, backmai, budgeoning, etc. Every system has hoes Summary hierarchy can be compex Reiabiity, security, performance and cost Many things are hidden Key storage ayers above hardware Voume or bock storage Loca fie system Network fie system Protection ACL is the defaut in fie systems More protection is needed in the coud

CSE120 Principles of Operating Systems. Prof Yuanyuan (YY) Zhou I/O & File Systems

CSE120 Principles of Operating Systems. Prof Yuanyuan (YY) Zhou I/O & File Systems CSE120 Principes of Operating Systems Prof Yuanyuan (YY) Zhou I/O & Fie Systems Fie Systems First we discuss properties of physica disks Structure Performance Scheduing Then we discuss how we buid fie

More information

pqireader User Guide Power Quotient International Co., Ltd. App for pqireader series USB Drive REVISION HISTORY

pqireader User Guide Power Quotient International Co., Ltd. App for pqireader series USB Drive REVISION HISTORY Power Quotient Internationa Co., Ltd. pqireader User Guide App for pqireader series USB Drive REVISION HISTORY Version Date Reason 1.0 1/26/2017 Created for first version Tabe of Contents 1. Introduction...

More information

The Importance of Bicycling and Bicyclists Needs

The Importance of Bicycling and Bicyclists Needs Chapter 2 The Importance of Bicycing and Bicycists Needs The overa goa of the adopted regiona transportation pan is to provide an integrated, a-mode transportation system, which offers the efficient, effective,

More information

Frequency of Regulatory Inspections. Hernández, D.G.; Tellería, D.M. and Jordan, O.D.

Frequency of Regulatory Inspections. Hernández, D.G.; Tellería, D.M. and Jordan, O.D. Frequency of Reguatory Inspections Hernández, D.G.; Teería, D.M. and Jordan, O.D. Presentado en: Internationa Conference on the Safety of Radiation Sources and the Security of Radioactive Materias. Dijon,

More information

Microsoft System Center Data

Microsoft System Center Data U ft i V F_R S! TA TSBIB L! OTHEK MAMMOVER J Microsoft System Center Data Protection Manager 2012 SP1 Learn how to deploy, monitor, and administer System Center Data Protection Manager 2012 SP1 Steve Buchanan

More information

Advanced Usage of the WRF Preprocessing System

Advanced Usage of the WRF Preprocessing System * Advanced Usage of the WRF Preprocessing System Michae Duda *NCAR is sponsored by the Nationa Science Foundation Outine The GEOGRID.TBL fie What is the GEOGRID.TBL fie? Ingesting new static fieds Exampes:

More information

Marking Guidelines 2010 examination June series. Biology Unit 6T A2 Investigative Skills Assignment. General Certificate of Education BIO6T/P10/MG

Marking Guidelines 2010 examination June series. Biology Unit 6T A2 Investigative Skills Assignment. General Certificate of Education BIO6T/P10/MG Genera Certificate of Education Bioogy Unit 6T A2 Investigative Skis Assignment BIO6T/P10/MG Marking Guideines 2010 examination June series WMP/Jun10/BIO6T/P10/MG Bioogy - AQA GCE Unit 6T/P/Marking Guideines/2010

More information

Chapter 10: File-System Interface Dr. Varin Chouvatut. Operating System Concepts 8 th Edition,

Chapter 10: File-System Interface Dr. Varin Chouvatut. Operating System Concepts 8 th Edition, Chapter 10: Fie-System Iterface Dr. Vari Chouvatut Operatig System Cocepts 8 th Editio, Siberschatz, Gavi ad Gage 2010 Chapter 10: Fie-System Iterface Fie Cocept Access Methods Directory Structure Fie-System

More information

PRACTICAL APPLICATION OF STATIC HAZARD ASSESSMENT FOR DSEAR COMPLIANCE

PRACTICAL APPLICATION OF STATIC HAZARD ASSESSMENT FOR DSEAR COMPLIANCE PRACTICAL APPLICATION OF STATIC HAZARD ASSESSMENT FOR DSEAR COMPLIANCE Graeme R Eis, Senior Safety Consutant ABB Engineering Services, Daresbury Park, Daresbury, Warrington, Cheshire WA4 4BT, UK KEYWORDS:

More information

exsm.cluster High Availability for TSM Server Michael Abel & Bruno Friess TSM Symposium Oxford September 2005 Hier Kundenlogo

exsm.cluster High Availability for TSM Server Michael Abel & Bruno Friess TSM Symposium Oxford September 2005 Hier Kundenlogo Hier Kundenlogo TSM Symposium -Logo vor weißem Hintergrund, dann Größe anpassen und Oxford Text löschen - Logo transparent (GIF), dann Block löschen - ohne Logo: Text+Block löschen September 2005 exsm.cluster

More information

Delta Compressed and Deduplicated Storage Using Stream-Informed Locality

Delta Compressed and Deduplicated Storage Using Stream-Informed Locality Delta Compressed and Deduplicated Storage Using Stream-Informed Locality Philip Shilane, Grant Wallace, Mark Huang, & Windsor Hsu Backup Recovery Systems Division EMC Corporation Motivation and Approach

More information

Swim for Tri : SFT SWIM PLANS. Introduction to Fitness Training

Swim for Tri : SFT SWIM PLANS. Introduction to Fitness Training Swim for Tri : SFT SWIM PLANS Introduction to Fitness Training Introduction to fitness training This two-week pan is to hep introduce you to fitness swimming and makes an idea pathway to our onger training

More information

500 SERIES ADVANTAGES

500 SERIES ADVANTAGES K-FLO 00 SERIES Sizes -20 K-FL O B U T T E R F L Y V A L V E S 00 SERIES: SIZES -20 AWWA C0 Compiant he K-Fo 00 Series is a heavy-duty resiient seated butterfy vave ine in fu compiance with AWWA C0 for

More information

(I) to perform the measure on fish behaving as close as possible from their natural: behaviour and physiological condition,

(I) to perform the measure on fish behaving as close as possible from their natural: behaviour and physiological condition, i - FREON P GEG Fisheries Acou5ti ~ Gcience G Technoogy E FAST:) Working Group Meeting, Ostende, Begium, 9-22 Apri, 986, Not to be cited without permission of the authors Ne pas citer sans autorisation

More information

Cambio. A File Format Translation and Analysis Application Now Being Integrated with Nucleonica. George P. Lasche, Ph.D.

Cambio. A File Format Translation and Analysis Application Now Being Integrated with Nucleonica. George P. Lasche, Ph.D. Cambio A Fie Format Transation and Anaysis Appication Now Being Integrated with Nuceonica George P. Lasche, Ph.D. Sandia is a mutiprogram aboratory operated by Sandia Corporation, a Lockheed Martin Company,

More information

XC2 Client/Server Installation & Configuration

XC2 Client/Server Installation & Configuration XC2 Client/Server Installation & Configuration File downloads Server Installation Backup Configuration Services Client Installation Backup Recovery Troubleshooting Aug 12 2014 XC2 Software, LLC Page 1

More information

High usability and simple configuration or extensive additional functions the choice between Airlock Login or Airlock IAM is yours!

High usability and simple configuration or extensive additional functions the choice between Airlock Login or Airlock IAM is yours! High usability and simple configuration or extensive additional functions the choice between Airlock Login or Airlock IAM is yours! Airlock Login Airlock IAM When combined with Airlock WAF, Airlock Login

More information

Overview of the CONDUITS framework

Overview of the CONDUITS framework Overview of the CONDUTS framework CONDUTS training workshop 26 November 2014 Madrid oannis Kaparias, City University London Niv Eden, Technion srae nstitute of Technoogy Outine CONDUTS KPs framework Requirements

More information

Log2fs or how to achieve IO/s

Log2fs or how to achieve IO/s fs or how to achieve 150.000 IO/s Lazybastard.org September 24, 2010 fs or how to achieve 150.000 IO/s Just a bunch of random hacks Lazybastard.org September 24, 2010 Just a bunch of random hacks Flash

More information

LiteSpeed for SQL Server 6.5. Integration with TSM

LiteSpeed for SQL Server 6.5. Integration with TSM LiteSpeed for SQL Server 6.5 Integration with TSM 2011 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide

More information

Operation Guide 3283

Operation Guide 3283 MO1104-EA Operation Guide 3283 About This Manua (Light) Depending on the mode of your watch, dispay text appears either as dark figures on a ight background or ight figures on a dark background. A sampe

More information

ID: Cookbook: browseurl.jbs Time: 03:38:04 Date: 30/04/2018 Version:

ID: Cookbook: browseurl.jbs Time: 03:38:04 Date: 30/04/2018 Version: ID: 57282 Cookbook: browseurl.jbs Time: 03:38:04 Date: 30/04/2018 Version: 22.0.0 Table of Contents Analysis Report Overview General Information Detection Confidence Classification Analysis Advice Signature

More information

Fencing Time Version 4.3

Fencing Time Version 4.3 Fencing Time Version 4.3 Upgrading your Fencing Time Server October 2017 Copyright 2017 by Fencing Time, LLC. All rights reserved. Overview Periodically, a new version of Fencing Time is released. In most

More information

Wavelet Packet Analysis and Empirical Mode Decomposition for the Fault Diagnosis of Reciprocating Compressors

Wavelet Packet Analysis and Empirical Mode Decomposition for the Fault Diagnosis of Reciprocating Compressors Proceedings of the 3rd Internationa Conference on Automation & Computing, University of Huddersfied, Huddersfied, UK, 7-8 September 017 Waveet Packet Anaysis and Empirica Mode Decomposition for the Faut

More information

Sonic Cheer for the excitement 1. for the excitement. Product Information Guide

Sonic Cheer for the excitement 1. for the excitement. Product Information Guide Sonic Cheer for the excitement 1 for the excitement Product Information Guide 2 Sonic Cheer for the excitement Give a Cheer Everybody, on your feet! Sonic presents Cheer, a we-rounded ineup of products

More information

Session: I03 TSM is not just a black box. Carolyn Sanders EDS. May 19, :30 p.m. 02:30 p.m. Platform: LUW

Session: I03 TSM is not just a black box. Carolyn Sanders EDS. May 19, :30 p.m. 02:30 p.m. Platform: LUW Session: I03 TSM is not just a black box Carolyn Sanders EDS May 19, 2008 01:30 p.m. 02:30 p.m. Platform: LUW 1 Little black box Humor If the "black box" flight recorder is never damaged during a plane

More information

Instructors: Randy H. Katz David A. PaGerson hgp://inst.eecs.berkeley.edu/~cs61c/fa10. Fall Lecture #39. Agenda

Instructors: Randy H. Katz David A. PaGerson hgp://inst.eecs.berkeley.edu/~cs61c/fa10. Fall Lecture #39. Agenda 2/2/ CS 6C: Great Ideas in Computer Architecture (Machine Structures) Project 3 Speed- up and RAID Instructors: Randy H Katz David A PaGerson hgp://insteecsberkeleyedu/~cs6c/fa 2// Fall 2 - - Lecture #39

More information

Colorado-Wyoming Chapter National Multiple Sclerosis Society. Colorado. Sponsorship. Opportunities

Colorado-Wyoming Chapter National Multiple Sclerosis Society. Colorado. Sponsorship. Opportunities Coorado-Wyoming Chapter Nationa Mutipe Scerosis Society Coorado Sponsorship Opportunities 2015 What is Bike MS? Bike MS, now in its 30th year, is a two-day, 150 mie journey aong some of Coorado s most

More information

ID: Cookbook: browseurl.jbs Time: 15:40:31 Date: 11/04/2018 Version:

ID: Cookbook: browseurl.jbs Time: 15:40:31 Date: 11/04/2018 Version: ID: 54174 Cookbook: browseurl.jbs Time: 15:40:31 Date: 11/04/2018 Version: 22.0.0 Table of Contents Table of Contents Analysis Report Overview General Information Detection Confidence Classification Analysis

More information

Estimation of energy expenditure from expired air

Estimation of energy expenditure from expired air Estimation of energy expenditure from expired air Medica Statistics Branch, Nationa Coa Board, London., Engand LIDDELL, F. D. K. Estimation of energy expenditure from expired air. J. App. Physio. 18(1):

More information

The Pursuit of Excellence and an Active Lifestyle

The Pursuit of Excellence and an Active Lifestyle The Pursuit of Exceence and an Active Lifestye s oo Water P Term g n o L o Guide t Ath ment p o e v e ete D OFFICIALS COACHES Long-Term Athete Deveopment COMPETITIONS BLUE Exceence ORANGE Competitive for

More information

AUTOMATIC MARINE AND RV TOILETS

AUTOMATIC MARINE AND RV TOILETS AUTOMATIC MARINE AND RV TOILETS 1 THE INVENTOR, DESIGNER AND MANUFACTURER SINCE 1958, SFA SANIFLO IS THE WORLD S LEADER OF MACERATING TOILETS FOR THE MARINE AND RECREATIONAL VEHICLE INDUSTRIES Speciay

More information

Activities Featuring Geometry

Activities Featuring Geometry Activities Featuring Geometry Strange Wind (a poem in A Light in the Attic) (1981) by She Siverstein HarperCoins, ISBN #0060256737 Let s Fy a Kite (2000) by Stuart Murphy HarperCoins, ISBN #0064467377

More information

Bareos, ZFS and Puppet. Christian Reiß Symgenius

Bareos, ZFS and Puppet. Christian Reiß Symgenius Bareos, ZFS and Puppet Christian Reiß Symgenius About Me Christian Reiß 37 years old System Administrator at Symgenius 2 About Me Linux since 1995'ish (Kernel 1.3) B* evangelist Love Puppet 3 Agenda Motivation

More information

We release Mascot Server 2.6 at the end of last year. There have been a number of changes and improvements in the search engine and reports.

We release Mascot Server 2.6 at the end of last year. There have been a number of changes and improvements in the search engine and reports. 1 We release Mascot Server 2.6 at the end of last year. There have been a number of changes and improvements in the search engine and reports. I ll also be covering some enhancements and changes in Mascot

More information

HyperSecureLink V6.0x User Guide

HyperSecureLink V6.0x User Guide HyperSecureLink V6.0x User Guide Note: This software works with the LS-30 Version (06.0x or later) 1, Hardware Installation: 1-1, Connection Diagram for USB or RS-232 Computer Interface To LS-30 CM1 To

More information

CS 341 Computer Architecture and Organization. Lecturer: Bob Wilson Cell Phone: or

CS 341 Computer Architecture and Organization. Lecturer: Bob Wilson Cell Phone: or CS 341 Computer Architecture and Organization Lecturer: Bob Wilson Cell Phone: 508-577-9895 Email: robert.wilson@umb.edu or bobw@cs.umb.edu 1 Welcome to CS341 This course teaches computer architecture

More information

AGW SYSTEMS. Blue Clock W38X

AGW SYSTEMS. Blue Clock W38X AGW SYSTEMS Blue Clock W38X Contents table BLUECLOCKS...3 THE EVOLUTION...4 WHAT S NEW!...5 HARDWARE...6 SOFTWARE...7 MULTI COMPANY...8 INSTANTLY...9 EVEN MORE!...10 WHAT S INSIDE HOW DOES IT WORK...11...12

More information

Reducing Code Size with Run-time Decompression

Reducing Code Size with Run-time Decompression Reducing Code Size with Run-time Decompression Charles Lefurgy, Eva Piccininni, and Trevor Mudge Advanced Computer Architecture Laboratory Electrical Engineering and Computer Science Dept. The University

More information

SVM Root Volume Protection Express Guide

SVM Root Volume Protection Express Guide ONTAP 9 SVM Root Volume Protection Express Guide September 2016 215-11189_B0 doccomments@netapp.com Visit the new ONTAP 9 Documentation Center: docs.netapp.com/ontap-9/index.jsp Table of Contents 3 Contents

More information

Chapter 25 Bleeding Perfusion (1 of 2) lcirculation within tissues in adequate amounts to meet the cells needs for oxygen, nutrients, and waste

Chapter 25 Bleeding Perfusion (1 of 2) lcirculation within tissues in adequate amounts to meet the cells needs for oxygen, nutrients, and waste 1 2 3 4 5 6 7 Chapter 25 Beeding Perfusion (1 of 2) Circuation within tissues in adequate amounts to meet the ces needs for oxygen, nutrients, and waste remova Some tissues and organs need a constant suppy

More information

ID: Cookbook: browseurl.jbs Time: 10:30:00 Date: 09/01/2018 Version:

ID: Cookbook: browseurl.jbs Time: 10:30:00 Date: 09/01/2018 Version: ID: 42036 Cookbook: browseurl.jbs Time: 10:30:00 Date: 09/01/2018 Version: 20.0.0 Table of Contents Analysis Report Overview General Information Detection Confidence Classification Analysis Advice Signature

More information

Distributed version control with git a brief introduction

Distributed version control with git a brief introduction Distributed version control with git a brief introduction Oscar Nierstrasz Why git? Bob Bob Carol Bob Carol Alice Ted Bob Carol Alice Ted A recipe for disaster! The git object model A is content under

More information

Focusing on What Really Matters: Irrelevance Pruning in M&S

Focusing on What Really Matters: Irrelevance Pruning in M&S Focusing on What Reay Matters: Irreevance Pruning in M&S Ávaro Torraba, Peter Kissmann Saarand University, Germany SoCS 2015, June 11 Session with ICAPS 2015 Torraba, Kissmann From Dominance to Irreevance

More information

CT PET-2018 Part - B Phd COMPUTER APPLICATION Sample Question Paper

CT PET-2018 Part - B Phd COMPUTER APPLICATION Sample Question Paper CT PET-2018 Part - B Phd COMPUTER APPLICATION Sample Question Paper Note: All Questions are compulsory. Each question carry one mark. 1. Error detection at the data link layer is achieved by? [A] Bit stuffing

More information

Section 3: Investigating animals: hunters and the hunted

Section 3: Investigating animals: hunters and the hunted Section 3: Investigating animas: hunters and the hunted Contents Section 3: Investigating animas: hunters and the hunted 3 1. Observing oca ecosystems 3 2. Discussing animas in groups 4 3. Vauing experience

More information

The MQ Console and REST API

The MQ Console and REST API The MQ Console and REST API Matt Leming lemingma@uk.ibm.com Agenda Existing capabilities What s new? The mqweb server The MQ REST API The MQ Console 1 Existing capabilities Administering software MQ Queue

More information

Fast Floating Point Compression on the Cell BE Processor

Fast Floating Point Compression on the Cell BE Processor Fast Floating Point Compression on the Cell BE Processor Ajith Padyana, T.V. Siva Kumar, P.K.Baruah Sri Satya Sai University Prasanthi Nilayam - 515134 Andhra Pradhesh, India ajith.padyana@gmail.com, tvsivakumar@gmail.com,

More information

Volume A Question No : 1 You can monitor your Steelhead appliance disk performance using which reports? (Select 2)

Volume A Question No : 1 You can monitor your Steelhead appliance disk performance using which reports? (Select 2) Volume A~D: 342 Questions Volume A Question No : 1 You can monitor your Steelhead appliance disk performance using which reports? (Select 2) A. Data Store Cost B. Data Store Performance C. Disk Load D.

More information

= 10.2 km. (b) P = = 56 mm

= 10.2 km. (b) P = = 56 mm Perimeter Perimeter is the tota ength of the boundary of a shape. It is measured using km, m, cm or mm. We often use markings such as and to indicate equa engths when drawing diagrams or shapes. For exampe,

More information

Specifications for the CMI 2409 Magnetocardiograph

Specifications for the CMI 2409 Magnetocardiograph Specifications for the CMI 2409 Magnetocardiograph Revision date April 14, 2006 1 518-381-1000 (tel) The CMI-2409 system consists of a holder (A), a patient bed (B) and a workstation (not shown in the

More information

CLI Mapping Reference

CLI Mapping Reference Isilon OneFS CLI Command Mappings December, 2015 The tables in this document list the OneFS CLI commands that were changed between s. The tables list the original command syntax, the new command syntax,

More information

ELIMINATOR COMPETITION DRAG RACE Program Manual Firm Ver 4.11

ELIMINATOR COMPETITION DRAG RACE Program Manual Firm Ver 4.11 ELIMINATOR COMPETITION DRAG RACE Program Manual Firm Ver 4.11 The Portatree Eliminator Super 2000 Competition Track Timer can be used with an IBM Compatible Personal Computer connected through Com Port

More information

Gas services renewal programme

Gas services renewal programme Customer information Gas services renewa programme gasnetworks.ie Introduction Gas Networks Ireand constructs and extends the natura gas network in Ireand to the highest safety standards. We deiver natura

More information

Jackson Safety * Nemesis* Eyewear. Stylish Comfort. Lasting Protection.

Jackson Safety * Nemesis* Eyewear. Stylish Comfort. Lasting Protection. Jackson Safety * Nemesis* Eyewear Styish Comfort. Lasting Protection. Jackson Safety* Nemesis* Eyewear Styish Comfort. Lasting Protection. There s a reason why Jackson Safety* Nemesis* Eyewear is one of

More information

Smart Card based application for IITK Swimming Pool management

Smart Card based application for IITK Swimming Pool management CS499 End Semester Report Smart Card based application for IITK Swimming Pool management Submitted By: Ankur Mittal Project Guide: Prof. Rajat Moona Introduction In today s world, there is an increasing

More information

Surge suppressor To perform its intended functions, an AEI site must have the components listed above and shown in Fig. 4.1.

Surge suppressor To perform its intended functions, an AEI site must have the components listed above and shown in Fig. 4.1. 4.0 COMPONENT FEATURES AND REQUIREMENTS An AEI site should include the following component subsystems: Presence detector Wheel detector Tag reader Controller Communications Power supply Surge suppressor

More information

Integrated Sports Systems (ISS) Inc. Meet Management Suite

Integrated Sports Systems (ISS) Inc. Meet Management Suite November 2010 Integrated Sports Systems (ISS) Inc. Meet Management Suite User Guide and Technical Document Version 2.0 Table of Contents Table of Contents... 2 General Concepts... 3 Installation Meet Management

More information

Bio 6 STRENGTH 5 SPEED 6 STAMINA 7 ENERGY PROJECTION 7 FIGHTING ABILITY OCCUPATION REAL NAME ABILITIES WEAPONS PROFILE FIRST APPEARANCE POWER GRID

Bio 6 STRENGTH 5 SPEED 6 STAMINA 7 ENERGY PROJECTION 7 FIGHTING ABILITY OCCUPATION REAL NAME ABILITIES WEAPONS PROFILE FIRST APPEARANCE POWER GRID R 8 yu SHOW ME YOUR S T R E N G T H. Bio REAL NAME OCCUPATION Ryu Fighter ABILITIES Utiizes a unique fighting stye based on Ansatsuken, with eements of karate, judo, and taekwondo bended in. He is aso

More information

Instrument pucks. Copyright MBARI Michael Risi SIAM design review November 17, 2003

Instrument pucks. Copyright MBARI Michael Risi SIAM design review November 17, 2003 Instrument pucks Michael Risi SIAM design review November 17, 2003 Instrument pucks Pucks and Plug-and-Work The MBARI puck prototype Puck software interface Pucks in practice (A Puck s Tale) Embedding

More information

Digi Connect ME 9210 Linux: 2 nd serial over FIM

Digi Connect ME 9210 Linux: 2 nd serial over FIM Digi Connect ME 9210 Linux: 2 nd serial over FIM Document History Date Version Change Description 09/04/2009 Initial entry/outline Table of Contents Document History... 2 Table of Contents... 2 1 Problem

More information

Operating Instructions OPTISWITCH 3000 C with two-wire output

Operating Instructions OPTISWITCH 3000 C with two-wire output Operating Instructions OPTISWITCH 3000 C with two-wire output Contents Contents 1 About this document 1.1 Function... 4 1.2 Target group... 4 1.3 Symboism used... 4 2 For your safety 2.1 Authorised personne...

More information

Chapter 6 INSTITUTIONAL and LEGAL FRAMEWORK

Chapter 6 INSTITUTIONAL and LEGAL FRAMEWORK CHAPTER 6 INSTITUTIONAL AND LEGAL FRAMEWORK 81 Chapter 6 INSTITUTIONAL and LEGAL FRAMEWORK INTRODUCTION s arangani Bay is one of the few areas in the Phiippines to fa under RA 7586 or the NIPAS Act of

More information

USER MANUAL April 2016

USER MANUAL April 2016 USER MANUAL April 2016 Introduction TIEBREAK is a program for real time volleyball game data entry and statistical analysis. Extremely easy to use, TIEBREAK makes it possible to reliably and quickly enter

More information

Part Number Description Dimensions Shipping Weight Package Qty.

Part Number Description Dimensions Shipping Weight Package Qty. Fiber Optic Products Encosures...............................40-41 Adapter Panes..............................42 Fiber Spice Tray.............................42 Fiber Optic Cabe Assembies...................43

More information

An Introduction To SMALL-SIDED GAMES. Fewer Players = More Touches FREE EBOOK SOCCER COACH WEEKLY

An Introduction To SMALL-SIDED GAMES. Fewer Players = More Touches FREE EBOOK SOCCER COACH WEEKLY An Introduction To SMALL-SIDED GAMES Fewer Payers = More Touches FREE Dear Coach, Soccer Coach Weeky offers modern and easy to use footba (soccer) dris, coaching sessions, practice pans, smasided games,

More information

VMware Inc., NSX Edge SSL VPN-Plus

VMware Inc., NSX Edge SSL VPN-Plus RSA SECURID ACCESS Standard Agent Implementation Guide VMware Inc., Daniel R. Pintal, RSA Partner Engineering Last Modified: December 16, 2016 Solution Summary VMware users

More information

STAND alone & p.c. VERSION

STAND alone & p.c. VERSION STAND alone & p.c. VERSION ECONOMY TRACK SYSTEMS 1/4 & 1/8 Mile Asphalt Track Dirt / Sand Track Mud Track Snowmobile Track R/C Car Track Custom Track Systems Timing to.001 Accuracy Time Slip Printer Optional

More information

Previous Release Notes

Previous Release Notes Release Notes Shearwater Desktop 3.1.5 Support for NERD 2. Previous Release Notes Version 3.1.4 Improved Bluetooth Reliability with the initial connection. Bug Notes: dded software workaround to allow

More information

Mac Software Manual for FITstep Pro Version 2

Mac Software Manual for FITstep Pro Version 2 Thank you for purchasing this product from Gopher. If you are not satisfied with any Gopher purchase for any reason at any time, contact us and we will replace the product, credit your account, or refund

More information

Existing Bicycle Travel and Conditions

Existing Bicycle Travel and Conditions Chapter 3 Existing Bicyce Trave and Conditions A. Existing Bicyce Trave Regiona and oca data on bicyce trave and the characteristics of bicycists is imited for a number of reasons. The reativey sma number

More information

File Formats and Pre-Processing

File Formats and Pre-Processing Fie Formats and Pre-Processing Fie Formats Pre-processing Toos Usefu Links Copyright 2018, University Corporation for Atmospheric Research, a rights reserved FILE FORMATS 2 Copyright 2018, University Corporation

More information

Race Screen: Figure 2: Race Screen. Figure 3: Race Screen with Top Bulb Lock

Race Screen: Figure 2: Race Screen. Figure 3: Race Screen with Top Bulb Lock Eliminator Competition Stand Alone Mode - Instruction Manual Main Menu: After startup, the Eliminator Competition will enter the Main Menu. Press the right/left arrow buttons to move through the menu.

More information

The. Future of. Surfing

The. Future of. Surfing The Future of Surfing AMERICANWAVEMACHINES.COM LARGE SCALE WAVE AND SURF POOLS AWM s patented PerfectSwe is an entirey new approach to generating waves with the emphasis on the surfing experience: wave

More information

Data Extraction from Damage Compressed File for Computer Forensic Purposes

Data Extraction from Damage Compressed File for Computer Forensic Purposes Data Extraction from Damage Compressed File for Computer Forensic Purposes Bora Park, Antonio Savoldi, Paolo Gubian, Jungheum Park, Seok Hee Lee and Sangjin Lee 1 Center for Information Security Technologies,

More information

Thermal-Links (Thermal Cutoffs)

Thermal-Links (Thermal Cutoffs) Pb-Free Cd-Free New Product Circuit Components Business Unit 401 Sadamasa-cho, Fukui City 910-82, Japan A0408-1 freecd-free Axicia Lead Radia Lead in-type Form Eectrica rating E series 2V 0.5A F series

More information

GOLOMB Compression Technique For FPGA Configuration

GOLOMB Compression Technique For FPGA Configuration GOLOMB Compression Technique For FPGA Configuration P.Hema Assistant Professor,EEE Jay Shriram Group Of Institutions ABSTRACT Bit stream compression is important in reconfigurable system design since it

More information

Critical Systems Validation

Critical Systems Validation Critical Systems Validation Objectives To explain how system reliability can be measured and how reliability growth models can be used for reliability prediction To describe safety arguments and how these

More information

Operation Guide 5480

Operation Guide 5480 MO1803-EF 2016 CASIO COMPUTER CO., LTD. Operation Guide 5480 Congratuations upon your seection of this CASIO watch. Appications The buit-in sensors of this watch measure direction, barometric pressure,

More information

BVIS Beach Volleyball Information System

BVIS Beach Volleyball Information System BVIS Beach Volleyball Information System Developments in computer science over the past few years, together with technological innovation, has in turn stimulated the development of tailored software solutions

More information

KISS Polymers MegaGuard Ultra*

KISS Polymers MegaGuard Ultra* KISS Poymers MegaGuard Utra* Product Summary The Latest Technoogy in Non-Stick Protective Coatings MegaGuard Utra* is the atest technoogy in ow-drag protective surface coatings. MegaGuard Utra protects

More information

Drag racing system HL190 User Manual and installation guide

Drag racing system HL190 User Manual and installation guide Drag racing system HL190 User Manual and installation guide Version 10/2015 TAG Heuer Timing Page 1 / 14 1. Global This software controls the whole Drag racing installation HL190. Combined with the Chronelec

More information

ID: Cookbook: browseurl.jbs Time: 18:33:33 Date: 06/04/2018 Version:

ID: Cookbook: browseurl.jbs Time: 18:33:33 Date: 06/04/2018 Version: ID: 53568 Cookbook: browseurl.jbs Time: 18:33:33 Date: 06/04/2018 Version: 22.0.0 Table of Contents Analysis Report Overview General Information Detection Confidence Classification Analysis Advice Signature

More information

APP NOTES Onsight Connect Cisco Integration. July 2016

APP NOTES Onsight Connect Cisco Integration. July 2016 APP NOTES Onsight Connect Cisco Integration July 2016 Table of Contents 1. Direct Onsight Device to Cisco Endpoint Calling... 4 2. Onsight Device to Onsight Device (including Cisco Endpoint) Calling...

More information

The Race Director. IPICO Integration Direct Connect [IPICO INTEGRATION]

The Race Director. IPICO Integration Direct Connect [IPICO INTEGRATION] 2017 The Race Director IPICO Integration Direct Connect [IPICO INTEGRATION] This document explains how to manage the results data between your IPCIO readers and Race Director using a direct connection

More information

Portable Compressors MOBILAIR M 52 / M 64 With the world-renowned SIGMA PROFILE Free air delivery 5.2 / 6.4 m³/min.

Portable Compressors MOBILAIR M 52 / M 64 With the world-renowned SIGMA PROFILE Free air delivery 5.2 / 6.4 m³/min. Portabe Compressors MOBILAIR M 52 / M 64 With the word-renowned SIGMA PROFILE Free air deivery / 6.4 m³/min www.kaeser.com Made in Germany KAESER s renowned MOBILAIR range of portabe compressors is manufactured

More information

Understanding the How, Why, and What of a Safety Integrity Level (SIL)

Understanding the How, Why, and What of a Safety Integrity Level (SIL) Understanding the How, Why, and What of a Safety Integrity Level (SIL) Audio is provided via internet. Please enable your speaker (in all places) and mute your microphone. Understanding the How, Why, and

More information

2014 John Wiley & Sons, Inc. All rights reserved.

2014 John Wiley & Sons, Inc. All rights reserved. 2014 John Wiey & Sons, Inc. A rights reserved. 15-2 Energy in Simpe Harmonic Motion 15-2 Energy in Simpe Harmonic Motion Write the functions for kinetic and potentia energy: Eq. (15-18)18 Their sum is

More information

Portable Compressors MOBILAIR M 52 / M 64 With the world-renowned SIGMA PROFILE Free air delivery 5.2 / 6.4 m³/min.

Portable Compressors MOBILAIR M 52 / M 64 With the world-renowned SIGMA PROFILE Free air delivery 5.2 / 6.4 m³/min. Portabe Compressors MOBILAIR M 52 / M 64 With the word-renowned SIGMA PROFILE Free air deivery / 6.4 m³/min www.kaeser.com Made in Germany KAESER s renowned MOBILAIR range of portabe compressors is manufactured

More information

The greater the heat energy, the the wound. Exposure time is an important factor. People reflexively limit heat energy and exposure time.

The greater the heat energy, the the wound. Exposure time is an important factor. People reflexively limit heat energy and exposure time. 1 2 Chapter 26 Burns Burns Burns account for about 3,400 deaths/year. Burns are the most serious and painfu injuries. A burn occurs when the body receives more radiant energy than it can. Sources of this

More information

CSE 154: Web Programming Spring 2017 Homework Assignment 5: Pokedex. Overview. Due Date: Tuesday, May 9th

CSE 154: Web Programming Spring 2017 Homework Assignment 5: Pokedex. Overview. Due Date: Tuesday, May 9th CSE 154: Web Programming Spring 2017 Homework Assignment 5: Pokedex Due Date: Tuesday, May 9th This assignment is about using AJAX to fetch data in JSON format and process it using DOM manipulation. Overview

More information

INF43: Introduction to Software Engineering. Instructor: Alex Thornton TA: Hye Jung Choi 4/24/2009

INF43: Introduction to Software Engineering. Instructor: Alex Thornton TA: Hye Jung Choi 4/24/2009 INF43: Introduction to Software Engineering Instructor: Alex Thornton TA: Hye Jung Choi 4/24/2009 Announcement Phase 2 Assignment: May 8 (Friday) 9:00 pm Types of UML Diagrams Some types of diagrams used

More information

FireHawk M7 Interface Module Software Instructions OPERATION AND INSTRUCTIONS

FireHawk M7 Interface Module Software Instructions OPERATION AND INSTRUCTIONS FireHawk M7 Interface Module Software Instructions OPERATION AND INSTRUCTIONS WARNING THE WARRANTIES MADE BY MSA WITH RESPECT TO THE PRODUCT ARE VOIDED IF THE PRODUCT IS NOT USED AND MAINTAINED IN ACCORDANCE

More information

PLA 2.1. Release Notes PLA 2.1 (build 604) December 21, 2015

PLA 2.1. Release Notes PLA 2.1 (build 604) December 21, 2015 PLA 2.1 Release Notes PLA 2.1 (build 604) December 21, 2015 PLA 2.1 - Release Notes PLA 2.1 (build 604) COPYRIGHT 2015 by Stegmann Systems GmbH, Rodgau, Germany. All rights reserved. CONTACT Stegmann Systems

More information

Dive Planet. Manual. Rev Basic User Interface. 2 How to organize your dives. 3 Statistics. 4 Location Service and Map View.

Dive Planet. Manual. Rev Basic User Interface. 2 How to organize your dives. 3 Statistics. 4 Location Service and Map View. Dive Planet Manual Rev 1.2 1 Basic User Interface 2 How to organize your dives 3 Statistics 4 Location Service and Map View 5 Settings 6 Languages 7 Buddies and guide 8 Backup and restore of the data 9

More information

AccuRAID iscsi Auto-Tiering Best Practice

AccuRAID iscsi Auto-Tiering Best Practice AccuRAID iscsi Auto-Tiering Best Practice Overview From the perspective of storage features, the performance of SSDs are high, but the cost is also high per GB. Relatively speaking, the cost of a traditional

More information

Bidirectional Forwarding Detection Routing

Bidirectional Forwarding Detection Routing This chapter describes how to configure the ASA to use the Bidirectional Forwarding Detection (BFD) routing protocol. About BFD Routing, page 1 Guidelines for BFD Routing, page 5 Configure BFD, page 5

More information

ID: Cookbook: browseurl.jbs Time: 01:54:38 Date: 10/05/2018 Version:

ID: Cookbook: browseurl.jbs Time: 01:54:38 Date: 10/05/2018 Version: ID: 58820 Cookbook: browseurl.jbs Time: 01:54:38 Date: 10/05/2018 Version: 22.0.0 Table of Contents Table of Contents Analysis Report Overview General Information Detection Confidence Classification Analysis

More information

Integrating Best of Breed Outage Management Systems with Mobile Data Systems. Abstract

Integrating Best of Breed Outage Management Systems with Mobile Data Systems. Abstract Integrating Best of Breed Outage Management Systems with Mobile Data Systems Donald Shaw Partner ExtenSys Inc. 31 Plymbridge Crescent North York, ON M2P 1P4 Canada Telephone: (416) 481-1546 Fax: (416)

More information

ID: Cookbook: browseurl.jbs Time: 19:33:28 Date: 25/04/2018 Version:

ID: Cookbook: browseurl.jbs Time: 19:33:28 Date: 25/04/2018 Version: ID: 56640 Cookbook: browseurl.jbs Time: 19:33:28 Date: 25/04/2018 Version: 22.0.0 Table of Contents Analysis Report Overview General Information Detection Confidence Classification Analysis Advice Signature

More information