Google ファイル システム (GFS) の論文を読み終えたところです。この論文によると、GFSは
optimized for appending operations rather than random writes.
この特徴が論文全体で強調されているのを見ると、非常に重要であるに違いないと思います。
まったく就労経験のない学生として、Appending Operations
Google が語るそのような実生活の例は何ですか? かなり強烈に聞こえます。
Google ファイル システム (GFS) の論文を読み終えたところです。この論文によると、GFSは
optimized for appending operations rather than random writes.
この特徴が論文全体で強調されているのを見ると、非常に重要であるに違いないと思います。
まったく就労経験のない学生として、Appending Operations
Google が語るそのような実生活の例は何ですか? かなり強烈に聞こえます。
It is a central limitation of the Google File System. It contrasts it from general purpose parallel file systems like GPFS. However, it makes to design a lot easier when it comes e.g. to replication. As Google is able to design its application around its file system and because random operations are inherently slow (on rotating media), this is fine for them.
Tons of things are "append" operations:
All writes to a file not updating data in the middle of the file using a seek or a pwrite operations are appends. The most important usage of random writes are (classical) database backends.