Member since
02-15-2017
7
Posts
0
Kudos Received
0
Solutions
03-23-2017
10:54 AM
1 Kudo
Ya got it. Just combining that from raw files is not possible. Instead you need to create two tables for CDR data and CRM data and you can write MR job or java client based on data size with following steps. 1) Scan CDR table and get Bnumber 2) Call get on CRM table to get the corresponding details. 3) Prepared puts from the get call on CRM and add them to the ROW get from CDR and write the CDR. or else you can use Apache Phoenix so that you can utilise UPSERT SELECT features which simplify things. http://phoenix.apache.org/ http://phoenix.apache.org/language/index.html#upsert_select
... View more
03-07-2017
06:04 PM
1 Kudo
Phoenix is unable to find the location of the hbase:meta region. This is likely caused by one of two reasons: First, make sure that HBase is actually running and healthy. Second, it may be that Phoenix is not looking at the correct place in ZK to find your HBase instance. You can try to use the "-z" option to specify the ZK quorum for your environment (e.g. localhost:2181:/hbase-unsecure).
... View more