Hello everyone I saw that we can create a Phoenix table from an exist HBase table,(for detail <https://phoenix.apache.org/faq.html#How_I_map_Phoenix_table_to_an_existing_HBase_table> ) My question is whether Phoenix can supprort the history version of my row?
I am trying to use Phoenix to store some info which have a lot of common columns, such as a table "T1 ( c1, c2, c3, c4 )", many rows share the same c1,c2,c3,and the variable column is c4, Using HBase we can put 'T1', 'key1', ' f:c4', 'new value', timestamp, And i can get previous version of this row,They all share the same c1,c2,c3 whice HBase only store once. Whether phoenix support to query history version of my row? I got this jira link <https://issues.apache.org/jira/browse/PHOENIX-590> , This is same as my question. Hadoop is using for big data, and mlutiple version can help us reduce our date that unnecessary I think phoenix should support this feature too. If Phoenix shouldn't support multiple version, please tell me the reason. Anyway thansks for your help, First