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
Currently the UpdateK8sSecurityGroupMemberLabelMetaTask is appending (sequential execution) the task CreateK8sLabelPodTask to the graph instead of adding (concurrent execution). Ideally the pods should be persisted in the DB concurrently, however this is causing transaction issues at the level of the Label member. Another way to possibly address this problem for higher performance would be lock the label entity and add the tasks instead of appending.
The text was updated successfully, but these errors were encountered:
Description
Currently the
UpdateK8sSecurityGroupMemberLabelMetaTask
is appending (sequential execution) the taskCreateK8sLabelPodTask
to the graph instead of adding (concurrent execution). Ideally the pods should be persisted in the DB concurrently, however this is causing transaction issues at the level of theLabel
member. Another way to possibly address this problem for higher performance would be lock thelabel
entity and add the tasks instead of appending.The text was updated successfully, but these errors were encountered: