Questions tagged [filesystems]

A file system (or filesystem) is a means to organize data expected to be retained after a program terminates by providing procedures to store, retrieve and update data, as well as manage the available space on the device(s) which contain it.

A file system (or filesystem) is a means to organize data expected to be retained after a program terminates by providing procedures to store, retrieve and update data, as well as manage the available space on the device(s) which contain it. A file system organizes data in an efficient manner and is tuned to the specific characteristics of the device. A tight coupling usually exists between the operating system and the file system. Some file systems provide mechanisms to control access to the data and metadata. Ensuring reliability is a major responsibility of a file system. Some file systems allow multiple programs to update the same file at nearly the same time.

1986 questions
6
votes
1 answer

GlusterFS Transport endpoint not connected from time to time

I'm using GlusterFS 3.7.9, currently on a single server with 4 bricks. Each brick has 4TB and the volume is set up as distribute only. The volume is mounted on a secondary server and I use it for backup purposes. The problem is that once every…
Alex Dumitru
  • 315
  • 2
  • 3
  • 8
6
votes
3 answers

What is the fastest filesystem to use under Linux on EC2 for MySQL?

I've found MySQL fairly slow on EC2 and I am sure it is disk speed. My EC2 install is a test environment so I don't need to keep the data if a block should fail which I think allows me to use XFS. So....What is the fastest filesystem to use under…
Stewart Robinson
  • 1,155
  • 4
  • 12
  • 24
6
votes
2 answers

What is reasonable storage failover time that most OS (VM) can tolerate?

I have a GlusterFS 2 node 2 replica setup. I am planning to use it as OpenStack instance store, in which the VM disk image is stored. From my tests, if the GlusterFS node which the hypervisor currently mounts on fails, (using default GlusterFS…
6
votes
2 answers

zfs checksum error in raidz1 vdev but not in disk

I am backing up data stored in a zpool consisting of a single raidz vdev with 2 hard disks. During this operation, I got checksum errors, and now the status looks as follows: pool: tmp_zpool state: ONLINE status: One or more devices has…
Matei David
  • 231
  • 2
  • 6
6
votes
1 answer

Getting Error: "No space left on device" for a particular filename

I have a ext4 volume with lot of files inside a particular directory. Whenever I am trying to create a file inside it of a particular name, I am getting "No space left on device" error. $ touch…
pradeepchhetri
  • 2,698
  • 6
  • 37
  • 47
6
votes
0 answers

Is there disk based file system with dedicated memory caching for Linux?

We have two (or more sometimes) applications battling for the OS page cache. In particular ElasticSearch is very dependent on the OS page cache. To the point that cache misses can make or break performance in low latency cases. ES is the only low…
Andrew White
  • 228
  • 2
  • 7
6
votes
3 answers

Is MINFREE (percentage of disk space reserved for the root user) old hat?

On FreeBSD systems, and presumably a bunch of others, there is an amount of space reserved for root which is MINFREE% of the total capacity. With multi-terabyte filesystems, the default of 8% is a staggering amount of space. Volumes that large could…
6
votes
2 answers

Calling sync/fsync slows IO after 30 minutes uptime

After 30 minutes of uptime using Ubuntu 14.04 with an ext4 hybrid SSD I see many processes blocking IO using iotop. The root cause of this slowdown has been traced back to the Unix system call sync. Running sync from the terminal repeatedly can…
alex.p
  • 141
  • 7
6
votes
0 answers

Fast distributed filesystem for a large amounts of data with metadata in database

My project uses several processing machines and one storage machine. Currently storage organized with a MSSQL filetable shared folder. Every file in storage have some metadata in database. Processing machines executes tasks for which they needed…
6
votes
3 answers

mount using nfs4 giving no such device error

I am trying to mount a folder workspace from server to the client over NFS. For this I bind the folder to an /export by adding the following in my /etc/fstab on server: /home /export none bind Then I add the following lines in my /etc/exports…
Shehbaz Jaffer
  • 181
  • 1
  • 1
  • 6
6
votes
2 answers

Why the path "//" is working?

Tested on a debian and debian-based: $ cd // && pwd && ls // bin build dev home ... Why is the path // a valid path?
bux
  • 626
  • 2
  • 6
  • 20
6
votes
2 answers

How often should I defrag ZFS pools?

I ZFS scrub once a month which takes ~24 hours for the 72TB. For what I can find about how often I should scrub is: very busy pools, once per week not so busy pools, once per month or run a scrub, measure the time, and adjust accordingly. But what…
Sandra
  • 10,303
  • 38
  • 112
  • 165
6
votes
4 answers

Partition required for ext4 filesystem?

I read on the arch wiki that it is not recommended to partition a disk before creating the ZFS filesystem on it. I searched but did not find any such statement about ext4. So my questions: Can I put a ext4 filesystem on a disk for storage (not a…
user300811
  • 183
  • 2
  • 10
6
votes
1 answer

In NTFS, what's the difference between sector size, block size and cluster size?

For example, I have a volume with the following info extracted from ntfsinfo: $ sudo ntfsinfo -m /dev/sdb1 Volume Information Name of device: /dev/sdb1 Device state: 11 Volume Name: Photos 250GB Volume State: 27 …
silvernightstar
  • 159
  • 1
  • 5
6
votes
1 answer

Correct usage of /srv on debian systems

I'm a bit confused about what goes inside /srv and looking for good practices about its usage on Debian. Acording to the FHS: "/srv contains site-specific data which is served by this system". However I'm not sure if things like MySQL data files,…
L. Lopez
  • 93
  • 4