Skip to content

Query never sent to server if it contains set statements #238

@lucastheisen

Description

@lucastheisen

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions