Query distribution
I'm running some intensive queries that take over 1 minute to complete on a 4 node cluster. When I look at my CPU usage on each node, I notice that only 1 node is really being used. What can I do to make sure my query gets distributed to all nodes? Things I've done: - ANALYZE_STATISTICS on all involved tables - UNSEGMENTED ALL NODES for small dimension tables - create SEGMENTED HASH projection for big fact table (1 billion rows) - looked at EXPLAIN output. I don't see any BROADCAST or REDISTRIBUTE of data Any help would be appreciated.
0
Comments