Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

71%
+8 −2
Q&A Write to same file from multiple threads

I want to write a text file from multiple threads. The file structure is line-oriented. This means writing of lines should be atomic. I am using Qt 5.15.2. Is it enough to protect a shared QTextSt...

2 answers  ·  posted 3y ago by Silicomancer‭  ·  edited 8mo ago by Shree‭

#8: Post edited by user avatar Shree‭ · 2023-08-24T05:50:09Z (8 months ago)
Remove un necessary text. Text complain about system. If that's a problem, it's must be post on meta not in question.
Write to same file from multiple threads
  • I want to write a text file from multiple threads. The file structure is line-oriented. This means writing of lines should be atomic. I am using Qt 5.15.2.
  • Is it enough to protect a shared QTextStream/QFile pair using a QMutex?
  • EDIT:
  • @dmckee‭ Sorry, I tried to post a comment but failed. I could click "post" but the comment didn't appear.
  • Your solution is how I have solved it currently (well, a bit more complex but it boils down exactly to your idea). However moving the file work into a single writer thread does not scale.
  • I have a lot of threads writing very big amounts of data. This means the writer thread receives a big load and (more important) queued events need to carry a lot of data (which means a lot of RAM consumption). This gets even more nasty in case the writer thread is too slow: It will pile up events consuming virtually all RAM in the system. This is why I would prefer a mutex like solution very much. Alas, is that possible?
  • I want to write a text file from multiple threads. The file structure is line-oriented. This means writing of lines should be atomic. I am using Qt 5.15.2.
  • Is it enough to protect a shared QTextStream/QFile pair using a QMutex?
  • EDIT:
  • For now using [dmckee's‭](https://software.codidact.com/users/52997)
  • solution I have solved it (well, a bit more complex but it boils down exactly to your idea). However moving the file work into a single writer thread does not scale.
  • I have a lot of threads writing very big amounts of data. This means the writer thread receives a big load and (more important) queued events need to carry a lot of data (which means a lot of RAM consumption). This gets even more nasty in case the writer thread is too slow. It will pile up events consuming virtually all RAM in the system. This is why I would prefer a mutex like solution very much. Alas, is that possible?
#7: Post edited by user avatar Monica Cellio‭ · 2021-04-25T18:20:19Z (almost 3 years ago)
trying to fix tags (per bug report on meta)
#6: Post edited by user avatar Silicomancer‭ · 2021-04-24T21:35:01Z (almost 3 years ago)
  • I want to write a text file from multiple threads. The file structure is line-oriented. This means writing of lines should be atomic. I am using Qt 5.15.2.
  • Is it enough to protect a shared QTextStream/QFile pair using a QMutex?
  • EDIT:
  • @dmckee‭ Sorry, I tried to post a comment but failed. I could click "post" but the comment didn't appear.
  • Your solution is how I have solved it currently (well, a bit more complex but it boils down exactly to your idea). However moving the file work into a single writer thread does not scale.
  • I have a lot of threads writing very big amounts of data. This means the writer thread receives a big load and (more important) queued events need to carry a lot of data (which means a lot of RAM consumption). This gets nasty in case the writer thread is too slow: It will pile up events consuming virtually all RAM in the system. This is why I would prefer a mutex like solution very much. Alas, is that possible?
  • I want to write a text file from multiple threads. The file structure is line-oriented. This means writing of lines should be atomic. I am using Qt 5.15.2.
  • Is it enough to protect a shared QTextStream/QFile pair using a QMutex?
  • EDIT:
  • @dmckee‭ Sorry, I tried to post a comment but failed. I could click "post" but the comment didn't appear.
  • Your solution is how I have solved it currently (well, a bit more complex but it boils down exactly to your idea). However moving the file work into a single writer thread does not scale.
  • I have a lot of threads writing very big amounts of data. This means the writer thread receives a big load and (more important) queued events need to carry a lot of data (which means a lot of RAM consumption). This gets even more nasty in case the writer thread is too slow: It will pile up events consuming virtually all RAM in the system. This is why I would prefer a mutex like solution very much. Alas, is that possible?
#5: Post edited by user avatar Silicomancer‭ · 2021-04-24T21:27:57Z (almost 3 years ago)
  • I want to write a text file from multiple threads. The file structure is line-oriented. This means writing of lines should be atomic. I am using Qt 5.15.2.
  • Is it enough to protect a shared QTextStream/QFile pair using a QMutex?
  • I want to write a text file from multiple threads. The file structure is line-oriented. This means writing of lines should be atomic. I am using Qt 5.15.2.
  • Is it enough to protect a shared QTextStream/QFile pair using a QMutex?
  • EDIT:
  • @dmckee‭ Sorry, I tried to post a comment but failed. I could click "post" but the comment didn't appear.
  • Your solution is how I have solved it currently (well, a bit more complex but it boils down exactly to your idea). However moving the file work into a single writer thread does not scale.
  • I have a lot of threads writing very big amounts of data. This means the writer thread receives a big load and (more important) queued events need to carry a lot of data (which means a lot of RAM consumption). This gets nasty in case the writer thread is too slow: It will pile up events consuming virtually all RAM in the system. This is why I would prefer a mutex like solution very much. Alas, is that possible?
#4: Post edited by user avatar Alexei‭ · 2021-04-24T18:50:33Z (almost 3 years ago)
  • I want to write a text file from multiple threads. The file structure is line-oriented. This means writing of lines should be atomic. I am using Qt 5.15.2.
  • Is it enough to protect a shared QTextStream/QFile pair using a QMutex?
  • I want to write a text file from multiple threads. The file structure is line-oriented. This means writing of lines should be atomic. I am using Qt 5.15.2.
  • Is it enough to protect a shared QTextStream/QFile pair using a QMutex?
#3: Post edited by user avatar Silicomancer‭ · 2021-04-24T08:51:25Z (almost 3 years ago)
#2: Post edited by user avatar Silicomancer‭ · 2021-04-23T23:29:18Z (almost 3 years ago)
  • I want to write a text file from multiple threads. The file structure is line-oriented. This means writing of lines should be atomic.
  • Is it enough to protect a shared QTextStream/QFile pair using a QMutex?
  • I want to write a text file from multiple threads. The file structure is line-oriented. This means writing of lines should be atomic. I am using Qt 5.15.2.
  • Is it enough to protect a shared QTextStream/QFile pair using a QMutex?
#1: Initial revision by user avatar Silicomancer‭ · 2021-04-23T23:05:17Z (almost 3 years ago)
Write to same file from multiple threads
I want to write a text file from multiple threads. The file structure is line-oriented. This means writing of lines should be atomic.

Is it enough to protect a shared QTextStream/QFile pair using a QMutex?