Why I fail to append data with tableappender called by Python API?

32 Views Asked by At

I uploaded data using tableAppender provided by Python API. But without any error reported after calling the code, the data was not appended to the DolphinDB table. Any hints or solutions would be appreciated.

1

There are 1 best solutions below

0
Shena On BEST ANSWER

Troubleshooting steps:

step 1:

First, check the result of tableAppender.append. The return value represents how many data items have been appended.

step 2:

If the value is 0, it means no data has been appended. Check whether the appended data exceeds the partition range.

For example, I want to get the result as follows:

enter image description here

But the partitioning scheme is:

enter image description here

Data to be appended is out of the partition range, so the append task fails.