Fixed
Status Update
Comments
bo...@gmail.com <bo...@gmail.com> #2
I'm seeing this now on an affected device:
-11m57s567ms STOP-P: #u0a148/68 nl.rijksoverheid.en/androidx.work.impl.background.systemjob.SystemJobService timed out while binding
The job is gone after this happens, and is not rescheduled/restored when manually starting the app and initialising work manager.
ra...@google.com <ra...@google.com>
ap...@google.com <ap...@google.com> #3
Project: platform/frameworks/support
Branch: androidx-master-dev
commit 25c5274d20bf0f0d936c60dea0b73ef3190de00b
Author: Rahul Ravikumar <rahulrav@google.com>
Date: Wed Aug 26 13:06:19 2020
Reconcile jobs with JobScheduler.
* JobScheduler is sometimes unable to bind to SystemJobService and this results in dropped jobs (prior to Q.)
* This is usually not a problem, because the GreedyScheduler will pick up these WorkRequests, whenever there is some activity.
* However, this work request does not have a backing job until its rescheduled.
* To fix this, `ForceStopRunnable` now reconciles jobs that are known to WorkManager with the ones that JobScheduler knows about.
* If there is any discrepancy, it marks these WorkRequests as eligible and then all schedulers can pick them up.
Fixes: b/166292069
Test: Added ForceStopRunnableTests.
Change-Id: I69d0173831a52d1360bd24d8ed5a565007f5b79d
M work/workmanager/src/androidTest/java/androidx/work/impl/background/systemjob/SystemJobSchedulerTest.java
M work/workmanager/src/androidTest/java/androidx/work/impl/utils/ForceStopRunnableTest.java
M work/workmanager/src/main/java/androidx/work/impl/background/systemjob/SystemJobScheduler.java
M work/workmanager/src/main/java/androidx/work/impl/model/SystemIdInfoDao.java
M work/workmanager/src/main/java/androidx/work/impl/utils/ForceStopRunnable.java
https://android-review.googlesource.com/1412794
Branch: androidx-master-dev
commit 25c5274d20bf0f0d936c60dea0b73ef3190de00b
Author: Rahul Ravikumar <rahulrav@google.com>
Date: Wed Aug 26 13:06:19 2020
Reconcile jobs with JobScheduler.
* JobScheduler is sometimes unable to bind to SystemJobService and this results in dropped jobs (prior to Q.)
* This is usually not a problem, because the GreedyScheduler will pick up these WorkRequests, whenever there is some activity.
* However, this work request does not have a backing job until its rescheduled.
* To fix this, `ForceStopRunnable` now reconciles jobs that are known to WorkManager with the ones that JobScheduler knows about.
* If there is any discrepancy, it marks these WorkRequests as eligible and then all schedulers can pick them up.
Fixes:
Test: Added ForceStopRunnableTests.
Change-Id: I69d0173831a52d1360bd24d8ed5a565007f5b79d
M work/workmanager/src/androidTest/java/androidx/work/impl/background/systemjob/SystemJobSchedulerTest.java
M work/workmanager/src/androidTest/java/androidx/work/impl/utils/ForceStopRunnableTest.java
M work/workmanager/src/main/java/androidx/work/impl/background/systemjob/SystemJobScheduler.java
M work/workmanager/src/main/java/androidx/work/impl/model/SystemIdInfoDao.java
M work/workmanager/src/main/java/androidx/work/impl/utils/ForceStopRunnable.java
Description
Component used: Workmanager Version used: 2.4.0 Devices/Android versions reproduced on: Multiple devices, Nokia 8.1 Android 10, Huawei P30 lite (Android 9), Xaomi Redmi 9 (Android 10)
In our app we run 3 jobs through
WorkManager
and we are observing that sometimes a periodic job that runs the most often is sometimes not added in the system job scheduler after it ran. This can be verified by looking atadb shell dumpsys jobscheduler
. The devices in question have been left alone for a while over a couple of hours.WorkManager.initialize()
will also not restore these missing jobs.One reason for this could be that the system job scheduler implementation isn't checking the return code from
JobScheduler.schedule()
, especially since this issue doesn't happen every single time the job has run.Logs from the app indicate
WorkManager
scheduling job id 7, but this id is not showing up for thenl.rijksoverheid.en
package. Only id 3 & 4, that have been scheduled at the same time as the initial periodic job, are shown in the output:Here's the WorkManager log output after the job has been run: