Skip to main content

How to construct a File System that lives in Shared Memory.



Shared Memory File System Goals

1. MOUNTED IN SHARED MEMORY

The result is a very fast, real time file system.
We use Shared Memory so that the file system is public and not private.

2. PERSISTS TO DISK

When the file system is unmounted, what happens to it?
We need to be able to save the file system so that a system reboot does not destroy it.
A great way to achieve this is to save the file system to disk.

3. EXTENSIBLE IN PLACE

We want to be able to grow the file system in place.

4. SUPPORTS CONCURRENCY

We want multiple users to be able to access the file system at the same time.
In fact, we want multiple users to be able to access the same file at the same time.
With the goals now in mind we can now talk about the major design issues:

FAT File System & Design Issues

The FAT File System has been around for quite some time. Basically it provides a pretty good file structure. But I have two problems with it:

1. FAT IS NOT EXTENSIBLE IN PLACE.

That is, you cannot shutdown the file system and then add space to the end.
You have to create a new file system and then copy in the old data.
What a pain.

2. FAT DOES NOT PROVIDE FILE LOCKING.

That is, you cannot control file concurrency access.

Preview of Part 2

Drupal ModulesThat is enough for today though. This blog post has presented the background for a Memory File System that is FAT based. Next time I’ll cover the rest of the Memory File System story. I will discuss the following subjects:
*) FAT Design.
Boot Block.
Disk Block Table.
Directory Blocks.
*) How to make the file system Extensible.
*) File Locking.

Comments

Popular posts from this blog

Real-Time Talk: Windows 10 IoT Core Background Tasks and ASP.NET Core Web Apps

Display useful information from your Windows 10 IoT Core application in an ASP.NET Core web app, essential for integrating IoT data into a solution. Windows 10 IoT background task talk with a web application using WebSockets. Problems As my path to this solution has been troublesome, I am listing here the main problems I faced so my dear readers have a better idea of dead-end streets along the way: I was not able to make the ASP.NET Core web application run under a Windows 10 IoT background service. I found no information about when or if it will be supported in the near future. ASP.NET MVC and ASP.NET Core have different SignalR implementations. I was not able to make a SignalR client for .NET Core work with SignalR hosted on a web application. I was able to make things work by directly using a WebSocket. It’s not as nice a solution as I had in my mind, but it works until things get better. Making the Background Task and Web Application Talk I worked out sim...

Python and Parquet Performance

In Pandas, PyArrow, fastparquet, AWS Data Wrangler, PySpark and Dask. This post outlines how to use all common Python libraries to read and write Parquet format while taking advantage of  columnar storage ,  columnar compression  and  data partitioning . Used together, these three optimizations can dramatically accelerate I/O for your Python applications compared to CSV, JSON, HDF or other row-based formats. Parquet makes applications possible that are simply impossible using a text format like JSON or CSV. Introduction I have recently gotten more familiar with how to work with  Parquet  datasets across the six major tools used to read and write from Parquet in the Python ecosystem:  Pandas ,  PyArrow ,  fastparquet ,  AWS Data Wrangler ,  PySpark  and  Dask . My work of late in algorithmic trading involves switching between these tools a lot and as I said I often mix up the APIs. I use Pandas and PyArrow for in-RAM comput...

DANGER (STILL) LURKS IN THE INTERNET OF THINGS (IOT)

All of the media, both “mainstream” and “tech”, has gushed over all of the new appliances and devices that are now in the category of what we would call the Internet of Things.  Items like home security,  home lighting, and refrigerators, to name a few. There are many advantages to having connected appliances and devices, Threats that can and will be exploited if unsuspecting users don’t secure them.   Two “layers” of security : The first layer of offering  is a security API that will provide [a way] to easily do a virtual patch, to prevent a remote attack, for example . . . the third layer is cloud: IoT cannot do anything without the cloud.  Most data is sent to the cloud and you will need to have proper protection and make sure the cloud is always available. In both situation Users are vulnerable, mostly due to their own apathy.  Users often either don’t know how to patch their own machines (and in this case, devices) or have glanced...