解决和解决“网络使用过多(背景)过多"的正确方法; [英] Proper way to tackle and resolve "Excessive network usage (background)"

查看:91
本文介绍了解决和解决“网络使用过多(背景)过多"的正确方法;的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

问题背景

当前,我们面临Android Vital报告中的"网络使用率过高(背景)".最近的 30天为0.04%,但我们仅优于9%

  • 过去30天-0.04%
  • 基准-优于9%

因为只有好于9%看起来很恐怖.我们决定认真研究这个问题.

该应用是笔记记录应用(


问题

我的问题是

  1. 这种"网络使用过多(背景)"警告的真正根源是什么?我们如何才能准确找出根本原因.
  2. 执行后台同步的其他应用程序(例如Google Photo,Google Keep,Google Doc等)如何解决此问题?

解决方案

第一个问题是网络使用率过高(背景)".在以下情况下触发:

...一个应用程序在后台运行时,每小时发送和接收总计50 MB的电量,占电池会话的0.10%.电池会话是指两次充满电之间的时间间隔.


对于第二个问题,如您正确识别的那样,WorkManager可能是您追求的目标.这使您可以计划任务以及希望其发生的窗口.使用此功能,操作系统可以为您以及其他应用程序的作业优化任务计划.例如,可以将6个应用程序安排为同时发生在所有6个应用程序上,而不是每10分钟将其唤醒一次,而不是每10分钟唤醒6个应用程序.

请注意,上面的屏幕截图包括一个"JobScheduler作业"标签.运行分析后,您将能够看到您的工作实际上是如何执行的:

我以前曾经成功使用 Firebase JobDispatcher ( JobScheduler API ,并且最终相似.

我看到您现在正在使用WorkManager(Jetpack的JobDispatcher版本),但是在8秒钟内,操作系统没有机会优化您的工作.是否有能力在最少几秒钟的时间内安排它们,并尽可能最大地安排它们?


进一步的改进

但是,您当前的任务计划设置可能不是根本原因.以下是一些其他想法,可能会为您提供所需的电池改进.在您运行 Battery Historian 并确定了根本原因后,它们的用途将变得更加清楚./p>

  1. 请考虑是否仅wifi上网是可行的数据同步默认选项.您会遇到更好的电池使用情况,更少的网络问题以及可能更好的客户满意度.

  2. 笔记应用程序为什么需要同步几个数百 MB?您也许可以只同步已更改的笔记,而不是每次都同步整个笔记列表吗?

Problem Background

Currently, we have facing "Excessive network usage (background)" from Android Vital report. Last 30 days is 0.04%, but we're only Better than 9%

  • Last 30 days - 0.04%
  • Benchmark - Better than 9%

Since only better than 9% looks like a scary thing. We decide to look into this issue seriously.

The app is a note taking app (https://play.google.com/store/apps/details?id=com.yocto.wenote), which provides an optional feature - sync to cloud in background after the app close.

This is how we perform sync to cloud in background.

  1. We use WorkManager.
  2. In Application onPause, Schedule OneTimeWorkRequest, with constraint NetworkType.CONNECTED. The worker is scheduled to start with delay 8 seconds.
  3. In case failure, we retry using BackoffPolicy.LINEAR, with delay time 1.5 hours.
  4. The maximum number of retry is 1 time. That's mean, after the app close till the app re-open again. The maximum number of execution, of sync to cloud process is 2.
  5. The size of data is vary, can be few KB till few hundred MB.


Additional information how we perform sync

  1. We are using Google Drive REST API.
  2. We are performing downloading of a zip file from Google Drive App Data folder, perform data merging in local, then zip, and re-upload the single zip file back to Google Drive App Data folder.
  3. The zip file size can ranged from few KB, to few hundred MB. This is because our note taking app supports image as attachment.


Analysis

The only information we have is https://developer.android.com/topic/performance/vitals/bg-network-usage .

When an app connects to the mobile network in the background, the app wakes up the CPU and turns on the radio. Doing so repeatedly can run down a device's battery. An app is considered to be running in the background if it is in the PROCESS_STATE_BACKGROUND or PROCESS_STATE_CACHED state. ... ... ... Android vitals considers background network usage excessive when an app is sending and receiving a combined total of 50 MB per hour while running in the background in 0.10% of battery sessions.

  1. We start the background sync job, 8 seconds after Application's onPause. During that period, will the app inside or outside PROCESS_STATE_BACKGROUND/PROCESS_STATE_CACHED? How can we avoid running inside PROCESS_STATE_BACKGROUND/PROCESS_STATE_CACHED?
  2. What does it mean by "running in the background in 0.10% of battery sessions."? How can we avoid such?
  3. Another assumption, is sync file is too large, and using too much data. Soon, we notice this assumption might not be true. We notice according to "Hourly mobile network usage (background)", the data size is from 0MB to 5MB.


Questions

My questions are

  1. What is the actual root cause for such "Excessive network usage (background)" warning? How can we accurately find out the root cause.
  2. How does other apps (Like Google Photo, Google Keep, Google Doc, ...) which perform background sync, tackle this problem?

解决方案

For your first question, "Excessive network usage (background)" is triggered when:

... an app is sending and receiving a combined total of 50 MB per hour while running in the background in 0.10% of battery sessions. A battery session refers to the interval between two full battery charges.

Source

To identify what is causing this, try using Battery Historian to analyse your app's battery usage over time. For us, it helped identify a repeating wakelock we didn't intend to introduce.

Here's an example of the output, showing us that excessive BLE scanning is causing a major battery impact:


For your second question, WorkManager is likely what you are after, as you correctly identified. This allows you to schedule a task, as well as a window you'd like it to occur in. Using this allows the OS to optimise task scheduling for you, along with other app's jobs. For example, instead of 6 apps all waking the device up every 10 minutes for their hourly task, it can be scheduled to happen for all 6 apps at the same time, increasing the time spent in doze mode.

Notice the screenshot above includes a "JobScheduler Jobs" tab. After running an analysis you'll be able to see how your jobs are actually performing:

I've previously used Firebase JobDispatcher with great success (tutorial I wrote), which extends the OS' JobScheduler API and is ultimately similar.

I see you're using WorkManager now (Jetpack's version of JobDispatcher), but with 8 seconds there's no chance for the OS to optimise your jobs. Is there any capacity of scheduling them with a minimum of a few seconds, and as large a maximum as possible?


Further improvements

However, your current task scheduling setup may not be the root cause. Here's a few additional ideas that may provide the battery improvement you need. The usefulness of them will become clearer after you've run Battery Historian and identified the root cause:

  1. Consider whether wifi-only is a feasible default / option for data syncing. You'll experience better battery usage, fewer network issues, and likely better customer satisfaction.

  2. Why does a note taking app need to sync a few hundred MB? Can you perhaps just sync the note that has changed, instead of the entire list of notes every time?

这篇关于解决和解决“网络使用过多(背景)过多"的正确方法;的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆