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
bundle.stage_row_field calls meta.field_id_literal_value() once per field on each row on the stage. This requires a query to the table for every field, which is making bundle.commit() run very slow. Optimize this to instead issue only one query per row_id in bundle.stage_row. Probably using row_to_json().
The text was updated successfully, but these errors were encountered:
bundle.stage_row_field
callsmeta.field_id_literal_value()
once per field on each row on the stage. This requires a query to the table for every field, which is makingbundle.commit()
run very slow. Optimize this to instead issue only one query perrow_id
inbundle.stage_row
. Probably usingrow_to_json()
.The text was updated successfully, but these errors were encountered: