This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hive> explain select count(*) cnt ,value from itemlist group by value order by cnt desc limit 10; | |
OK | |
STAGE DEPENDENCIES: | |
Stage-1 is a root stage | |
Stage-2 depends on stages: Stage-1 | |
Stage-0 depends on stages: Stage-2 | |
STAGE PLANS: | |
Stage: Stage-1 | |
Map Reduce |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> | |
#include <random> | |
using namespace std; | |
#define rep(i,x,y) for(ll i=(x);i<(y);i++) | |
#define rrep(i,x,y) for(ll i=(ll)(y)-1;i>=(x);i--) | |
#define all(x) (x).begin(),(x).end() | |
#define itrout(x) for(int i=0;i<x.size();i++) {cout << x[i] << (i==x.size()-1 ? "\n" : " ");} | |
#ifdef LOCAL | |
#define debug(x) cerr << #x << " = " << (x) << " (L" << __LINE__ << ")" << " " << __FILE__ << endl |
OlderNewer