Hi there, I have two tables I want to join.
TABLE_A: ( (A,B), C, D, E) where (A,B) is the composite key TABLE_B: ( (A), C, D, E) where A is the key I basically want to join TABLE_A and TABLE_B on A and update TABLE_A with the values C, D, E coming from TABLE_B When I try to use UPSERT SELECT JOIN statement, it causes the regionserver to die, without any logs. TABLE_B is really small compared to TABLE_A Any hints on how to approach this? Thanks a lot!
