Details
-
Bug
-
Status: Closed (View Workflow)
-
Blocker
-
Resolution: Fixed
-
None
-
None
-
None
Description
In cases where the size of a ColumnStore table exceed the amount of RAM on the server, the following two scenarios cause PrimProc to run up the RAM consumption on the system until the process is whacked by the OOM killer.
SELECT * INTO OUTFILE '/tmp/result.txt' |
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' |
LINES TERMINATED BY '\n' |
FROM columnstore_table; |
INSERT INTO innodb_table SELECT * FROM columnstore_table; |