You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a new user registers in the LMS, sometimes the user profile sink gets triggered before their user profile row is written to MySQL, likely due to the transaction not being committed, causing "UserProfile does not exist" errors in the event sink job. In these cases the user does not appear in ClickHouse until they update their profile or the management command is written.
We should either see if we can run this sink on_commit instead of on_save or put in a retry delay for these jobs.
The text was updated successfully, but these errors were encountered:
When a new user registers in the LMS, sometimes the user profile sink gets triggered before their user profile row is written to MySQL, likely due to the transaction not being committed, causing "UserProfile does not exist" errors in the event sink job. In these cases the user does not appear in ClickHouse until they update their profile or the management command is written.
We should either see if we can run this sink
on_commit
instead ofon_save
or put in a retry delay for these jobs.The text was updated successfully, but these errors were encountered: