活动介绍

HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=10m10s712ms797µs900ns).

时间: 2024-01-25 16:55:19 浏览: 654
这是一个关于数据库连接池的警告信息,意味着在连接池中的线程被卡住了(Thread starvation),或者是系统时钟出现了跳跃(clock leap)。这可能会导致连接池出现问题,进而影响到应用程序的正常运行。建议你检查连接池的配置,确保连接池的大小适当,以及确认系统时钟是否正确。还可以尝试升级数据库驱动程序或更改连接池的实现方式,以解决这个问题。
相关问题

HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=1m38s706ms414µs800ns).

<think>好的,我现在需要处理用户关于HikariCP连接池出现“Thread starvation or clock leap detected (housekeeper delta=...”警告的问题。首先,我得理解这个警告的具体含义。根据HikariCP的文档,这个警告通常发生在连接池的housekeeper线程无法按时执行任务时,可能是因为线程饥饿或者系统时钟发生了跳变。 接下来,用户可能需要逐步排查这两个可能的原因。首先,线程饥饿可能由高负载或线程池配置不当导致。我应该建议用户检查应用程序的线程使用情况,是否有其他线程占用了大量资源,导致housekeeper线程无法及时运行。另外,查看HikariCP的配置参数,比如连接超时时间(connectionTimeout)和最大池大小(maximumPoolSize),是否合理设置,避免资源竞争。 然后是时钟跳变的可能性。系统时钟的突然变化,比如NTP同步或手动调整时间,可能导致HikariCP检测到时间差异常。这时候需要检查系统日志,确认是否有时间同步事件发生。如果确实存在时钟问题,可能需要调整系统配置或使用更稳定的时间同步服务。 此外,可能还有其他因素,比如长时间的垃圾回收导致线程暂停。建议用户监控GC日志,看看是否有长时间的停顿,优化内存使用和GC设置。 生成相关问题时,要确保覆盖常见的排查步骤、配置优化、与其他连接池的比较,以及监控工具的使用。这些问题能帮助用户更全面地理解和解决HikariCP的线程饥饿或时钟问题。 最后,确保回答符合用户的要求,使用正确的中文和LaTeX格式,引用相关文档,结构清晰,步骤明确。同时,检查是否有遗漏的细节,比如是否需要提到HikariCP的版本差异或特定环境的配置调整。需要确保所有建议都是实际可行的,并参考官方资料,避免误导用户。</think>### HikariCP连接池线程饥饿或时钟跳变问题排查 #### 1. 问题背景 当HikariCP日志中出现`Thread starvation or clock leap detected (housekeeper delta=...)`警告时,表明连接池的`housekeeper`线程(负责维护连接健康状态)未能按时调度。可能原因包括: - **线程饥饿**:其他线程占用了过多CPU资源,导致`housekeeper`无法及时运行[^1]。 - **时钟跳变**:系统时钟发生突变(如NTP时间同步或手动调整)。 --- #### 2. 排查步骤 ##### 2.1 确认线程饥饿 1. **检查JVM线程状态**: ```bash jstack <pid> | grep -A 10 "HikariPool-1 housekeeper" ``` 查看`housekeeper`线程是否长时间处于`WAITING`或`BLOCKED`状态。 2. **分析CPU使用率**: - 使用`top`或`htop`(Linux)检查系统CPU负载。 - 通过`jvisualvm`或`async-profiler`定位高CPU占用的线程。 3. **调整HikariCP配置**: ```properties # 增加连接超时时间(默认30秒) connectionTimeout=30000 # 限制最大连接数(避免资源竞争) maximumPoolSize=20 ``` ##### 2.2 排除时钟跳变 1. **检查系统日志**: ```bash journalctl -k | grep "Time adjustment" ``` 确认是否有NTP同步或手动时钟调整记录。 2. **使用稳定时钟源**: 配置`chrony`或`ntpd`服务,避免频繁时间同步: ```bash # chrony配置示例 server ntp.aliyun.com iburst ``` 3. **监控时钟偏差**: ```bash chronyc tracking # Linux w32tm /query /status # Windows ``` --- #### 3. 其他优化建议 - **避免长时间GC停顿**:优化JVM堆大小与垃圾回收器(如G1GC)。 - **隔离连接池线程**:通过自定义线程工厂为HikariCP分配独立线程组。 - **升级HikariCP版本**:某些版本修复了时钟跳变检测逻辑(如2.7.0+)[^2]。 ---

HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=3h12s568ms857µs200ns).

这个错误通常是由于线程饥饿或时钟跳跃引起的,可能是由于长时间运行,导致系统资源不足导致的。可以尝试以下解决方案: 1. 增加线程池大小,以便更多的线程可以同时运行。 2. 调整系统时钟,确保时钟同步正确。 3. 检查是否有其他应用程序或服务占用了过多的系统资源,导致线程饥饿。 4. 调整应用程序的运行配置,例如减少内存使用量,优化代码性能等。 如果以上解决方案无法解决问题,建议联系系统管理员或开发人员进行进一步调试和排查。
阅读全文

相关推荐

Line 4011: 07-31 10:25:56.817235 1813 29584 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 95 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 Line 4708: 07-31 10:25:56.849657 1813 29584 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 96 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 Line 5803: 07-31 10:25:56.884443 1813 29584 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 97 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 Line 6404: 07-31 10:25:56.917426 1813 29584 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 98 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 Line 6957: 07-31 10:25:56.949952 1813 29584 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 99 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 Line 7223: 07-31 10:25:56.952352 1813 29584 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 100 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 Line 8303: 07-31 10:25:57.198243 4622 4622 D PluginSeedling--Origin: ViewBuildTaskScheduler-->schedule ENTRY_STATUS_BAR current [LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_STATUS_BAR, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: true, lockscreenShouldShow: true, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_SM serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 2] sorted [LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_STATUS_BAR, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: true, lockscreenShouldShow: true, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_SM serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 2] removed []} Line 8304: 07-31 10:25:57.198267 4622 4622 I PluginSeedling--Origin: LiveAlertInteractorImpl-->notifyEntryDataChanged, result:[LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_STATUS_BAR, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: true, lockscreenShouldShow: true, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_SM serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 2] Line 8305: 07-31 10:25:57.198299 4622 4622 D PluginSeedling--Capsule: CapsulesRepository-->onDataChanged, hasSystem[true to true] size:1: [LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_STATUS_BAR, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: true, lockscreenShouldShow: true, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_SM serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 2] Line 8311: 07-31 10:25:57.198455 4622 4622 D PluginSeedling--CapsuleCard: CardsRepository-->onDataChanged, size:1:[LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_STATUS_BAR, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: true, lockscreenShouldShow: true, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_SM serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 2] Line 8341: 07-31 10:25:57.205270 4622 4622 D PluginSeedling--Origin: ViewBuildTaskScheduler-->schedule ENTRY_NOTIFICATION current [LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_NOTIFICATION, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: false, lockscreenShouldShow: false, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_NONE serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 1] sorted [LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_NOTIFICATION, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: false, lockscreenShouldShow: false, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_NONE serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 1] removed []} Line 8342: 07-31 10:25:57.205299 4622 4622 I PluginSeedling--Origin: LiveAlertInteractorImpl-->notifyEntryDataChanged, result:[LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_NOTIFICATION, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: false, lockscreenShouldShow: false, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_NONE serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 1] Line 8344: 07-31 10:25:57.205323 4622 4622 I PluginSeedling--Notification: NotificationRepository-->onDataChanged, [LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_NOTIFICATION, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: false, lockscreenShouldShow: false, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_NONE serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 1] Line 8345: 07-31 10:25:57.205347 4622 4622 D PluginSeedling--Notification: NotificationController-->onNotificationListChanged, list = [LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_NOTIFICATION, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: false, lockscreenShouldShow: false, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_NONE serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 1] Line 18202: 07-31 10:25:59.114009 3282 5542 D OplusJobScheduleManager: scheduleOpTimeOut set oplus job timeout to 2 hour Line 18203: 07-31 10:25:59.114019 3282 5542 D JobServiceContext: scheduleOpTimeOut set job timeout ajustedTimeoutMillis = 7200000 Line 22375: 07-31 10:25:59.831511 13078 29841 I APS_CORE: [INFO][ LOGIC ] APSRefFrameProcessor.cpp: 1414 onUninitTimeOut() timer end callback to sendCmd APS_UNINIT_TIMEOUT Line 25755: 07-31 10:26:00.266656 3282 3347 D OplusJobScheduleManager: scheduleOpTimeOut set oplus job timeout to 2 hour Line 25756: 07-31 10:26:00.266703 3282 3347 D JobServiceContext: scheduleOpTimeOut set job timeout ajustedTimeoutMillis = 7200000 Line 30453: 07-31 10:26:01.631396 3282 3992 D OplusJobScheduleManager: scheduleOpTimeOut set oplus job timeout to 2 hour Line 30454: 07-31 10:26:01.631443 3282 3992 D JobServiceContext: scheduleOpTimeOut set job timeout ajustedTimeoutMillis = 7200000 Line 34052: 07-31 10:26:02.993770 3282 4836 D OplusJobScheduleManager: scheduleOpTimeOut set oplus job timeout to 2 hour Line 34053: 07-31 10:26:02.993850 3282 4836 D JobServiceContext: scheduleOpTimeOut set job timeout ajustedTimeoutMillis = 7200000 Line 40713: 07-31 10:27:01.023242 3282 3403 D OplusHansManager : handleServiceTimeOut curTime 1753928821023 stopTime 1753927243478 Line 42473: 07-31 10:27:31.540626 5145 5145 D GestureFailedStatisticHelper[u0]: GestureFailedStatisticHelper#sendTimeOutEventIfNeed: timeOutCountPortrait = 0, timeOutCountLandscape = 0 Line 42474: 07-31 10:27:31.540653 5145 5145 D GestureFailedStatisticHelper[u0]: GestureFailedStatisticHelper#sendTimeOutEventIfNeed: speedFailedCountPortrait = 0, speedFailedCountLandscape = 0 Line 42655: 07-31 10:27:31.575154 5145 5145 D TaskStateHelper: TaskStateChangeTimeOutListener[ON_TRANSITION_FINISH]: init. Line 43240: 07-31 10:27:31.598925 4622 4622 D PluginSeedling--Origin: ViewBuildTaskScheduler-->schedule ENTRY_STATUS_BAR current [LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_STATUS_BAR, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: true, lockscreenShouldShow: true, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_SM serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 2] sorted [LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_STATUS_BAR, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: true, lockscreenShouldShow: true, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_SM serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 2] removed []} Line 43241: 07-31 10:27:31.598961 4622 4622 I PluginSeedling--Origin: LiveAlertInteractorImpl-->notifyEntryDataChanged, result:[LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_STATUS_BAR, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: true, lockscreenShouldShow: true, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_SM serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 2] Line 43243: 07-31 10:27:31.599001 4622 4622 D PluginSeedling--Capsule: CapsulesRepository-->onDataChanged, hasSystem[true to true] size:1: [LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_STATUS_BAR, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: true, lockscreenShouldShow: true, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_SM serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 2] Line 43261: 07-31 10:27:31.599177 4622 4622 D PluginSeedling--CapsuleCard: CardsRepository-->onDataChanged, size:1:[LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_STATUS_BAR, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: true, lockscreenShouldShow: true, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_SM serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 2] Line 43265: 07-31 10:27:31.599290 4622 4622 D PluginSeedling--Origin: ViewBuildTaskScheduler-->schedule ENTRY_NOTIFICATION current [LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_NOTIFICATION, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: false, lockscreenShouldShow: false, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_NONE serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 1] sorted [LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_NOTIFICATION, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: false, lockscreenShouldShow: false, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_NONE serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 1] removed []} Line 43266: 07-31 10:27:31.599310 4622 4622 I PluginSeedling--Origin: LiveAlertInteractorImpl-->notifyEntryDataChanged, result:[LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_NOTIFICATION, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: false, lockscreenShouldShow: false, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_NONE serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 1] Line 43267: 07-31 10:27:31.599338 4622 4622 I PluginSeedling--Notification: NotificationRepository-->onDataChanged, [LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_NOTIFICATION, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: false, lockscreenShouldShow: false, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_NONE serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 1] Line 43268: 07-31 10:27:31.599361 4622 4622 D PluginSeedling--Notification: NotificationController-->onNotificationListChanged, list = [LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_NOTIFICATION, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: false, lockscreenShouldShow: false, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_NONE serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 1] Line 43826: 07-31 10:27:31.616210 5145 5145 D TaskStateHelper: TaskStateChangeTimeOutListener[ON_TO_HOME_TRANSITION_FINISH]: init. Line 45272: 07-31 10:27:31.786068 26127 31701 I Weather_Location_LocationController: startLocationWithTimeOut, forceLocation:false, needCityFromNet:true Line 45283: 07-31 10:27:31.794577 26127 31701 I Weather_Location_LocationController: startTimeOutCheck true Line 45754: 07-31 10:27:32.127559 5145 5145 I Launcher[u0]: startActivitySafely with mTransitionFinishTimeOutListener: isSpecialAppScene = false, isBetweenTransitionEndAndFinish = false, isSplitScreenGesture = false, call = false Line 46332: 07-31 10:27:32.170313 4622 4622 D PluginSeedling--Origin: ViewBuildTaskScheduler-->schedule ENTRY_STATUS_BAR current [LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_STATUS_BAR, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: true, lockscreenShouldShow: true, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_SM serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 2] sorted [LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_STATUS_BAR, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: true, lockscreenShouldShow: true, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_SM serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 2] removed []} Line 46354: 07-31 10:27:32.170431 4622 4622 I PluginSeedling--Origin: LiveAlertInteractorImpl-->notifyEntryDataChanged, result:[LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_STATUS_BAR, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: true, lockscreenShouldShow: true, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_SM serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 2] Line 46370: 07-31 10:27:32.170633 4622 4622 D PluginSeedling--Capsule: CapsulesRepository-->onDataChanged, hasSystem[true to true] size:1: [LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_STATUS_BAR, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: true, lockscreenShouldShow: true, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_SM serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 2] Line 46410: 07-31 10:27:32.172458 4622 4622 D PluginSeedling--CapsuleCard: CardsRepository-->onDataChanged, size:1:[LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_STATUS_BAR, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: true, lockscreenShouldShow: true, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_SM serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 2] Line 46413: 07-31 10:27:32.172599 4622 4622 D PluginSeedling--Origin: ViewBuildTaskScheduler-->schedule ENTRY_NOTIFICATION current [LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_NOTIFICATION, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: false, lockscreenShouldShow: false, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_NONE serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 1] sorted [LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_NOTIFICATION, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: false, lockscreenShouldShow: false, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_NONE serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 1] removed []} Line 46414: 07-31 10:27:32.172625 4622 4622 I PluginSeedling--Origin: LiveAlertInteractorImpl-->notifyEntryDataChanged, result:[LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_NOTIFICATION, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: false, lockscreenShouldShow: false, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_NONE serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 1] Line 46415: 07-31 10:27:32.172651 4622 4622 I PluginSeedling--Notification: NotificationRepository-->onDataChanged, [LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_NOTIFICATION, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: false, lockscreenShouldShow: false, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_NONE serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 1] Line 46416: 07-31 10:27:32.172670 4622 4622 D PluginSeedling--Notification: NotificationController-->onNotificationListChanged, list = [LiveAlertModel: [key: 0|com.android.systemui|10001|ShareToApp|10243, entranceType: ENTRY_NOTIFICATION, score: 101.0, groupPriority: 0 type: LIVE, isSystemService: true, shouldShow: false, lockscreenShouldShow: false, sourceType: SOURCE_COMMON, remindLevel: 0, pkg: com.android.systemui, hostPkgName=com.android.systemui front: false, forceRebuild: false, liveDuration: false, InstantDuration: 5000, requestPanel: null, capsuleTimeOut: 300000, serviceTitleName: , overrideTransition: false level: 2, rusBaseData: RusBaseData(id='default_com.android.systemui_10001', updateStateEnable=0, canDelete=1, remindAlways=0, longClick='', cardImportance=-1, clickCustomAction=0, timeOutDuration=5,enableInSuperpower=0, autoPriority=0, customCapsuleDuration=-1,clickWhenAnim=0, panoramicAodEnable=1,notificationStyleList=,blackCallStyle=0, liveAlertScore=101.0,liveAlertLevel=0), showSize: VIEW_SIZE_NONE serviceFrom: 0, liveAlertState: SeedlingState(0), wrapperSize: 1] Line 56567: 07-31 10:27:33.188508 1813 31765 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 26 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 Line 57196: 07-31 10:27:33.222698 1813 31765 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 27 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 Line 57823: 07-31 10:27:33.254113 1813 31765 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 28 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 Line 58889: 07-31 10:27:33.288123 1813 31765 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 29 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 Line 59594: 07-31 10:27:33.324043 1813 31765 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 30 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 Line 60153: 07-31 10:27:33.361532 1813 31765 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 31 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 Line 64539: 07-31 10:27:34.188595 1813 31765 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 57 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 Line 65244: 07-31 10:27:34.225367 1813 31765 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 58 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 Line 65823: 07-31 10:27:34.277986 1813 31765 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 59 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 Line 66316: 07-31 10:27:34.312580 1813 31765 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 60 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 Line 66933: 07-31 10:27:34.343979 1813 31765 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 61 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 Line 67172: 07-31 10:27:34.346706 1813 31765 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 62 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 Line 67563: 07-31 10:27:34.379080 1813 31765 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 63 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 Line 68958: 07-31 10:27:34.855372 13078 13978 D OCAM_CheckCaptureState: setState, state: 0 => 1, mbTimeOut: false, key: com.oplus.precapture.state Line 70203: 07-31 10:27:34.957501 13078 13978 D OCAM_CheckCaptureState: setState, state: 1 => 0, mbTimeOut: false, key: com.oplus.precapture.state Line 71801: 07-31 10:27:35.192321 1813 31765 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 86 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 Line 72639: 07-31 10:27:35.222136 1813 31765 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 87 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 Line 73493: 07-31 10:27:35.254041 1813 31765 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 88 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 Line 74406: 07-31 10:27:35.295788 1813 31765 I CamX : [ INFO][CORE ] camxsession.cpp:4826 ProcessCaptureRequest() Timed Wait Live Pending Requests(3198) Sequence Id 89 Live Pending Requests 5 Max Live Pending Requests 6 Live Pending Request TimeOut Extendor 100 高通日志分析

最新推荐

recommend-type

studio_video_1756387311135.mp4

studio_video_1756387311135.mp4
recommend-type

光伏发电MPPT扰动观察法的MatlabSimulink模型实现与优化

内容概要:本文详细解析了基于Matlab/Simulink平台搭建的光伏发电最大功率点跟踪(MPPT)模型,核心采用扰动观察法(P&O)实现。通过自定义S-Function编写MPPT控制算法,结合光伏阵列建模、参数设置及系统调试,深入阐述了电压电流采样、功率计算、步长调节、振荡抑制等关键环节。作者分享了实际仿真中遇到的问题与优化策略,如引入死区阈值减少功率抖动、合理设置采样时间以匹配开关频率,并指出使用Three-Phase V-I Measurement模块提升测量精度的经验。 适合人群:具备Matlab/Simulink基础,从事新能源发电、电力电子或自动控制方向的工程师与高校学生。 使用场景及目标:①学习并实现MPPT中扰动观察法的核心逻辑;②掌握Simulink中光伏系统建模与控制器设计方法;③优化MPPT系统动态响应与稳定性。 阅读建议:建议结合Simulink环境动手复现模型,重点关注控制器代码逻辑与参数调优过程,同时注意环境温度与光照强度对输出特性的影响,加深对MPPT控制策略的理解。
recommend-type

Matlab中基于有限差分法的烧结过程相场模拟及其应用 - Matlab v2.0

利用Matlab和有限差分法进行烧结过程的相场模拟方法。首先解释了相场法的基本概念以及它在材料科学尤其是烧结过程中微观结构演化模拟的优势。接着具体展示了如何将Allen-Cahn方程离散化并应用于二维网格系统中,包括设置合理的初始条件、选择适当的边界条件、定义关键参数如迁移率M、界面能量参数ε等。然后逐步讲解了时间推进过程中三个主要步骤:计算拉普拉斯项、处理非线性项、更新相场变量值的具体实现方式,并提供了相应的Matlab代码片段。此外还讨论了一些实用技巧,比如通过改变初始条件来研究不同的烧结现象,以及针对大规模网格计算时提高程序效率的方法。 适合人群:对材料科学感兴趣的研究人员和技术爱好者,特别是那些希望深入了解相场模型及其在烧结过程中的应用的人群。 使用场景及目标:适用于需要模拟材料内部微观结构变化情况的研究项目,旨在帮助用户掌握如何使用Matlab构建简单的相场模型来进行烧结过程仿真,从而更好地理解相关物理机制。 阅读建议:由于涉及到较多数学公式推导和编程细节,在阅读前最好有一定的物理学背景知识和Matlab编程基础。同时建议跟随文中提供的代码实例动手实践,以便加深理解和记忆。
recommend-type

中国风PPT模板:动态水墨画效果展示

在当今的商业演示和教育培训领域,PPT模板扮演着至关重要的角色。它们不仅能够提升演示的专业性,还能通过视觉效果吸引观众的注意力。针对该模板的介绍,我们可以详细讲解以下几个知识点: 1. PPT模板的定义和作用 PPT模板是一套预设的幻灯片格式和设计,可以包括颜色方案、字体样式、背景图案、布局排版等元素。用户可以利用这些模板快速制作出专业和美观的演示文稿,无需从零开始设计。模板的作用主要体现在节省设计时间、保证演示文稿的一致性和专业性,以及提供统一的视觉美感。 2. 中式动态水墨画的特色和意义 中式动态水墨画是融合了中国传统水墨画艺术与现代动态效果的视觉艺术形式。水墨画以其独特的意境、深邃的文化内涵和富有变化的笔触闻名。动态效果的加入,使得传统艺术形式焕发新生,更加生动和吸引人。使用中式动态水墨画作为PPT模板的主题,可以表现出浓厚的中国传统文化气息,同时给观众带来新颖的视觉体验。 3. 动态水墨画在PPT中的应用 在PPT中应用动态水墨画,可以通过以下几种方式体现:使用水墨流动或扩散的动画效果来模拟真实水墨画的创作过程;利用动态背景来增强画面的动感和艺术氛围;设置水墨元素作为过渡动画,使得幻灯片之间的切换更加自然流畅。需要注意的是,动态效果的使用要适度,过多的动态效果可能会分散观众的注意力,影响信息的传递。 4. 安装特定字体的重要性 标题中提到了“注意安装字体:宋徽宗瘦金体”,这指出了使用特定字体对于保持模板设计原貌的重要性。宋徽宗瘦金体是北宋时期的一种书体,具有很高的艺术价值和历史文化价值。在PPT模板设计中,使用这种字体可以传递出独特的古典韵味。为了确保模板在其他计算机上打开时能够保持原样,设计师通常会在说明中提醒用户安装相应的字体。 5. 排版布局的灵活多变性 “排版布局灵活多变”说明该模板在设计上具有很强的可定制性,用户可以根据演示内容的需要,调整文本、图片等元素的位置和大小,以达到最佳的视觉效果。灵活的布局设计往往包括多个不同样式的幻灯片版式,用户可以根据需要进行选择和修改。 6. 实用性的体现 模板的实用性体现在其能够适应不同场合和主题的需要,同时操作简便、易于编辑。对于用户而言,实用的模板可以快速地转化成高质量的演示文稿,满足特定的演示需求,如公司介绍、产品发布、教育培训等。 总结来说,该“创意中式动态水墨画PPT模板”通过结合中国传统艺术与现代设计元素,既展现了深厚的文化底蕴,又满足了现代商业演示的视觉需求。它不仅为设计师和演讲者提供了一个快速制作演示文稿的平台,也传递出一种现代与传统相结合的美学理念。对于需要制作具有中国特色演示文稿的用户来说,是一个不错的选择。
recommend-type

元宇宙中的智能扩展现实:新兴理论与应用探索

# 元宇宙中的智能扩展现实:新兴理论与应用 ## 1. 元宇宙的特征 元宇宙是一个具有多种独特特征的环境,这些特征使其区别于传统的现实世界和虚拟世界。具体如下: - **协作环境**:人们在元宇宙中协作以实现经济、社会和休闲等不同目标。 - **在线空间**:基于三维的在线环境,人们可以沉浸其中。 - **共享世界**:人们能够分享活动、观点和信息,购物也成为一种网络化体验。 - **增强和科技化场所**:借助增强现实技术,人们可以丰富体验,还能通过虚拟元素、技术和互联网进行社交和互动。 - **多用户环境**:人们可以同时使用相同的技术或进行相同的活动,是现实生活的延伸。 - **无限世界
recommend-type

电阻电容选型

<think>好的,我现在需要为用户介绍电阻和电容的选型。首先,我得确定用户的基础,可能是个电子爱好者或者刚入行的工程师,所以需要从基础开始,但又不能太浅显。用户可能需要知道选型时需要考虑哪些关键参数,以及实际应用中的注意事项。 首先,电阻的选型。我应该想到阻值、功率、精度、温度系数、封装这些基本参数。每个参数都需要解释清楚,比如功率要考虑实际功耗,避免过热。温度系数对高精度电路很重要,比如仪表放大器。封装的话,不同功率对应不同尺寸,比如0805、1206这些常见封装。还有特殊类型电阻,像贴片、金属膜、绕线,各自的应用场景,比如高频用金属膜,大功率用绕线。 然后是电容的选型。电容种类更多,
recommend-type

电教管理系统V2.0:高效在线管理教育资源

电教管理系统是一个基于教育单位需求,特别是针对学校电教资料的在线管理而开发的系统。其核心功能包括资料的在线查询与管理,使管理员能够远程控制电教资料的状态,而用户可以随时查看所需资料的可借状态。该系统还提供新到资料的信息介绍,帮助用户获取最新的电教材料。系统的主要特点如下: 1. 在线管理功能:通过网络连接,管理员能够在任何地点进行电教资料的管理工作,包括更新、编辑资料信息,以及监控资料的借阅状态。 2. 用户查询功能:允许用户在线查询资料的详细信息、借阅状态和位置等,便于用户了解所需资料的当前状态,判断是否需要借阅或者是否有其他资料可供选择。 3. 资料截图显示:增加了资料的直观展示,管理员和用户可以通过上传的资料图片更快速地识别资料内容,增强用户体验。 4. 模糊查询功能:系统支持模糊查询,用户可以通过关键字搜索,快速找到相关资料,提高了查询的效率和便捷性。 5. 查询速度优化:系统通过算法改进,加快了资料的查询速度,为管理员和用户提供更流畅的操作体验。 系统使用.NET 2.0平台进行开发,这表明该系统主要针对Windows操作系统环境。由于.NET 2.0是微软公司开发的一个广泛使用的框架,该系统能够保证良好的兼容性和稳定性,同时能够利用.NET框架提供的强大功能来实现丰富的用户界面和后台处理逻辑。 系统的开发语言很可能是C#,因为它是.NET平台上的主要编程语言。此外,系统还可能使用了SQL Server作为后台数据库管理系统,因为SQL Server与.NET框架的整合非常紧密,并且可以方便地处理大量数据。 从标签“.NET源码-信息管理”来看,该系统还可能提供了源代码开放的特点,允许其他开发者查看和修改源代码,从而对系统进行定制化开发和功能的增强。这有助于学校或教育单位根据自身特点和需求对系统进行调整,进一步提升系统的可用性和针对性。 至于提供的文件名称“downcode.com”,这可能是系统帮助文档、源代码、安装程序或其他相关资源的下载链接。用户通过此链接可能下载到系统软件包,包含各种必要的安装文件和系统使用说明,以方便安装和配置电教管理系统。 总而言之,电教管理系统测试版V2.0为教育单位提供了一个现代化的解决方案,用于有效地管理电教资料,并提高资料的利用率和管理效率。该系统的开发和技术选型体现了当前IT领域在教育信息化建设方面的先进理念和实践。
recommend-type

奢侈品时尚零售中的人工智能与扩展现实

# 奢侈品时尚零售中的人工智能与扩展现实 ## 1. 纳米层面的双重关系 在奢侈品时尚零售领域,纳米层面体现了一线员工与奢侈品时尚消费者之间的双重关系。一线员工不仅包括人类,还涵盖了人工智能代理,如聊天机器人和店内机器人。人类一线员工需依据零售组织文化和身份接受培训,同时享有所在国家法律规定的劳动权利和义务,并遵循时尚奢侈品牌的总体政策。 而人工智能代理在知识和情感方面不断进化,最终可能会更清晰地意识到自身存在,甚至开始主张权利,未来还有可能成为消费者。与此同时,融合纳米技术设备或采用增强能力假肢的混合人类,也能同时扮演员工和顾客的双重角色。 在这种情况下,人类与人工智能代理、不同技术水
recommend-type

电容加交流电还是直流电

<think>嗯,用户问的是电容应该加交流电还是直流电。首先,我得回忆一下电容的基本特性。电容在电路中的作用主要是存储电荷,对吧?它的特性是对直流和交流有不同的响应。 首先,直流电的情况下,当刚接通电源时,电容会充电,电流瞬间流过,但随着电容两端的电压逐渐接近电源电压,电流会减小,直到最后几乎为零。这时候电容相当于开路,所以直流稳态下电容不允许电流通过。这应该是对的,但可能需要确认一下有没有例外情况。 然后是交流电的情况,交流电的方向和大小不断变化,导致电容不断充放电。这样在电路中就会形成持续的电流,所以电容在交流电路中可以导通电流。不过这里需要注意容抗的概念,容抗与频率和电容值有关,公式
recommend-type

711网络电视源码使用与配置指南

### 标题知识点解析 标题为“711网络电视 V2013.8.23.rar”表明这是一个关于网络电视的软件版本,具体版本为2013年8月23日发布的版本,并且它被压缩成了一个RAR格式的文件。RAR是一种文件压缩格式,常用于减少文件大小以便存储和传输。此外,文件名中包含的“.rar”后缀暗示着用户需要使用特定的解压缩软件(如WinRAR)来打开和提取文件内容。 ### 描述知识点解析 从描述中可以提炼出以下知识点: 1. **ASP空间的使用**: - ASP(Active Server Pages)是微软公司开发的一种服务器端脚本环境,用于创建动态交互式网页。 - ASP空间指的是支持ASP脚本运行的网络空间,通常由网络服务提供商提供,用户可以通过FTP等工具上传文件到这个空间。 - 将程序上传至ASP空间意味着用户需要有对应的FTP账号和密码,以及必要的网络知识来完成这一过程。 2. **Config.asp文件配置**: - Config.asp是一个配置文件,通常用于存储网站或应用程序需要的配置信息,比如数据库连接字符串、网站参数、API密钥等。 - 在Config.asp里面修改相关信息,表明用户需要根据自己的实际需求或环境参数,更改该配置文件中指定的设置,例如连接数据库的用户名和密码、播放器的许可证信息、广告设置等。 3. **电视升级补丁的获取**: - 提供了一个升级补丁的下载链接,暗示着这个网络电视程序可能具备版本更新机制。 - 该补丁可能用于修复已知的程序漏洞、增加新的功能或优化现有功能。 - 用户需要访问给出的链接下载升级补丁,然后可能需要替换或更新程序中的某些文件来完成升级。 4. **QQ群交流**: - 给出的QQ群号码可能是一个用户群组,用户可以在这个群内交流使用心得、获取技术支持或与其他用户互动。 - QQ群是腾讯公司开发的一种即时通讯软件群组功能,它允许用户创建群组进行在线交流。 ### 标签知识点解析 标签“ASP源码-采集小偷”提示以下信息: 1. **ASP源码**: - 指的是用ASP技术编写的网页代码,这些代码通常包含了HTML、CSS、JavaScript和ASP脚本语言。 - “采集小偷”可能是该程序的一个功能描述或昵称,暗示程序可能具备采集网络上的数据或信息的能力。 ### 压缩包子文件名称列表知识点解析 文件名称列表中只有一个名为“downcode.com”的文件,这可能是一个指向某个网页的链接文件,用于提供下载链接或相关信息。 1. **downcode.com文件解析**: - 这个文件可能是一个网页快捷方式或是包含网址的文本文件,用于快速访问特定的下载页面。 - 文件名“downcode.com”本身可能是一个网站域名,指向一个提供软件下载或程序源码更新的网站。 综上所述,给定的文件信息描述了一个名为“711网络电视”的软件程序,它需要上传至支持ASP的空间服务器,在服务器上通过修改配置文件来适配环境,并提供了升级补丁的下载链接和用户交流的QQ群。同时,标签说明了程序可能具备采集信息的功能,并且通过一个特定的文件提供了程序的下载或更新链接。