Member since
07-17-2019
738
Posts
433
Kudos Received
111
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2545 | 08-06-2019 07:09 PM | |
2798 | 07-19-2019 01:57 PM | |
3919 | 02-25-2019 04:47 PM | |
3967 | 10-11-2018 02:47 PM | |
1298 | 09-26-2018 02:49 PM |
07-30-2018
04:52 PM
An HBase snapshot is an immutable, point-in-time shallow copy of a table. It does not change over time. If you want to capture the changes made to a table since an old snapshot in a new snapshot, you must take a new snapshot.
... View more
06-26-2018
04:59 PM
Phoenix does not use the trivial serialization that you have written into your HBase table by hand. Use the Phoenix API to write the data into your table for complex data types. Or, create your view on your physical table using the TO_DATE function in your view definition to convert the VARCHAR data to a DATE.
... View more
06-15-2018
04:09 PM
HBase does not have to read an entire HFile into memory to service reads.
... View more
06-09-2018
10:25 PM
You need to add the directory containing hbase-site.xml that you want, not the file itself. This is how Java works. You specify jar files, an asterisk wildcard, or a directory.
... View more
06-07-2018
01:34 AM
You didn't need to remove the other valid classpath entry that you had previously...
... View more
06-06-2018
07:35 PM
You have specified an invalid classpath. You should be using: /usr/hdp/2.6.4.0-91/hbase/lib/* You can read https://docs.oracle.com/javase/8/docs/technotes/tools/windows/classpath.html#A1100762 for a refresher.
... View more
04-17-2018
04:27 PM
I've never heard of any issue where a truncate does not remove all data from the table (the regions are physically destroyed, so there is no way that the data could persist). Perhaps you have some process which is writing new data into this table in the background which you forgot about?
... View more
04-16-2018
07:31 PM
The commands you shared in your initial question are not what that post says to do for a Phoenix table mapped to an HBase table. You said you ran `CREATE TABLE`, but that FAQ instructs you to use `CREATE VIEW`.
... View more
04-16-2018
03:54 PM
https://phoenix.apache.org/faq.html#How_I_map_Phoenix_table_to_an_existing_HBase_table
... View more