merge_insert uses a datafusion join internally. Since we do not provide a RAM limit to datafusion it uses a lot of RAM by default to run the JOIN. We should restrain this and make it configurable. This will force datafusion to store to disk during the join which should save RAM at the cost of merge_insert performance.
merge_insert uses a datafusion join internally. Since we do not provide a RAM limit to datafusion it uses a lot of RAM by default to run the JOIN. We should restrain this and make it configurable. This will force datafusion to store to disk during the join which should save RAM at the cost of merge_insert performance.