[ https://issues.apache.org/jira/browse/HADOOP-2021?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Edward Yoon updated HADOOP-2021: -------------------------------- Description: If we don't have an index for a domain in the join, we can still improve on the nested-loop join using sort join. {code} R1 = table('movieLog_table'); R2 = table('stockCompany_info'); result = R1.join(R1.studioName = R2.corporation) and R2; {code} was:If we don't have an index for a domain in the join, we can still improve on the nested-loop join using sort join. update description using example. > Sort Join Implementation > ------------------------ > > Key: HADOOP-2021 > URL: https://issues.apache.org/jira/browse/HADOOP-2021 > Project: Hadoop > Issue Type: Sub-task > Components: contrib/hbase > Affects Versions: 0.14.1 > Environment: all environments > Reporter: Edward Yoon > Priority: Minor > Fix For: 0.16.0 > > > If we don't have an index for a domain in the join, we can still improve on > the nested-loop join using sort join. > {code} > R1 = table('movieLog_table'); > R2 = table('stockCompany_info'); > result = R1.join(R1.studioName = R2.corporation) and R2; > {code} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.