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
The initial design of the transformer required traversing the iModel in element order to perform the processChanges function. This is no longer necessary now that elements are not deferred. There is a potential speed up in directly exporting elements that are only in the change data instead of the entire hierarchy.
The text was updated successfully, but these errors were encountered:
also, it is possible to do a one pass transformation if we do it in order. We would need to turn off foreign key constraints, and then add the target's starting id to each id that we move. Added elements would need to be added after the data, and removed elements would leave gaps in the id space.
The initial design of the transformer required traversing the iModel in element order to perform the
processChanges
function. This is no longer necessary now that elements are not deferred. There is a potential speed up in directly exporting elements that are only in the change data instead of the entire hierarchy.The text was updated successfully, but these errors were encountered: