有没有办法在 heroku connect 映射上允许多个同步错误?

Is there a way to allow multiple synchronisation errors on heroku connect mapping?

由于映射后的独特限制和错误的 SF 同步(因此该字段保持空白),我总是在 sfid 字段上收到 postgresql 错误。

第二次 SF 同步错误后,我无法保存其他行。

请帮忙

为了保存行而不在 sfid 上出现 UNIQUE 错误, 尝试创建 18 length uid 以避免空白字段(postgreSQL 中的 x2 空白字段被认为是相等的)

node.js:

const { v4: uuidv4 } = require('uuid');

let uuid = uuidv4();
record.sfId = uuid.substring(1, 18);