I have a query that is failing due to memory kill of the form:
select
*
from my_schema.my_table
where
date >= '2024-03-12T00:00:00Z'
date < '2024-03-19T00:00:00Z'
order by date asc;
However, when i try to increase memory:
SET mapreduce.map.memory.mb=5120;
SET mapreduce.reduce.memory.mb=5120;
SET mapreduce.map.java.opts=-Xmx4608m;
SET mapreduce.reduce.java.opts=-Xmx4608m;
select
*
from my_schema.my_table
where
date >= '2024-03-12T00:00:00Z'
date < '2024-03-19T00:00:00Z'
order by date asc;
The client simply exits with EOF being the error. Running the same query on ambari works.