Web Console/Hue error

Hi All

when i try to run the same below query in web console i get the output .

select created,count(1) from siva_bigdata.ticket1 where id<10000 group by created;

but when i run the same query in Hue i get the below error.

Please help on the same

INFO : Tez session hasn’t been created yet. Opening session
ERROR : Failed to execute tez graph.

@siva,

i think there is typo in your query, below worked for me:

select created,count(1) from ticket where id<10000 group by created;

But it resulted single row.

2 Likes