Storage and storage table description and update periods. table_desc is invalid when update_periods has a list of update_period_table_descriptor instead of a list of enums.
Java class for x_storage_table_element complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="x_storage_table_element">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<all>
<element name="update_periods" type="{uri:lens:cube:0.1}x_update_periods" minOccurs="0"/>
<element name="storage_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="table_desc" type="{uri:lens:cube:0.1}x_storage_table_desc" minOccurs="0"/>
</all>
</restriction>
</complexContent>
</complexType>
| name | data type | description |
|---|---|---|
| update_periods | XUpdatePeriods | |
| storage_name | string | |
| table_desc | XStorageTableDesc |
Example
{
"update_periods" : {
"update_period_table_descriptor" : [ [ {
"update_period" : "CONTINUOUS",
"table_desc" : { }
}, {
"update_period" : "YEARLY",
"table_desc" : { }
} ], [ {
"update_period" : "SECONDLY",
"table_desc" : { }
}, {
"update_period" : "WEEKLY",
"table_desc" : { }
} ] ],
"update_period" : [ [ "MINUTELY", "SECONDLY" ], [ "DAILY", "YEARLY" ] ]
},
"storage_name" : "...",
"table_desc" : {
"external" : true,
"part_cols" : {
"column" : [ [ { }, { } ], [ { }, { } ] ]
},
"table_parameters" : {
"property" : [ [ { }, { } ], [ { }, { } ] ]
},
"serde_parameters" : {
"property" : [ [ { }, { } ], [ { }, { } ] ]
},
"bucket_cols" : [ [ "...", "..." ], [ "...", "..." ] ],
"sort_cols" : [ [ "...", "..." ], [ "...", "..." ] ],
"sort_col_order" : [ [ 12345, 12345 ], [ 12345, 12345 ] ],
"skewed_info" : [ [ {
"col_names" : [ [ "...", "..." ], [ "...", "..." ] ],
"col_values" : [ [ { }, { } ], [ { }, { } ] ],
"value_location_map" : [ [ { }, { } ], [ { }, { } ] ]
}, {
"col_names" : [ [ "...", "..." ], [ "...", "..." ] ],
"col_values" : [ [ { }, { } ], [ { }, { } ] ],
"value_location_map" : [ [ { }, { } ], [ { }, { } ] ]
} ], [ {
"col_names" : [ [ "...", "..." ], [ "...", "..." ] ],
"col_values" : [ [ { }, { } ], [ { }, { } ] ],
"value_location_map" : [ [ { }, { } ], [ { }, { } ] ]
}, {
"col_names" : [ [ "...", "..." ], [ "...", "..." ] ],
"col_values" : [ [ { }, { } ], [ { }, { } ] ],
"value_location_map" : [ [ { }, { } ], [ { }, { } ] ]
} ] ],
"time_part_cols" : [ [ "...", "..." ], [ "...", "..." ] ]
}
}