How to use a register temp table inside mapPartitions of an RDD

2016-02-09 Thread SRK
hi, How to use a registerTempTable to register an RDD as a temporary table and use it inside mapPartitions of a different RDD? Thanks, Swetha -- View this message in context:

Re: How to use a register temp table inside mapPartitions of an RDD

2016-02-09 Thread Koert Kuipers
if you mean to both register and use the table while you are inside mapPartition, i do not think that is possible or advisable. can you join the data? or broadcast it? On Tue, Feb 9, 2016 at 8:22 PM, SRK wrote: > hi, > > How to use a registerTempTable to register an