GET {HOST:URL}/gl/showPartition

This API gets information about existing partitions.

The showPartition API gets the following information:
  • Statistics and details about the partition.
  • The partitions for each table created by the schema.
  • The size in bytes of each partition.

Example

The following is an example response:
{
    "message": "Partition Details",
    "Tables": [
        {
            "name": "dailysummary",
            "Partitions": [
                {
                    "name": "dailysummary_052023",
                    "tableSize": "0 bytes"
                }
            ]
        },
        {
            "name": "glmtxevent",
            "Partitions": [
                {
                    "name": "glmtxevent_052023",
                    "tableSize": "8192 bytes"
                }
            ]
        }
    ]
}