We are planning to use the UDT for storing various inventory data. Ex:
CREATE TYPE inv_bucket( soh double, transit_qty double, in_progress_sales_qty double );
and table as
CREATE TABLE inv_by_loc ( item text, market text, location int, inv_bucket bucket, PRIMARY KEY (item, market, location) )
Should I use column inv_bucket FROZEN<bucket> or inv_bucket bucket ? Any performance issue without FROZEN?