2016-11-04 56 views
0

我有三臺服務器運行我的程序,每臺服務器有八臺芹菜工人從redis獲取任務。也就是說每個服務器的芹菜任務可以由另一個服務器執行。工作人員無法在燒瓶芹菜任務中獲取新數據插入到

在每個服務器: 提交更改和呼叫任務

... 
    try: 
     db.session.commit() 
    except Exception as e: 
     current_app.logger.error(str(e)) 
     db.session.rollback() 
     if not ci_existed: # only add 
      self.delete(ci.ci_id) 
     return abort(500, "add CI error") 
    his_manager = CIAttributeHistoryManger() 
    his_manager.add(ci.ci_id, histories) 
    ci_cache.apply_async([ci.ci_id], queue="async") 
    # add bj ci 
    add_ci_bj.apply_async([ci_type.type_name, None, ci.ci_id], queue="async") 
    return ci.ci_id 

任務功能

@celery.task(name="xxxxxxx", queue="async") 
def add_ci_bj(ci_type, first_id, second_id): 
    param, status = lib.ci.CIManager().get_relations(first_id, second_id, is_async=True) 
    ... 

在任務功能

def get_relations(self, first_id, second_id, is_async=False): 
    start = time.clock() 
    try: 
     second = self.get_ci_by_id(second_id, need_children=False) 
    except Exception as e: 
    return None, "get ci by id error: first %s, second %s, e %s, is_async:%s" % \ 
      (first_id, second_id, e, is_async) 
    ... 

我插入數據並提交給MySQL並調用任務add_ci_bj,但是我無法通過second_id得到數據,我弄不明白,任何人都可以給一些幫助?

回答

0

得到了答案,在另一個服務器中調用之前關閉會話。如:

@celery.task(name="xxxxxxx", queue="async") 
def add_ci_bj(ci_type, first_id, second_id): 
    db.session.Close() 
    param, status = lib.ci.CIManager().get_relations(first_id, second_id, is_async=True) 
    ... 
相關問題