I have a large custom table that I want to remove targeted rows from on
a regular basis, in order to keep the row count at a reasonable number
for performance reasons.The primary key (PK) is on an integer field, but
I was to delete based on a date field. However, when I try to use the
Write API to remove based on the date, it returns with an error after
300 seconds. Consistently. And the rows are not removed. When I try to
use the WriteCollection API to remove rows based on dates, it returns
alm...