Created 12-01-2016 12:10 PM
I am using Ambari version 2.4.1 with 8 region servers (16 VCPU). Is it ok to have 8*3= 24 buckets for my table? How to upgrade the phoenix to 4.6 where I can create a table and have row timestamp to a Phoenix column? if I create a view on top a table in phoenix, is it going to claim a physical space?
Created 12-03-2016 02:52 PM
Please read the follo2ing reference:
http://phoenix.apache.org/performance.html#Salting
For optimal performance, number of salt buckets should match number of region servers). You càn upgrade t HdP 2.5.3 with Phoenix 4.7. Any design decision should be followed by testing.
Created 12-03-2016 02:52 PM
Please read the follo2ing reference:
http://phoenix.apache.org/performance.html#Salting
For optimal performance, number of salt buckets should match number of region servers). You càn upgrade t HdP 2.5.3 with Phoenix 4.7. Any design decision should be followed by testing.
Created 12-12-2016 01:22 PM
If I create a view on top a table in phoenix, is it going to claim a physical space?
Created 12-16-2016 12:12 AM
No it doesn't (except for metadata). Phoenix doesn't materialize the tables (i.e. physically store the data), but only runs the query mapped by the views.
Created 12-17-2016 06:36 PM
Is it possible to ad index on the views?
Also, I want to add a table with defined column families and few qualifiers. My requirement is to store the data with qualifiers at runtime. How can I make sure to fetch the valid qualifiers while fetching particular record?
Created 12-19-2016 08:16 PM
Yes, index on views work but with some limitations: https://phoenix.apache.org/views.html
I don't have an answer for the second part of your question on cf and qualifiers.
Created 08-01-2017 08:36 AM
for the second question:-
bq. Also, I want to add a table with defined column families and few qualifiers. My requirement is to store the data with qualifiers at runtime. How can I make sure to fetch the valid qualifiers while fetching particular record?
You can use dynamic columns while upserting data and doing SELECT.