See buying choices for this item to see if it's one of the millions that are eligible for Amazon Prime.

4 used & new from £45.41

Have one to sell? Sell yours here
 
   
Practical File System Design with the Be File System
 
 

Practical File System Design with the Be File System (Paperback)

by Dominic Giampaolo (Author) "In late 1990 Jean Louis Gassee founded Be, Inc., to address the shortcomings he saw in operating systems of the time ..." (more)
4.3 out of 5 stars See all reviews (3 customer reviews)

Available from these sellers.


2 new from £85.55 2 used from £45.41

Product details

  • Paperback: 237 pages
  • Publisher: Morgan Kaufmann Publishers In (12 Sep 1999)
  • Language English
  • ISBN-10: 1558604979
  • ISBN-13: 978-1558604971
  • Product Dimensions: 22.8 x 17.9 x 1.6 cm
  • Average Customer Review: 4.3 out of 5 stars See all reviews (3 customer reviews)
  • Amazon.co.uk Sales Rank: 1,326,172 in Books (See Bestsellers in Books)

    Popular in this category:

    #2 in  Books > Computing & Internet > Networking & Security > Operating Systems
  • See Complete Table of Contents

Customers Viewing This Page May Be Interested in These Sponsored Links

  (What is this?)
Filing Audit
   www.FilingPlus.com    Detailed analysis of your onsite documentation and filing processes 
Office Filing Systems
   OSSgb.com/Filing-Systems    Organise Your Office With a Bespoke Filing System. Save room & money 
System Design
   Autodesk.co.uk/Inventor    3D power and 2D design tools in one package. Try Before You Buy! 
  
 

Product Description

Product Description
This work provides an in-depth look at the BeOS from the vantage point of the operating sustem's file system design and implementation issues in general, and looks at how those issues were handled in the development of the BeOS. It provides a guide for progammers and developers to the system specific feature of the BeOS file system that will enable easier and higher performance application development of the BeOS.

About the Author
By Dominic Giampaolo

Inside This Book (Learn More)
First Sentence
In late 1990 Jean Louis Gassee founded Be, Inc., to address the shortcomings he saw in operating systems of the time. Read the first page
Explore More
Concordance
Browse Sample Pages
Front Cover | Copyright | Table of Contents | Excerpt | Index | Back Cover
Search inside this book:

Suggested Tags from Similar Products

 (What's this?)
Be the first one to add a relevant tag (keyword that's strongly related to this product)
Check a corresponding box or enter your own tags in the field below
operating systems
computer science
os
haiku
filesystems
filesystem
computing
computers
beos

Your tags: Add your first tag
 

 

Customer Reviews

3 Reviews
5 star:
 (2)
4 star:    (0)
3 star:
 (1)
2 star:    (0)
1 star:    (0)
 
 
 
 
 
Average Customer Review
4.3 out of 5 stars (3 customer reviews)
 
 
 
 
Share your thoughts with other customers:
Most Helpful Customer Reviews

 
2 of 3 people found the following review helpful:
5.0 out of 5 stars Does exactly what it promises, 22 Sep 2001
By A Customer
This book is easy readable and does exactly what it promises: To discuss design of a high performance file system with focus in the BFS specific features (indexing and queries) It thoroughly discusses design decisions and makes comparisons to other file systems. It isn't a BFS reference book, but the necessary information to implement BFS reading software is available. The book is very educational. It makes you want to implement a file system.
Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)



 
1 of 2 people found the following review helpful:
3.0 out of 5 stars Worth reading, but not the last word in file system design, 19 Jan 1999
By A Customer
This book may be slightly over-sold on its jacket ("guide to the design and implementation of file systems in general ... covers all topics related to file systems") but that's likely not the author's fault. It does provide intermediate levels of detail regarding many, perhaps most, areas of concern to file system designers and deserves a place in the library of anyone embarking on such a project - though people expecting a cookbook rather than a source of detailed ideas will be disappointed.

The ideas are in general sound and representative of the current state of file system practice. The historical view is a bit Unix-centric - to state that the Berkeley Fast File System is the ancestor of most modern file systems is to ignore arguably superior and significantly earlier implementations from IBM, DEC, and others. This bias carries over into aspects of implementation as well, such as use of the Unix direct/indirect/double-indirect mapping mechanism to manage contiguous 'block runs' without adding file address information to the mapping blocks to eliminate the need to scan them sequentially (save for the double-indirect blocks, which avoid the scan by establishing a standard run-length of 4 blocks - arrgh!) when positioning within the file - and the unbalanced Unix-style tree itself would almost certainly be better implemented as a b-tree variant (with its root in-line in the i-node) indexed on file address. And the text occasionally blurs the distinction between what the BFS chose to implement (a journal system that forced meta-data update transactions to be serialized) and what is possible (a multi-threaded journal supporting concurrent transactions simply by allowing each transaction to submit a log record for each individual change it makes - which would also support staged execution of extremely large transactions eliminating the log size as a constraint on them).

Some of the choices made in BFS can be questioned, even in its particular use context. The 'allocation group' mechanism interacts in subtle ways with the basic file system block size, and given the relative and on-going improvement of disk seek time vs. rotational latency the value of locating related structures relatively near each other (though not actually adjacent) on disk may no longer justify the added complexity (though the effort to place file inodes immediately following the parent directory inode is likely worthwhile if a read-ahead facility exists to take advantage of it). The discussion of on-disk placement also ignores 'disks' that may in fact be composed of multiple striped units, which would further dilute the benefits of allocation groups; note that this would also complicate the read-ahead facility just mentioned, as would a shared-disk environment unless the disk unit itself performed the read-ahead and replication if present was taken into account (as in the Veritas file system, as I remember).

Even the fundamental decision to make attributes indexable deserves closer examination, given the costs of indexing. Current hardware can perform a complete inode scan on a single-user workstation fast enough to satisfy the occasional random query and can scan the inodes for files within some limited sub-tree of the directory structure (e.g., a cluster of e-mail directories) relatively quickly for more common queries, and in a multi-user environment indexing individual attributes across all users is frequently not the behavior desired. Placing index management under explicit application control may be a better approach, perhaps by allowing the application to specify on attribute creation the index, if any, in which its value should be entered (thus preserving the ability to encapsulate the operation within a system-controlled transaction without the need for user-level transaction support) - and storing the index (perhaps by its inode) with the attribute for later change or deletion.

Conspicuous by their omission are any mentions of how to manage very large allocation bit-maps (which one really must expect when other parts of the system are carefully crafted to handle 2**58-byte files) or the impact of a shared-disk environment (if BFS was intended to be limited to desk-top use this may be more understandable, but even desk-tops may soon have high-availability configurations). Security is mentioned briefly as a concern to be addressed later - but BFS's dynamic allocation of inodes from the general space pool makes this impossible, given that directory inode addresses can apparently be fed in from user-mode (the author does note this near the book's end, but fails to discuss possible remedies).

The author also expresses regret in the introduction at not having had time to include more comparative information on other file systems, both current and historical. Perhaps he is leaving himself room to write a second book. I hope so: despite my comments above, this one was worthwhile - both on its own merits, and because of the lack of competition in this subject area.

Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)



 
0 of 1 people found the following review helpful:
5.0 out of 5 stars Excellent coverage of advanced file system topics., 8 Dec 1998
By A Customer
I found this book a useful insight into the mechanisms at work in modern file systems. I especially found the performance comparisons of popular file systems useful, giving the reader the ability to analyze the trade-offs of the differing implementations, and how those design decisions are based on the requirements of the file-system.
Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)


Share your thoughts with other customers: Create your own review
 
 
 
Only search this product's reviews



Customer Discussions

 Beta (What's this?)
This product's forum (0 discussions)
  Discussion Replies Latest Post
  No discussions yet

Ask questions, Share opinions, Gain insight
Start a new discussion
Topic:
First post:
Prompts for sign-in
  [Cancel]

   


Listmania!

Create a Listmania! list

Look for similar items by category


Feedback


UNIX Administration: A...

UNIX Administration: A...

This is a complete, one-stop handbook for the administration and... Read more
£63.64

Find similar items

 

Beauty without the Beast

Olay Regenerist Daily 3 Point Treatment Cream
From au naturel to party glam, we have all the best names in cosmetics and skincare.

Discover Beauty at Amazon.co.uk

 

Boys Smell

Lynx Africa Body Spray and After Shave Gift set
But we make sure they smell good...

Discover male grooming at Amazon.co.uk

 

Treat Someone

Amazon.co.uk Gift Certificates--available in any amount from £5 to £500 With an Amazon.co.uk Gift Certificate, you can get them what they want (even if you don't know what that is).

Learn more about Gift Certificates

 
Ad

Where's My Stuff?

Delivery and Returns

Need Help?

Your Recent History

  (What's this?)
You have no recently viewed items or searches.

After viewing product detail pages or search results, look here to find an easy way to navigate back to pages you are interested in.

Look to the right column to find helpful suggestions for your shopping session.

Continue Shopping: Top Sellers

amazon.co.uk Amazon Home
International Sites:  United States  |  Germany  |  France  |  Japan  |  Canada  |  China
Business Programs: Sell on Amazon  |  Fulfilment by Amazon  |  Join Associates  |  Join Advantage
Customer Service  |  Help  |  View Basket  |  Your Account
About Amazon.co.uk  |  Careers at Amazon
Conditions of Use & Sale |  Privacy Notice  © 1996-2009, Amazon.com, Inc. and its affiliates