DavidK
DavidK

Reputation: 2564

Updating a log file using s3fs

If I use s3fs to mount a "folder", I can access to my log file.

Will the whole file be uploaded each time I add a new line through a Python script ?

Upvotes: 1

Views: 1695

Answers (1)

Syed Usman
Syed Usman

Reputation: 300

This is from the official git repo of s3fs located here!

When you are using s3fs to mount a "folder", random writes or appends to files require rewriting the entire file.

Upvotes: 2

Related Questions