You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I did some search on the internet, a lot posts said that logging do not have a lock between process. So use log in multiprocessing may cause the content of log be messed.
Will this code have this kind of problem?
If not then why?
The text was updated successfully, but these errors were encountered:
This is a good question. Writing to the same file from different processes can result in weird behaviour - the data written might be interleaved and/or incomplete, or worse, the file may become corrupted. I think there will be other factors in play though, for example what type of file system is in use.
I think this is something that will have to be investigated further and fixed.
I can see below code in server.py
I did some search on the internet, a lot posts said that logging do not have a lock between process. So use log in multiprocessing may cause the content of log be messed.
Will this code have this kind of problem?
If not then why?
The text was updated successfully, but these errors were encountered: