gpt4 book ai didi

python - 阻止 Python 使用 Condor 作业覆盖文件

转载 作者:行者123 更新时间:2023-12-01 03:16:19 24 4
gpt4 key购买 nike

我尝试执行的Python代码必须将两个不同的变量写入一个文件。我正在使用 Condor 来加速我的进程,这意味着 python 代码是同步执行的。我定义的写入函数是:

with open('output.txt', 'a') as results_file:
results_file.write(str(gc_count) + '\n')
results_file.write(str(length) + '\n')
results_file.close()

但不幸的是,该文件以某种方式不断覆盖结果。有人可以帮助我如何使用 Condor 将变量写入文本文件吗?

最佳答案

即使文件模式设置为append,文件中的并发写入也会导致数据损坏。

在多线程环境中,您可以使用threading.Lock对象来保护您的写入调用:

import threading
l = threading.Lock() # l must be a global variable or a member of some class

然后在写入时请求锁的许可,并在文件写入时释放锁:

l.acquire()
with open('output.txt', 'a') as results_file:
results_file.write(str(gc_count) + '\n')
results_file.write(str(length) + '\n')
l.release()

(旁白:您不需要文件上下文管理器中的最后一个close)

关于python - 阻止 Python 使用 Condor 作业覆盖文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42439964/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com