Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
845 views

Storing & accessing up to 10 million files in Linux

I'm writing an app that needs to store lots of files up to approx 10 million. They are presently named with a UUID and are going to be around 4MB each but always the same size. Reading and writing ...
3
votes
1answer
62 views

latency on posix reads()

we have a very latency sensitive application, in the sense that latency spikes on reads are very very bad. i've tested xfs and ext4, and writing O_ASYNC to the file and then fdatasync() at the end ...
2
votes
0answers
148 views

boost::filesystem::create_directories() problem

I am using boost::filesystem::create_directories() to create new directories. But, when I try to access these directories shortly after creation, I get an error saying no such directory. But if I ...
2
votes
1answer
100 views

xfs - how to not modify mtime when writing to file?

I have a file, a.dat that is 1GB and resides on disk. For performance reasons, I reuse this file and simply overwrite its contents as needed, rather than creating a new file and letting it grow (each ...
1
vote
0answers
246 views

Cutycapt, wkhtmltopdf, wkhtmltoimage, phantomjs not displaying characters properly

The only characters they are displaying are the English ones. The layout of the printed page is as it should be, but the only thing that is wrong is the characters in any script other than english ...
0
votes
0answers
24 views

Creating/modifying extents in XFS

I am working on a data-deduplication scheme between disks and am wondering how I can dig down into the XFS internals and create/modify extents for files. Here is an example of what I want to do, ...
0
votes
1answer
48 views

How to modify the number of XFS pre-allocated blocks?

I wrote a simple program and ran the program on ext4 and xfs. #include <stdio.h> #include <sys/stat.h> #include <sys/types.h> #include <unistd.h> #include <fcntl.h> ...
0
votes
1answer
203 views

How to enable compression for XFS file system on centos5.5?

I am using file system type as "XFS" and i want to enable compression for XFS-file system. I surfed through the net but i couldnot found related data. If anyone aware of the compression for XFS-file ...
0
votes
1answer
181 views

Where can I Find XFS api

I want to develop a sample XFS Application which could handle a pin pad keyboard(EPP). So i found XFS API refrence form Here but still don't know where can i find these API. I'll appreciate who can ...
0
votes
0answers
52 views

Is there a tool for validation (i.e. Disk Checking) an XFS hard drive?

I have been using two mirrored (Raid 1) hard drives with an XFS file format to store my data. The hard drives were actually inside a LinkStation but now the system has crashed, and I am not able to ...