How do I build up an atomic file write operation? The file is to be written by a Java service and read by python scripts.
For the record, reads are far greater than writes. But the write happens in batches and tend to be long. The file size amounts to mega bytes.
Right now my approach is:
- Write file contents to a temp file in same directory
- Delete old file
- Rename temp file to old filename.
Is this the right approach? How can avoid conditions where the old file is deleted but the new filename is yet to be renamed?
Do these programming languages (python and java) offer constructs to lock and avoid this situation?