Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

My service always getting Waited long enough for: ServiceRecord error in Kitkat

I have a background service which is running in kitkat always throwing Waited long enough for: ServiceRecord message in the logcat. But in the previous versions of android my app is running smoothly without any issues.

also Sometimes my service is automatically killed in the Kitkat.

like image 976
user273009 Avatar asked Feb 02 '14 15:02

user273009


1 Answers

This is caused by "Serialize running of background services" modification for ActivityServices.

Implement #10744011: Serialize running of background services Added some code to the activity manager to keep track of services that are launching and limit the number that can be launched concurrently. This only comes into play under specific circumstances: when the service launch is a background request (so timing is not important) and its process is not already running at a high priority.

In this case, we have a list of services that are currently launching and when that gets too big we start delaying the launch of future services until currently launching ones are finished.

There are some important tuning parameters for this: how many background services we allow to launch concurrently (currently 1 on low-ram devices, 3 on other devices), and how long we wait for a background service to run before consider it to be a more long-running service and go on to the next pending launch (currently set to 15 seconds).

https://github.com/android/platform_frameworks_base/commit/9210bc85545f31973c957b5179e6a82d05f473c6

like image 154
nagamatu Avatar answered Sep 21 '22 18:09

nagamatu