gpt4 book ai didi

ios - 核心数据迁移崩溃

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:17:04 25 4
gpt4 key购买 nike

我们的一些用户在 Core Data 迁移时崩溃。

关于“Core Data Migration & crash”已经有几个问题了,主要是关于内存使用和UI响应。

Migrating large Core Data database crash

Out-Of-Memory while doing Core Data migration

Core Data causing app to crash while migrating

Core Data lightweight migration crash

对于高内存峰值,Apple 建议 multiple passes solution ,这里是 another large datasets solution .

当我尝试重现问题时,例如使用轻量级迁移来迁移大型数据集,Xcode 有时会由于内存使用而终止我的应用程序。所以我认为我们的用户可能会因为同样的原因而遇到崩溃 - 内存不足。

但是,@Marcus S. Zarra 告诉我:

@Jason Lee: Lightweight migration doesn't run out of memory. Perhaps you are confusing it with a bad food crash or something else? I would suggest opening a new SO question and sending me the link. – Marcus S. Zarra

所以我创建了这个新问题来问:

  1. 当应用程序在 Core Data Migration 上崩溃时,如何判断原因?内存问题或没有 UI 响应。
  2. 如何解决问题?

谢谢。

更新 1:添加崩溃日志

@Marcus S. Zarra,你是对的。 吃坏食物...

Date/Time:       2014-01-03 15:15:00.801 +0800
OS Version: iPhone OS 5.1.1 (9B206)
Report Version: 104

Exception Type: 00000020
Exception Codes: 0x8badf00d
Highlighted Thread: 0

Application Specific Information:
com.xxx.xxx failed to launch in time

Elapsed total CPU time (seconds): 7.330 (user 7.330, system 0.000), 36% CPU
Elapsed application CPU time (seconds): 4.387, 21% CPU

Thread 0 name: Dispatch queue: com.apple.main-thread
Thread 0:
0 libsqlite3.dylib 0x317ae6ba ___lldb_unnamed_function176$$libsqlite3.dylib + 166
1 libsqlite3.dylib 0x317a2846 ___lldb_unnamed_function128$$libsqlite3.dylib + 7934
2 libsqlite3.dylib 0x317a06c2 sqlite3_step + 2098
3 CoreData 0x36924e2e _execute + 50
4 CoreData 0x36924d64 -[NSSQLiteConnection execute] + 2408
5 CoreData 0x369c7d54 -[NSSQLConnection prepareAndExecuteSQLStatement:] + 40
6 CoreData 0x36a19582 -[_NSSQLiteStoreMigrator performMigration:] + 590
7 CoreData 0x36a102b8 -[NSSQLiteInPlaceMigrationManager migrateStoreFromURL:type:options:withMappingModel:toDestinationURL:destinationType:destinationOptions:error:] + 1948
8 CoreData 0x369b5c02 -[NSMigrationManager migrateStoreFromURL:type:options:withMappingModel:toDestinationURL:destinationType:destinationOptions:error:] + 482
9 CoreData 0x36a01bf4 -[NSStoreMigrationPolicy(InternalMethods) migrateStoreAtURL:toURL:storeType:options:withManager:error:] + 176
10 CoreData 0x36a0119c -[NSStoreMigrationPolicy migrateStoreAtURL:withManager:metadata:options:error:] + 84
11 CoreData 0x36a02b58 -[NSStoreMigrationPolicy(InternalMethods) _gatherDataAndPerformMigration:] + 2188
12 CoreData 0x3691a20e -[NSPersistentStoreCoordinator addPersistentStoreWithType:configuration:URL:options:error:] + 3086

那么,异步迁移数据?

最佳答案

在我们解决这个问题的同时开始更新答案。

causing app to crash while migrating ,不是内存崩溃。那是看门狗崩溃。

Migrating large Core Data database crash没有崩溃日志,但我怀疑它也可能是看门狗。

Core Data lightweight migration crash也是看门狗崩溃,而不是内存崩溃。

一旦我们看到您的崩溃,我们就能知道发生了什么。

更新1

好的,0x8badf00d 是我们的看门狗崩溃。这意味着您的应用启动时间过长。

如何解决这个问题?

不要在-applicationDidFinishLaunching...中立起核心数据栈是简答。

一个快速解决方法是让您的应用的初始 View 与启动图像(启动画面)相同。然后,当您启动它时,它会很快(非常快)完成 -applicationDidFinish... 并且您可以根据需要迁移多长时间。

我的建议(因为您不知道迁移需要多长时间才能开始):

  1. 检查是否需要使用 -[NSManagedObjectModel isConfiguration: compatibleWithStoreMetadata:]
  2. 进行迁移
  3. 更新 View 显示,让用户知道正在进行迁移
  4. 在后台 block 中进行迁移(将 -addPersistentStore... 放在一个 block 中并在后台队列上调用它,它是线程安全的,尽管最好在它周围加锁) .
  5. 迁移完成后删除临时 View
  6. 启动您的真实 UI。

这应该很容易改变并让你通过看门狗。

关于ios - 核心数据迁移崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20896519/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com