odoo16 更新bus_presence报错

今天发现控制台报了一个错,以前没碰到,不免勾起了我的好奇心,于是研究一下

2023-11-16 08:56:56,522 1192189 ERROR odoo4 odoo.sql_db: bad query: UPDATE "bus_presence" SET "last_poll" = '2023-11-16 08:56:56' WHERE id IN (1)
ERROR: could not serialize access due to concurrent update

更新bus_presence 报错,因为并发的缘故。

bus_presence这个表是干嘛的?看看chatgpt的解释

在 Odoo 中,bus_presence 表用于跟踪用户的在线状态和活动。它记录了用户的在线/离线状态以及最后一次活动的时间戳。

bus_presence 表的作用是提供实时的用户在线状态信息,以便其他用户或系统可以根据这些信息做出相应的操作或决策。例如,在聊天应用程序中,可以使用 bus_presence 表来显示用户的在线状态(在线或离线),以便其他用户知道他们是否可以与该用户进行实时的聊天交互。

通过监视 bus_presence 表,可以实时了解用户的活动情况,例如用户最后一次登录的时间、最后一次浏览的页面等。这些信息可以用于分析用户行为、个性化推荐、活动追踪等功能。

需要注意的是,bus_presence 表是通过实时通信机制(如长轮询或 WebSocket)来更新用户的在线状态和活动信息。它与用户的会话和实时通信相关联,以提供准确和实时的在线状态信息。

看看代码:
addons/bus/models/bus_presence.py

class BusPresence(models.Model):
    """ User Presence
        Its status is 'online', 'away' or 'offline'. This model should be a one2one, but is not
        attached to res_users to avoid database concurrence errors. Since the 'update' method is executed
        at each poll, if the user have multiple opened tabs, concurrence errors can happend, but are 'muted-logged'.
    """

从注释可用看出,如果用户打开了多个tab也,就会发生concurrence errors。

貌似这个错误也不严重。

你可能感兴趣的:(Odoo16,odoo)