Tagged Questions
The fsync tag has no wiki summary.
6
votes
2answers
723 views
ext4/fsync situation unclear in Android (Java)
Tim Bray's article "Saving Data Safely" left me with open questions. Today, it's over a month old and I haven't seen any follow-up on it, so I decided to address the topic here.
One point of the ...
5
votes
1answer
2k views
Difference between fflush and fsync
I thought fsync() does fflush() internally so using fsync() on a stream is OK. But i am getting unexpected result when executed under network I/O.
My code snippet:
FILE* fp = fopen(file,"wb"); ...
4
votes
2answers
144 views
Is rename() without fsync() safe?
Is it safe to call rename(tmppath, path) without calling fsync(tmppath_fd) first?
I want the path to always point to a complete file.
I care mainly about Ext4. Is the rename() promised to be safe in ...
3
votes
2answers
71 views
Why fsync() takes much more time on Linux kernel 3.1.* than kernel 3.0
I have a test program. It takes about 37 seconds on Linux kernel 3.1.*, but only takes about 1 seconds on kernel 3.0.18 (I just replace the kernel on the same machine as before). Please give me a ...
3
votes
3answers
77 views
Writing and reading the same fd without fsync in Linux
Suppose I write a block to a file descriptor without doing fsync and then read the same block from the same descriptor some time later. Is it guaranteed that I will receive the same information?
The ...
3
votes
3answers
396 views
How to durably rename a file in POSIX?
What's the correct way to durably rename a file in a POSIX file system? Specifically wondering about fsyncs on the directories. (If this depends on the OS/FS, I'm asking about Linux and ext3/ext4).
...
3
votes
6answers
4k views
SD card write performance
I am writing a little application, which is writing jpeg images at a constant rate on a SD card.
I choose an EXT3 filesystem, but the same behaviour was observed with an EXT2 filesystem.
My writing ...
2
votes
0answers
134 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
2answers
1k views
How to do fsync on an ofstream?
I want to make sure that an ofstream has been written to the disk device. What's the portable way (portable on POSIX systems) of doing this?
Does that solve the problem if I open the file separately ...
1
vote
2answers
99 views
Calling os.fsync on the stdout/stderr file descriptors kills a subprocess
After spawning a subprocess using the Python subprocess library, I'm using stderr to pass a message from the child process to the parent process containing some serialized data. I then want the parent ...
0
votes
1answer
43 views
Does the order/direction of fsync matter?
Let's say I write out some files and directories to a usb thumb drive.
/media/drive1/newFolder1/
/media/drive1/newFolder1/newfile1
/media/drive1/newFolder1/newfile2
I've created a folder, ...
0
votes
2answers
93 views
Does msync sync all files on the filesystem to the disk like fsync on ext3?
as far as I know, on most ext3 system with log mode "data=ordered", fsync will not only sync the file specified with the fd, but will sync all files on the filesystem, and this problem has not been ...
0
votes
0answers
155 views
How should I handle an fsync exception from libSystem.B.dylib?
I got a crash report with this stack trace:
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x00000000, 0x00000000
Crashed Thread: 1
Thread 0:
0 libSystem.B.dylib 0x30d2ac98 fsync + 8
1 ...
0
votes
1answer
199 views
PostgreSQL 9: could not fsync file “base/16386”: Invalid argument
I'm trying to test a small PostgreSQL setup, so I cobbled together a quick local install. However, when I'm trying to create my personal db with createdb, it chokes on errors like this (notably, it ...
0
votes
2answers
300 views
Possible to implement journaling with a single fsync per commit?
Let's say you're building a journaling/write-ahead-logging storage system. Can you simply implement this by (for each transaction) appending the data (with write(2)), appending a commit marker, and ...
0
votes
1answer
58 views
Is there a posix-way to ensure two files are flushed in sequence without blocking?
In my program, I hold two files open for writing, a content-file, containing chunks of data, and an index-file, containing a map over which chunks of data has been written so far.
I would like to ...