getTSDBCompactionTaskStatus

Syntax

getTSDBCompactionTaskStatus([count])

Arguments

count a non-negative integer. Return the status of the latest count compaction tasks. The default value is 0, indicating that all completed compaction tasks (up to 256 latest tasks) and uncompleted tasks are returned.

Details

Obtain the status of TSDB level file compaction tasks. The function can only be executed on a data node.

Return a table with the following columns:

  • volume: the volume where the compaction is performed. It is set by the configuration parameter volumes.

  • level: the level of files for compaction.

  • chunkId: the ID of chunk where the compaction is performed.

  • tableName: the physical name of the table where the compaction is performed.

  • files: the level files involved in the current compaction.

  • force: whether the compaction is triggered by triggerTSDBCompaction.

  • receivedTime: the timestamp when the compaction task enqueued.

  • startTime: the timestamp when the compaction task started.

  • endTime: the timestamp when the compaction task ended.

  • errorMessage: If a task failed, the column displays the failure cause; otherwise it is left empty.

Examples

$ getTSDBCompactionTaskStatus()

volume

level

chunkId

tableName

files

force

receivedTime

startTime

endTime

errorMessage

/home/DolphinDB/DolphinDB_Linux64_V2.00.9/server/clusterDemo/data/node1/storage

0

e0e00bc2-b81e-6eb9-4d01-7bb17fb39595

pt_2

0_00000006,0_00000011,

true

2023.06.22T12:47:32.009

2023.06.22T12:47:32.010

2023.06.22T12:47:32.182

/home/DolphinDB/DolphinDB_Linux64_V2.00.9/server/clusterDemo/data/node1/storage

1

a9dfccad-cec1-0786-480a-9ae809481a8b

pt_2

0_00000003,0_00000007,

true

2023.06.22T12:47:32.010

2023.06.22T12:47:32.182

2023.06.22T12:47:32.326

/home/DolphinDB/DolphinDB_Linux64_V2.00.9/server/clusterDemo/data/node1/storage

1

331324ce-b49f-94ac-4da8-a4bcf6c34e1c

pt_2

0_00000004,0_00000010,

true

2023.06.22T12:47:32.010

2023.06.22T12:47:32.326

2023.06.22T12:47:32.451

/home/DolphinDB/DolphinDB_Linux64_V2.00.9/server/clusterDemo/data/node1/storage

2

f3597e0f-6ad9-6eb6-45c8-d42adc5c50f7

pt_2

0_00000002,0_00000008,

true

2023.06.22T12:47:32.010

2023.06.22T12:47:32.451

2023.06.22T12:47:32.527

/home/DolphinDB/DolphinDB_Linux64_V2.00.9/server/clusterDemo/data/node1/storage

2

d36ac640-3428-069b-4382-0b9608b94d17

pt_2

0_00000005,0_00000009,

true

2023.06.22T12:47:32.010

2023.06.22T12:47:32.527

2023.06.22T12:47:32.616

/home/DolphinDB/DolphinDB_Linux64_V2.00.9/server/clusterDemo/data/node1/storage

2

e0e00bc2-b81e-6eb9-4d01-7bb17fb39595

pt_2

0_00000016,0_00000021,

true

2023.06.22T12:47:33.058

2023.06.22T12:47:33.058

2023.06.22T12:47:33.151

Related function: triggerTSDBCompaction