我在MySQL数据库表中包含“任务”。每个任务都有标志(如果是或否) 现在例如3个线程:
query_base = session.query(PredykcjaRow).filter(
PredykcjaRow.predyktor == predictor,
PredykcjaRow.czy_wziete == False
)
query_disprot = query_base.join(NieustrRow, NieustrRow.fastaId == PredykcjaRow.fastaId)
query_pdb = query_base.join(RawBialkoRow, RawBialkoRow.fasta_id == PredykcjaRow.fastaId)
response = query_pdb.union(query_disprot)
response = response.with_for_update()
response = response.first()
if response is None:
return None
response.czy_wziete = True
try:
session.commit()
return response
except:
return None
每个线程都有自己的会话(ScopedSession),但所有3个线程都获得相同的对象。
在配置中
tx_isolation..... REPEATABLE-READ
答案 0 :(得分:0)
假设作用域会话是这样创建的:
Session = scoped_session(sessionmaker(bind=engine))
确保你没有这样做
session = Session()
give_to_thread1(session)
give_to_thread2(session)
使用范围会话,您可以直接使用它,例如
Session.query(...)
所以你的主题应该这样做:
def runs_in_thread():
Session.add(...)
# or
session = Session()
session.add(...)
答案 1 :(得分:0)
问题是工会声明。 MySQL不提供带有FOR UPDATE的累积SELECTS - 它在没有警告的情况下执行,但是行没有被锁定。 我在官方文档中找到了这些信息,但现在我不能。如果有人可以,请发表评论。