記一個python+sqlalchemy+tornado的一個高並發下,產生重複記錄的bug

來源:互聯網
上載者:User

標籤:blog   使用   os   io   資料   問題   代碼   div   

情境:在使用者通過支付通道支付完成返回時,發現我收到的處理資料記錄中有兩條同樣的資料記錄,

也就是同一筆錢,我資料庫中記為了兩條一樣的記錄。

tornado端代碼

from tornado import genfrom tornado.concurrent import run_on_executorclass processNetPay(BaseHandler):    ‘‘‘處理指定訂單,指定支付請求,返回處理結果    ‘ 返回包含訂單資訊與使用者資訊體    ‘‘‘    @tornado.web.asynchronous    @gen.coroutine    def post(self):        ...other code....        db_session = self.get_db_session()        jsonResponse = yield self.query_netpay_order_state(db_session, netpay_id)    @run_on_executor    def query_netpay_order_state(self, db_session, netpay_id):        ....        with distributedlock(str("sync_netpay_%s" % netpay_id)):#分布式鎖            add NetPayRecord to db            db_session.commit()

排除:一開始以為我沒有使用分布式鎖,或者沒有在分布式鎖內完成資料庫的commit

但檢查代碼後,發現該提交的也提交了,該鎖的也鎖的了,不存在基本邏輯問題呀,怎麼會在

NetPayRecord中產生了兩條一樣的記錄呢?

解決:最後通過各項日誌,及查看sqlalchemy源碼後,發現db_session=self.get_db_session()需要寫在鎖內才行,

具體原因不表

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.