CoreData:使用 NSCKImportOperation 删除传播预取失败

CoreData: Delete propagation prefetching failed using NSCKImportOperation

我正在测试 CoreData+CloudKit,即我正在使用 NSPersistentCloudKitContainer 来处理与 iCloud 的所有通信。
当我启动该应用程序时,CoreData 会自动与 iCloud 同步,即(除其他外)插入或更新的记录会导入到 CoreData。没有记录被删除。
我在模拟器上测试 运行。

我的第一次尝试是只使用 viewContext。要将远程更改合并到此上下文中,我设置

viewContext.automaticallyMergesChangesFromParent = true

此外,我正在使用历史跟踪 as suggested by Apple,除了历史处理还使用 viewContext,而不是新的背景上下文。
这工作正常,除了使用 viewContext.

预期阻塞 UI

因此,我的第二次尝试是通过背景上下文处理历史记录(如 Apple 所建议的那样)。
现在重复记录以下错误(显然永远):

CoreData: Delete propagation prefetching failed with exception: The fetch request's entity 0x6000017a2050 'NSCKImportOperation' appears to be from a different NSManagedObjectModel than this context's

即使我删除了 Dashboard 中的所有 iCloud 记录,并从模拟器中删除了应用程序,也会记录此错误。
我只使用一个 NSManagedObjectModel 关系,但所有关系都有删除规则“无操作”。

为了检查此错误的原因,我设置了一个 运行 时间断点,应用程序停止并显示以下堆栈跟踪:

我应该提到错误消失了,如果我设置

viewContext.automaticallyMergesChangesFromParent = false

但我当然需要自动合并才能正确操作。

我的问题是:
这真的是一个错误吗? (日志显示“它似乎……”)。
可能是什么原因,如何避免?

PS: CoreData prefetching相关的帖子还有很多,但是没有找到CoreData+相关的帖子CloudKit

我认为原因是我的背景上下文配置错误。它被设置为保留所有已注册的对象。一旦我注释掉相应的代码,错误就消失了:

private (set) lazy var backgroundContext: NSManagedObjectContext! = {
    let context = persistentContainer.newBackgroundContext()
    context.name = "backgroundContext"
    
    // For possible merge policies see <https://developer.apple.com/documentation/coredata/nsmergepolicy/merge_policies>
    context.mergePolicy = NSMergeByPropertyObjectTrumpMergePolicy
    
    /*
    CAUTION: DO NOT ENABLE THE FOLLOWING STATEMENT:
    context.retainsRegisteredObjects = true
    If enabled, the following error is reported indefinitely:
    ShopEasy[20204:2672392] [error] CoreData: Delete propagation prefetching failed with exception: 
    The fetch request's entity 0x600003764630 'NSCKImportOperation' appears to be from a different NSManagedObjectModel than this context's
    */
            
    // Pin the context to the current generation token and set it to keep itself up to date with local changes.
    context.automaticallyMergesChangesFromParent = true
    context.performAndWait {
        do {
            try context.setQueryGenerationFrom(.current)
        } catch {
            fatalError("###\(#function): Failed to pin viewContext to the current generation: \(error)")
        }
    }
    return context
}()