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 read does not acquire locks due to life time of RDD is unspecified hence would lead to blocking of the InsertOverwrites. So protecting it against the DDL / Truncate / Compaction is operational issue as it stands.
Currently whenever DF materialises first time the transactional snapshot of read is acquired at that time.
Above two need rethinking ..
The text was updated successfully, but these errors were encountered:
fix: dev: SPAR-4598: Performance improvements in acid writer.
AcidWriter process every InternalRow one by one in process() method. We identified few places in the code flow where redundant objects were being created, which were slowing down the write performance.
Approved-by: Amogh Margoor <[email protected]>
Currently read does not acquire locks due to life time of RDD is unspecified hence would lead to blocking of the InsertOverwrites. So protecting it against the DDL / Truncate / Compaction is operational issue as it stands.
Currently whenever DF materialises first time the transactional snapshot of read is acquired at that time.
Above two need rethinking ..
The text was updated successfully, but these errors were encountered: