aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkilesh Kailash <akailash@google.com>2021-12-07 03:16:40 +0000
committerAkilesh Kailash <akailash@google.com>2021-12-07 20:38:29 +0000
commitbfdd2461305ee48f603086b4204622c92aa670cf (patch)
treefb51ad2854c58463f59196ea2a4364fde6943369
parent0096a750c2c6885d591b7bd8aaebd382aafe9900 (diff)
downloadbuild-bfdd2461305ee48f603086b4204622c92aa670cf.tar.gz
Enable userspace snapshots for OTA
Bug: 202784018 Test: Full/Incremental OTA tested on CF, Pixel OTA Merge time performance on Pixel (bramble) ========================================================== Incremental - OTA - 389M OTA Operations: system - Copy-ops: 34060 Zero-ops: 678 Replace-ops: 93846 Xor-ops: 75490 product - Copy-ops: 241742 Zero-ops: 1970 Replace-ops: 292890 Xor-ops: 80763 vendor - Copy-ops: 110285 Zero-ops: 660 Replace-ops: 62163 Xor-ops: 23474 system_ext_b - Copy-ops: 44509 Zero-ops: 426 Replace-ops: 39475 Xor-ops: 44628 ==================================================================== 1: VAB - Compression with dm-snapshot (on Android S) Merge-time = 344 seconds (~5.7 minutes) 2: VAB - Compression with user-snapshot (on Android T) Merge-time = 53 seconds 3: VAB - Without compression (using kernel COW format) Merge-time = 33 seconds Compared to Android S, merge time improves by 84% with user-snapshots on Android T. The 20 seconds difference between (2) and (3) is because of two phase merge during compression which essentially serializes merge start time between partitions. On (3), there is no two phase merge as all the partition starts merge at the same time. When there is no two phase merge involved, (2) and (3) are nearly identical. ============================================================ Full OTA - 1.8G 1: VAB - Compression with dm-snapshot (on Android S) Merge-time = 40 seconds 2: VAB - Compression with user-snapshot (on Android T) Merge-time = 32 seconds 3: VAB - Without compression (using kernel COW format) Merge-time = 32 seconds =============================================================== Presubmit OTA testing enabled on Cuttlefish for ~1 Week with the feature enabled. https://v2-dot-atp.googleplex.com/tests/asit/ota/incremental_mixed_resume Signed-off-by: Akilesh Kailash <akailash@google.com> Change-Id: I88d15b94a48799996f38755063319269a3d70723
-rw-r--r--target/product/virtual_ab_ota/compression.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/target/product/virtual_ab_ota/compression.mk b/target/product/virtual_ab_ota/compression.mk
index 8301047080..88c58b87a0 100644
--- a/target/product/virtual_ab_ota/compression.mk
+++ b/target/product/virtual_ab_ota/compression.mk
@@ -17,6 +17,7 @@
$(call inherit-product, $(SRC_TARGET_DIR)/product/virtual_ab_ota/launch_with_vendor_ramdisk.mk)
PRODUCT_VENDOR_PROPERTIES += ro.virtual_ab.compression.enabled=true
+PRODUCT_VENDOR_PROPERTIES += ro.virtual_ab.userspace.snapshots.enabled=true
PRODUCT_VIRTUAL_AB_COMPRESSION := true
PRODUCT_PACKAGES += \
snapuserd.vendor_ramdisk \