Hybrid Data Warehouse Functions
hstore_light_merge(rel_name text)
Description: This function is used to manually perform lightweight cleanup on HStore tables and holds the level-3 lock of the target table.
Return type: int
Example:
1
|
SELECT hstore_light_merge('reason_select'); |
hstore_full_merge(rel_name text, partitionName text)
Description: This function is used to manually perform full cleanup on HStore tables. The second input parameter is optional and is used to specify a single partition for operations.
Return type: int
- This operation forcibly merges all the visible operations of the delta table to the primary table, and then creates an empty delta table. During this period, this operation holds the level-8 lock of the table.
- The duration of this operation depends on the amount of data in the delta table. You must enable the HStore clearing thread to ensure unnecessary data in the HStore table is cleared in a timely manner.
- Only cluster versions 8.3.0.100 and later support the second parameter partitionName. However, these versions do not allow invoking this function via call, as it lacks reload capability.
Example:
1 2 |
SELECT hstore_full_merge('reason_select'); SELECT hstore_full_merge('reason_select', 'part1'); |
pgxc_get_small_cu_info(rel_name text, row_count int)
Description: Obtains the small CU information of the target table. The second parameter row_count is optional and indicates the small CU threshold. If the number of live tuples in a CU is fewer than the threshold, the CU is considered as a small CU. The default value is 200. This function is supported only by clusters of version 8.2.1.300 or later.
Return type: record
Return value:
node_name: DN name.
part_name: partition name. This column is empty for non-partitioned tables.
zero_cu_count: number of 0 CUs. If all data in a CU is deleted, the CU is called 0 CU.
small_cu_count: number of small CUs. When a CU has live data that is less than the threshold, the CU is called a small CU.
total_cu_count: total number of CUs.
sec_part_cu_num: number of CUs in each level-2 partition. This column is displayed only when secondary_part_column is specified. This field is available only in clusters of version 8.3.0 or later.
It should be noted that a CU may contain multiple columns.
Example:
1 2 3 4 5 6 |
SELECT * FROM pgxc_get_small_cu_info('hs'); node_name | part_name | zero_cu_count | small_cu_count | total_cu_count | sec_part_cu_num -----------+-----------+---------------+----------------+----------------+------------------------------------------ datanode1 | | 0 | 4 | 4 | p1:1 p2:0 p3:1 p4:0 p5:1 p6:0 p7:1 p8:0 datanode2 | | 0 | 4 | 4 | p1:0 p2:1 p3:0 p4:1 p5:0 p6:1 p7:0 p8:1 (2 rows) |
gs_hstore_compaction(rel_name text, row_count int)
Description: Merges small CUs of the target table. The second parameter row_count is optional and indicates the small CU threshold. If the number of live tuples in a CU is fewer than the threshold, the CU is considered as a small CU. The default value is 100. This function is supported only by 8.2.1.300 and later versions.
Return type: int
Return value: numCompactCU, which indicates the number of small CUs to be merged.
- A CU may contain multiple columns.
- The partition name cannot be input in the function. Currently, a single partition cannot be specified in this function.
Example:
1
|
SELECT gs_hstore_compaction('hs', 10); |
pgxc_get_hstore_delta_info(rel_name text)
Description: This function is used to obtain the delta table information of the target table, including the delta table size and the number of INSERT, DELETE, and UPDATE records. This function is supported only by clusters of version 8.2.1.100 or later.
Return type: record
Return value:
node_name: DN name.
part_name: partition name. This column is set to non-partition table if the table is not a partitioned table.
live_tup: number of live tuples.
n_ui_type: number of records with a type of ui (small CU combination and upsert insertion through update). An ui record represents a single or batch insertion. This parameter is supported only by 8.3.0.100 and later versions.
n_i_type: number of records whose type is i (insert). An i record indicates one insertion, which can be single insertion or batch insertion.
n_d_type: number of records whose type is d (delete). One d record indicates one deletion, which can be single deletion or batch deletion.
n_x_type: number of records whose type is x (deletions generated by update).
n_u_type: number of records whose type is u (lightweight update).
n_m_type: number of records whose type is m (merge).
data_size: table size.
Example:
1 2 3 4 5 6 7 |
SELECT * FROM pgxc_get_hstore_delta_info('hs_part'); node_name | part_name | live_tup | n_ui_type | n_i_type | n_d_type | n_x_type | n_u_type | n_m_type | data_size -----------+-----------+----------+-----------+----------+----------+----------+----------+----------+----------- dn_1 | p1 | 2 | 0 | 2 | 0 | 0 | 0 | 0 | 8192 dn_1 | p2 | 2 | 0 | 2 | 0 | 0 | 0 | 0 | 8192 dn_1 | p3 | 2 | 0 | 2 | 0 | 0 | 0 | 0 | 8192 (3 rows) |
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot