wants to create a JIRA (request): multiple tables join with only one hug table.

2011-08-14 Thread Daniel,Wu
nly asked questions. From: "Daniel,Wu" To: hive Sent: Thursday, August 11, 2011 7:01 PM Subject: multiple tables join with only one hug table. if the retailer fact table is sale_fact with 10B rows, and join with 3 small tables: stores (10K), products(10K), period (1K). What'

Re:Re: Re: multiple tables join with only one hug table.

2011-08-14 Thread Daniel,Wu
tions. From: "Daniel,Wu" To: hive Sent: Thursday, August 11, 2011 7:01 PM Subject: multiple tables join with only one hug table. if the retailer fact table is sale_fact with 10B rows, and join with 3 small tables: stores (10K), products(10K), period (1K). What's the best join

Re: Re: multiple tables join with only one hug table.

2011-08-13 Thread Koert Kuipers
f each mapper. >> >> -Ayon >> See My Photos on Flickr <http://www.flickr.com/photos/ayonsinha/> >> Also check out my Blog for answers to commonly asked >> questions.<http://dailyadvisor.blogspot.com> >> >> -- >> *Fro

Re:Re: multiple tables join with only one hug table.

2011-08-13 Thread Daniel,Wu
ler tables specified in the Mapjoin hint into memory. Then every small table is in memory of each mapper. -Ayon See My Photos on Flickr Also check out my Blog for answers to commonly asked questions. From: "Daniel,Wu" To: hive Sent: Thursday, August 11, 2011 7:01 PM Subject: multi

Re: multiple tables join with only one hug table.

2011-08-12 Thread Koert Kuipers
;http://dailyadvisor.blogspot.com> > > -- > *From:* "Daniel,Wu" > *To:* hive > *Sent:* Thursday, August 11, 2011 7:01 PM > *Subject:* multiple tables join with only one hug table. > > if the retailer fact table is sale_fact with 10B rows, a

Re: multiple tables join with only one hug table.

2011-08-11 Thread Ayon Sinha
. From: "Daniel,Wu" To: hive Sent: Thursday, August 11, 2011 7:01 PM Subject: multiple tables join with only one hug table. if the retailer fact table is sale_fact with 10B rows, and join with 3 small tables: stores (10K), products(10K), period (1K). What's the best join solution?

multiple tables join with only one hug table.

2011-08-11 Thread Daniel,Wu
if the retailer fact table is sale_fact with 10B rows, and join with 3 small tables: stores (10K), products(10K), period (1K). What's the best join solution? In oracle, it can first build hash for stores, and hash for products, and hash for stores. Then probe using the fact table, if the row mat