home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / comp / os / research / 1083 < prev    next >
Encoding:
Internet Message Format  |  1992-11-22  |  6.1 KB

  1. Path: sparky!uunet!europa.asd.contel.com!darwin.sura.net!zaphod.mps.ohio-state.edu!cs.utexas.edu!sun-barr!olivea!hal.com!darkstar.UCSC.EDU!osr
  2. From: vassil@mary-ann.cs.wisc.edu (Vassil Peytchev)
  3. Newsgroups: comp.os.research
  4. Subject: Info on log-structured file systems (Summary)
  5. Message-ID: <1eojedINNquv@darkstar.UCSC.EDU>
  6. Date: 22 Nov 92 18:27:25 GMT
  7. Organization: U of Wisconsin Madison - Computer Sciences
  8. Lines: 150
  9. Approved: comp-os-research@ftp.cse.ucsc.edu
  10. NNTP-Posting-Host: ftp.cse.ucsc.edu
  11. Originator: osr@ftp
  12.  
  13. Thanks to all the people who responded to my inquiry!
  14.  
  15. Here is a summary of what I got so far on log-structured file systems:
  16.  
  17. The two papers I originally mentioned are:
  18.  
  19. "The design and Implementation of a Log-Structured File System" is from the
  20. proceedings of the 13-th ACM Symposium on Operating Systems Principles,
  21. published as No.5 of Operating Systems Review, 1991. It was one of the three
  22. award winning papers at the symposium and is published also in one of the
  23. 1992 issues of ACM Transactions on Computing Systems.
  24.  
  25. "Beating the I/O bottleneck: a case for log-structured file systems" is from
  26. the January, 1989, issue of OS Review.
  27.  
  28. ===============================================================================
  29. Date: Fri, 13 Nov 92 17:07:48 +0100
  30. From: ruffin@corto.inria.fr
  31. Organization: INRIA, BP 105, F-78153 Rocquencourt Cedex, France
  32.     telephone +33(1)39-63-55-11, telex 697033 F, fax +33(1)39-63-53-30
  33. To: vassil
  34. Subject: Log structured file system
  35.  
  36.  
  37. To my knowledge there are only three projects on that topics:
  38.  
  39. Sprite LFS (and you have all the information about it),
  40.  
  41. Clio
  42.  
  43. Ross S. Finlayson, David R. Cheriton: ``Log Files: An Extended File
  44. Service Write-Once Storage''. ACM 11th Symposium on Operating
  45. System Principles, Austin (TX); Pages 139--148. November 1987
  46.  
  47. And KFS (Kitlog File system) that I currently develop. Very few things
  48. have been published on it. For the moment you can have a description in
  49. my thesis but it is in French.
  50.  
  51. hope this help
  52.  
  53. Michel
  54. ===============================================================================
  55. Date: Tue, 10 Nov 92 13:59:04 +0100
  56. From: Laurent Amsaleg <amsaleg@katia.inria.fr>
  57. To: vassil (Vassil Peytchev)
  58. Subject: Re: Info about log-structured file systems
  59.  
  60.  
  61. Hi,
  62. You should contact a French PhD student who is working on a related topic.
  63. It's Michel Ruffin, he's working at INRIA Rocquencourt.
  64. He's e-mail is Michel.Ruffin@inria.fr
  65. Here is the title of his PhD tethis :
  66.  
  67. Kitlog : a Generic Logging Service.
  68.  
  69. You will find a description of his work in the Proc. of the 11th Symp
  70. on Reliable Distributed Systems, Houston, Oct 1992
  71.  
  72.  
  73. Look also to the LFS Storage Manager, in Usenix Summer Conf,
  74. Anaheim, Cal., june 90, by Rosenblum and Ousterhout.
  75. ===============================================================================
  76. Date: Fri, 13 Nov 92 19:49:04 -0800
  77. From: finlayson@apple.com (Ross Finlayson)
  78. To: vassil (Vassil Peytchev)
  79. Subject: Re: Info about log-structured file systems
  80.  
  81. Dear Vassil,
  82.  
  83. You might also find my thesis work (completed in 1989) to be relevant.  I
  84. designed and evaluated (including with simulations) the performance of a
  85. log-based file system for write-once storage media (e.g. write-once optical
  86. disk).  Unlike Ousterhout et al's work, I was explicitly assuming the
  87. presence of *write-once* storage media, and described a file system that
  88. presented the abstraction of multiple append-only "log files" multiplexed
  89. on the storage medium.  I argued that this kind of file system was the best
  90. way to make use of write-once storage, instead of the conventional approach
  91. of trying to simulate a  regular, arbitrarily-rewriteable file system.  
  92.  
  93. Bibliography:
  94.  
  95. Ross Finlayson: "A Log File Service Exploiting Write-Once Storage" (PhD
  96. Thesis)
  97.     Stanford University CS Department Technical Report STAN-CS-89-1272,
  98. July 89
  99.  
  100. Ross Finlayson and David Cheriton:
  101.     "Log Files: An Extended File Service Exploiting Write-Once Storage"
  102.     Proceedings of the Eleventh Symposium on Operating System Principles,
  103. ACM, 
  104.         Austin, Texas, November 1987.
  105.     (also available as a Stanford CS Dept. Technical Report
  106. STAN-CS-87-1177)
  107. ============================================================================
  108.  
  109. Date: Fri, 13 Nov 92 10:45:21 -0800
  110. From: <bostic@postgres.berkeley.edu>
  111. Subject: Re: Info about log-structured file systems
  112.  
  113. In article <1dmlr6INNsgi@darkstar.UCSC.EDU> you write:
  114. >
  115. >I am looking for information on log-structured file systems, especially
  116. >concerning simulation and performance evaluation. Any pointers will be
  117. >aprreciated. 
  118. >
  119. >Thanks in advance!
  120. >
  121. >-Vassil
  122.  
  123. The best performance evaluation I've seen is Margo Seltzer's thesis;
  124. her email address is margo@cs.berkeley.edu.
  125.  
  126. --keith
  127. ============================================================================
  128. Date: Mon, 16 Nov 92 13:51:46 -0500
  129. From: setia@cs.UMD.EDU (Sanjeev Setia)
  130. Subject: Re: Info about log-structured file systems
  131.  
  132. I had a paper at the USENIX Workshop on File Systems on
  133. "Optimal Batch Size in Log-Structured File Systems". The paper looks at
  134. the impact of large write batches (segments in LFS, for example)
  135. on read response time. It proposes an alternative scheme under which the
  136. disk driver breaks up large segments into smaller batches and checks for
  137. reads in betwen writing out the batches to disk.
  138.  
  139. Sanjeev Setia,
  140. Univ of Maryland
  141. ============================================================================
  142.  
  143. Subject: Re: Info about log-structured file systems
  144. Date: Sun, 15 Nov 1992 20:35:26 +0100
  145. From: Silvano Maffeis <maffeis@ifi.unizh.ch>
  146.  
  147. Hello!
  148.  
  149. Maybe you should have a look at the amoeba papers describing the bullet
  150. fileserver...
  151.  
  152. -- 
  153. Silvano Maffeis       CS Dept. University of Zurich, Switzerland
  154.    RFC822: maffeis@ifi.unizh.ch            voice: +411 257 43 27
  155.    X.400: /S=maffeis/OU=ifi/O=unizh/PRMD=SWITCH/ADMD=ARCOM/C=CH/
  156. ============================================================================
  157. -Vassil
  158. ---
  159.  Vassil Peytchev     | Snail-mail:                 | Home:
  160.  E-mail:             |  Dept. of Computer Sciences |  643 E.Johnson St. #8
  161.    vassil@cs.wisc.edu|  1210 W. Dayton St.         |  Madison. WI 53703
  162.                      |  Madison, WI 53706          |  (608)256-8699       
  163.