Resources exceeded during query execution with Google BigQuery -


i hitting "resources exceeded during query execution" error when executing query:

select date_time,atok,segment, count(distinct googid) distusers, sum(case when eventtype=1 1 else 0 end) cntimp, sum(case when eventtype=2 1 else 0 end) cntclick, sum(case when eventtype=3 1 else 0 end) cntvisit, sum(case when eventtype=4 1 else 0 end) cntconv, logdata.unified_logs group each 1,2,3; 

any ideas?

count distinct culprit... should able create subquery group (each) computes distinct users.


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -