Replies: 2 comments
-
Too much delta data is indeed very easy to cause out-of-memory problems.
|
Beta Was this translation helpful? Give feedback.
0 replies
-
#925 had introduced disk-based storage to expand storage capacity when loading deleted datas. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Arctic
KeyedTable
will have too manyeq-delete
records in some situations:ChangeStore
withwrite.upsert.enabled=true
to avoid data duplication.If there are too many
eq-delete
records, the Optimizing and MOR are easy to OOM, since all the Primary-Key values of theseeq-delete
records have to be loaded into a map in memory.In a typical case with two string columns as Primary-Key (the length of each string column is about 20 bytes), I find that about 4,200,000 records occupy 1.8G memory, which seems to be reasonable ?
Beta Was this translation helpful? Give feedback.
All reactions