An Empirical Analysis of a Large-Scale Mobile Cloud Storage Service

Total Page:16

File Type:pdf, Size:1020Kb

An Empirical Analysis of a Large-Scale Mobile Cloud Storage Service An Empirical Analysis of a Large-scale Mobile Cloud Storage Service Zhenyu Liy, Xiaohui Wangy, Ningjing Huangy, Mohamed Ali Kaafarz, Zhenhua Li?, Jianer Zhou{, Gaogang Xiey, Peter Steenkiste] yICT-CAS, zCSIRO Data61, ?Tsinghua Uni., {CNIC-CAS, ]CMU {zyli, wangxiaohui, huangningjing, xie}@ict.ac.cn, [email protected], [email protected], [email protected], [email protected] ABSTRACT personal cloud storage market is estimated to have a com- Cloud storage services are serving a rapidly increasing num- pound annual growth rate of 33.1% between 2015 and 2020 ber of mobile users. However, little is known about the dif- [5]. Major players such as Google, Microsoft, Apple, Baidu, ferences between mobile and traditional cloud storage ser- and Dropbox are competing to offer users the best qual- vices at scale. In order to understand mobile user access ity of service while keeping their costs low. Cloud storage behavior, we analyzed a dataset of 350 million HTTP re- providers are working hard to meet their growing number of quest logs from a large-scale mobile cloud storage service. mobile users. For instance, Dropbox redesigned its mobile This paper presents our results and discusses the implica- app, adding new functionality, and it tapped mobile ISPs for tions for system design and network performance. Our key improved user experience [4]. observation is that the examined mobile cloud storage ser- Both improving user experience and keeping costs low vice is dominated by uploads, and the vast majority of users can benefit from an in-depth understanding of the following rarely retrieve their uploads during the one-week observa- two system aspects: tion period. In other words, mobile users lean towards the • User behavior pattern, including workload variation, usage of cloud storage for backup. This suggests that delta session characteristics, and usage patterns (e.g., occa- encoding and chunk-level deduplication found in traditional sional vs. heavy use). Insight gained can help opti- cloud storage services can be reasonably omitted in mobile mize performance and reduce cost at both the server and scenarios. We also observed that the long idle time between client. chunk transmissions by Android clients should be shortened • Data transmission performance, where factors that in- since they cause significant performance degradation due to crease latency must be identified and addressed to im- the restart of TCP slow-start. Other observations related to prove user QoE (Quality of Experience), a key factor in session characteristics, load distribution, user behavior and user loyalty. engagement, and network performance. Unfortunately, little is known about these two system as- pects in mobile cloud storage services. Recent seminal work Keywords examined user behavior in Dropbox [12, 8] and Ubuntu One Mobile cloud storage; user behavior; TCP performance [16]. Other research focuses on the traffic inefficiencies re- sulting from the synchronization of frequent local changes 1. INTRODUCTION [21, 22]. However, all these studies are specific to traditional PC clients, rather than mobile users. While some work noted With the abundant and pervasive personal content genera- the unique challenges of synchronizing data of mobile users tion witnessed today, the use of cloud storage for storing and in cloud storage services [10], both the user access behavior sharing personal data remotely is increasing rapidly. The and network performance properties in large-scale mobile cloud storage services remain unexplored. Indeed, mobile Permission to make digital or hard copies of all or part of this work for personal or classroom use is granted without fee provided that copies are not made or users might behave quite differently from PC-based users distributed for profit or commercial advantage and that copies bear this notice when using cloud storage services. For instance, mobile and the full citation on the first page. Copyrights for components of this work users may modify file content less often due to the inconve- owned by others than ACM must be honored. Abstracting with credit is per- mitted. To copy otherwise, or republish, to post on servers or to redistribute to nience of editing files on mobile terminals. Also, the proper- lists, requires prior specific permission and/or a fee. Request permissions from ties of mobile devices might limit transmission performance [email protected]. due to connectivity, power and even software constraints. IMC 2016, November 14-16, 2016, Santa Monica, CA, USA This paper fills this void by examining a unique dataset c 2016 ACM. ISBN 978-1-4503-4526-2/16/11. $15.00 collected from a large-scale mobile cloud storage service DOI: http://dx:doi:org/10:1145/2987443:2987465 for a one-week period. The dataset consists of 349 million posit a smart auto backup function that defers uploads HTTP request logs generated by 1.1 million unique mobile in order to reduce the peak load and reduce cost. Some users. Our analysis first separates the series of requests of cost-effective storage solutions for infrequently accessed ob- each user into more fine-grained sessions with the session jects, like f4 [26], can also easily reduce cost. In addition, interval empirically learned from the dataset. We then char- providers can leverage the distinct usage patterns of users for acterize session attributes and usage patterns. Finally, we ex- effective in-app advertisement. Finally, to improve network, amine data transmission performance and diagnose the per- the effect of long idle intervals between chunks should be formance bottlenecks using packet-level traces collected at mitigated by using larger chunks or batching the transmis- both the server and client sides. Our main findings and their sion of multiple chunks. implications are as follows: Another contribution of this work is that we have • Sessions and burstiness. The inter-file operation time made our dataset publicly available for the community at of individual users follows a two-component Gaussian http://fi.ict.ac.cn/data/cloud.html. We hope the dataset will mixture model, where one component captures the in- be used by other researchers to further validate and investi- session intervals (mean of 10s), and the other corre- gate usage patterns in mobile cloud storage services. sponds to the inter-session intervals (mean of 1 day). The remainder of this paper is organized as follows. Sec- This model allows us to characterize user behavior at ses- tion 2 describes the background and dataset, while Section sion level. For example, users store and retrieve files in 3 presents an in-depth analysis of user behavior. Section 4 a bursty way, as they tend to perform all file operations investigates data transmission performance. We discuss the within a short time period at the beginning of sessions, caveats of our analysis in Section 5, and related work in Sec- and then wait for data transmission to finish. tion 6. Finally, Section 7 concludes our work. • Storage-dominated access behavior. In a single ses- sion, mobile users either only store files (68.2% of 2. DATASET AND WORKLOAD sessions), or only retrieve files (29.9% of sessions), but This section begins with an overview of the mobile cloud they rarely perform both. The mixture-exponential dis- storage service that we examine in this paper, followed by tribution model for average file size reveals that 91% of the description of the dataset in use and its limitations. Fi- the storage sessions store files that are around 1.5 MB nally, we present the temporal pattern of workload from mo- in size. Surprisingly, over half of the mobile users are bile devices, which will facilitate the understanding of sys- predominantly interested in the cloud storage for back- tem artifacts. ing up their personal data, and they seldom retrieve data. In contrast, PC-based users are far more likely to fully exploit both storage and retrieval processes. 2.1 Overview of the Examined Service • Distinct engagement models. User engagement exhibits The service that we examined is one of the major personal a bimodal distribution, where users either return soon to cloud storage services in China, serving millions of active the service or remain inactive for over one week. No- users per day. The service is very similar to other state-of- tably, about 80% of the users that use multiple mobile the-art cloud storage services, like Google Drive and Mi- store, retrieve, delete terminals will not return to download their uploads in the crosoft OneDrive. Users are offered to and share 1 following week. On the other hand, users that use both files through either a PC client or a mobile app. mobile and PC clients account for 14.3% of users, and This paper focuses on the first two operations (i.e., store and they are more likely to retrieve their uploads very soon. retrieve), because the last two operations (i.e., delete and share) do not go through the storage front-end servers, where • Device type effects on performance. The mobile device we collected our data. type (either Android or iOS) has a significant impact on Users are allowed to select multiple files to store or re- chunk-level transmission performance. We show that the trieve at one time. Uploading a file does not automatically root cause lies in the idle time between chunk transmis- delete the local copies of the files. That said, a local copy of sions. A large TCP idle time might trigger the restart of the uploaded file might be kept on the device. HTTP is used TCP slow-start. As a result, as many as 60% of idle in- to move data between cloud servers and clients. The basic tervals on Android devices restart TCP slow-start for the object for a HTTP request is a chunk of data with a fixed size next chunk, compared with only 18% for iOS.
Recommended publications
  • Mobile Cloud Storage
    Context Awareness MobileHCI 2014, Sept. 23–26, 2014, Toronto, ON, CA Mobile Cloud Storage: A Contextual Experience Karel Vandenbroucke Denzil Ferreira*, Jorge Goncalves*, Katrien De Moor iMinds-MICT-Ghent University Vassilis Kostakos* ITEM-NTNU Ghent, Belgium University of Oulu Trondheim, Norway [email protected] Oulu, Finland [email protected] {dteixeir;jgoncalv;vassilis}@ee.oulu.fi ABSTRACT anywhere, at any time and from any device. However, one In an increasingly connected world, users access personal unyielding disadvantage of these lightweight, mobile or shared data, stored “in the cloud” (e.g., Dropbox, devices is their limited storage capacity, which also limits Skydrive, iCloud) with multiple devices. Despite the their possible uses. It is also more common to find services popularity of cloud storage services, little work has focused and applications that work across different mobile devices on investigating cloud storage users’ Quality of Experience and platforms. As a result, the related user behavior and (QoE), in particular on mobile devices. Moreover, it is not usage patterns have become more complex and a range of clear how users’ context might affect QoE. We conducted problems has emerged. One recurring challenge is to an online survey with 349 cloud service users to gain connect multiple devices that have vastly different insight into their usage and affordances. In a 2-week characteristics and requirements and how to synchronize follow-up study, we monitored mobile cloud service usage the stored data across these devices in an effortless way. on tablets and smartphones, in real-time using a mobile- With recent improvements on network speed, reliability based Experience Sampling Method (ESM) questionnaire.
    [Show full text]
  • A Survey on Cloud Storage
    1764 JOURNAL OF COMPUTERS, VOL. 6, NO. 8, AUGUST 2011 A Survey on Cloud Storage Jiehui JU1,4 1.School of Information and Electronic Engineering, Zhejiang University of Science and Technology,Hangzhou,China Email: [email protected] Jiyi WU2,3, Jianqing FU3, Zhijie LIN1,3, Jianlin ZHANG2 2. Key Lab of E-Business and Information Security, Hangzhou Normal University, Hangzhou,China 3.School of Computer Science and Technology, Zhejiang University,Hangzhou,China 4.Key Lab of E-business Market Application Technology of Guangdong Province, Guangdong University of Business Studies, Guangzhou 510320, China Email: [email protected]; [email protected]; [email protected]; [email protected] Abstract— Cloud storage is a new concept come into being simultaneously with cloud computing, and can be divided into public cloud storage, private cloud storage and hybrid cloud storage. This article gives a quick introduction to cloud storage. It covers the key technologies in Cloud Computing and Cloud Storage. Google GFS massive data storage system and the popular open source Hadoop HDFS were detailed introduced to analyze the principle of Cloud Storage technology. As an important technology area and research direction, cloud storage is becoming a hot research for both academia and industry session. The future valuable research works were summarized at the end. Index Terms—Cloud Storage, Distributed File System, Research Status, survey I. INTRODUCTION As we all known disk storage is one of the largest expenditure in IT projects. ComputerWorld estimates that storage is responsible for almost 30% of capital expenditures as the average growth of data approaches Figure 1.
    [Show full text]
  • On the Cost-Benefit Tradeoffs of Cloud Storage Services for End Users and Service Providers
    ON THE COST-BENEFIT TRADEOFFS OF CLOUD STORAGE SERVICES FOR END USERS AND SERVICE PROVIDERS GLAUBER DIAS GONÇALVES ON THE COST-BENEFIT TRADEOFFS OF CLOUD STORAGE SERVICES FOR END USERS AND SERVICE PROVIDERS Tese apresentada ao Programa de Pós-Graduação em Ciência da Computação do Instituto de Ciências Exatas da Universidade Federal de Minas Gerais como requisito parcial para a obtenção do grau de Doutor em Ciência da Computação. Orientador: Jussara Marques de Almeida Coorientador: Alex Borges Vieira Belo Horizonte Dezembro de 2017 GLAUBER DIAS GONÇALVES ON THE COST-BENEFIT TRADEOFFS OF CLOUD STORAGE SERVICES FOR END USERS AND SERVICE PROVIDERS Thesis presented to the Graduate Program in Ciência da Computação of the Universidade Federal de Minas Gerais in partial fulfillment of the requirements for the degree of Doctor in Ciência da Computação. Advisor: Jussara Marques de Almeida Co-Advisor: Alex Borges Vieira Belo Horizonte December 2017 © 2017, Glauber Dias Gonçalves. Todos os direitos reservados Ficha catalográfica elaborada pela Biblioteca do ICEx - UFMG Gonçalves, Glauber Dias. G635o On the cost-benefit tradeoffs of cloud storage services for end users and service providers. / Glauber Dias Gonçalves. – Belo Horizonte, 2017. xiv, 139 f.: il.; 29 cm. Tese (doutorado) - Universidade Federal de Minas Gerais – Departamento de Ciência da Computação. Orientadora: Jussara Marques de Almeida Gonçalves Coorientador: Alex Borges Vieira 1. Computação - Teses. 2. Computação em nuvem. 3. Comportamento de usuário. 4. Custos e benefícios. 5. Cache. 6. Dropbox. I. Orientadora. II. Coorientador. III. Título. CDU 519.6*32(043) Abstract Cloud storage is a data-intensive Internet service that offers the means for end users to easily backup data and perform collaborative work, with files in user devices being automatically synchronized with the cloud.
    [Show full text]
  • The Extent of Smartphones Users to Adopt the Use of Cloud Storage
    Journal of Computer Science Original Research Paper The Extent of Smartphones Users to Adopt the Use of Cloud Storage 1Khaled Aldiabat, 2Ameer Sardar Kwekha Rashid, 3Hind Talafha and 4Ahmad Karajeh 1Management Information System, Ajloun National University, Jordan 2Department of Marketing Management, University of Sulaimani, Iraq 3Department of Computer Information System, Researcher, Jordan 4Department of Accounting, Ajloun National University, Jordan Article history Abstract: Recently, technology has witnessed a rapid progress and Received: 13-11-2018 dominates all aspects of life systematically. Smartphones are devices that Revised: 29-11-2018 users can depend on managing and storing data. Moreover, they are used to Accepted: 06-12-2018 save, update and secure the private information of users by using Cloud Storage such as iCloud, Dropbox and Google Drive. This study presents Corresponding Author: Khaled Aldiabat and adjusts the Technology Acceptance Model (TAM) specifically, Management Information perceived ease of use, usefulness, attitude toward usage and behavioral System, Ajloun National intention. Additionally, the study used Cornbach Alpha Correlation and University, Jordan Regression analysis in public universities, particularly in the University of Email: [email protected] Sulaimani. The study aims to recognize the major elements that have impact on using cloud storage and to what extent the user depends on electronic devices in the academic field and to identify the factors and crucial effect on the users to use electronic device easily, improve their capability and attract to use the specific technology. The results of this study confirmed that some TAM constructs direct and indirect effect on university academics, employees and students’ behavioral intention to use cloud storage (Dropbox, iCloud and Google drive).
    [Show full text]
  • On I/O Performance and Cost Efficiency of Cloud Orst Age: a Client's Perspective
    Louisiana State University LSU Digital Commons LSU Doctoral Dissertations Graduate School 11-4-2019 On I/O Performance and Cost Efficiency of Cloud orSt age: A Client's Perspective Binbing Hou Louisiana State University and Agricultural and Mechanical College Follow this and additional works at: https://digitalcommons.lsu.edu/gradschool_dissertations Part of the Computer and Systems Architecture Commons, and the Data Storage Systems Commons Recommended Citation Hou, Binbing, "On I/O Performance and Cost Efficiency of Cloud Storage: A Client's Perspective" (2019). LSU Doctoral Dissertations. 5090. https://digitalcommons.lsu.edu/gradschool_dissertations/5090 This Dissertation is brought to you for free and open access by the Graduate School at LSU Digital Commons. It has been accepted for inclusion in LSU Doctoral Dissertations by an authorized graduate school editor of LSU Digital Commons. For more information, please [email protected]. ON I/O PERFORMANCE AND COST EFFICIENCY OF CLOUD STORAGE: A CLIENT'S PERSPECTIVE A Dissertation Submitted to the Graduate Faculty of the Louisiana State University and Agricultural and Mechanical College in partial fulfillment of the requirements for the degree of Doctor of Philosophy in The Department of Computer Science and Engineering by Binbing Hou B.S., Wuhan University of Technology, 2011 M.S., Huazhong University of Science and Technology, 2014 December 2019 Acknowledgments At the end of the doctorate program, I would like to express my deepest gratitude to many people. It is their great help and support that make this dissertation possible. First of all, I would like to thank my advisor, Dr. Feng Chen, for his continuous support.
    [Show full text]
  • User Experience Studies of Personal Cloud Storage Services
    PARISA POUR REZAEI USER EXPERIENCE STUDIES OF PERSONAL CLOUD STORAGE SERVICES Master of Science thesis Examiner: Prof. Kaisa Väänänen Supervisor: MSc Jarmo Palviainen Examiner and topic approved by the Council of the Faculty of Computing and Electerical Engineering on 14th January 2015 i ABSTRACT PARISA POUR REZAEI: User Experience Studies of Personal Cloud Storage Services Tampere University of technology Master of Science Thesis, 78 pages, 31 Appendix pages September 2015 Master’s Degree Programme in Information Technology Major: User Experience Examiner: Professor Kaisa Väänänen Keywords: user experience, design, cloud storage services Nowadays, individuals’ data is at their disposal in real time from any device with the assistance of cloud storage services (CSS, e.g. Dropbox, OneDrive, iCloud and Google Drive). Success of cloud computing in an enterprise ultimately depends on delivering user experience (UX) which delivers business applications anytime and anywhere, and on any device that user prefers. CSSs empower new kind of collaborations between individuals and have fundamental impact on how we organize and share our data. Despite an increasing popularity of cloud computing among researchers and academia, and vast variety of CSSs offered to the end users by cloud computing, the literature on UX studies of these services is quite restricted. This master’s thesis studies UX of different CSSs (with focus on Dropbox, Google Drive, OneDrive, and iCloud) based on 10 interviews and 65 Web survey responses. We analysed the data qualitatively and quantitatively. The results consist of reasons for the most positive and negative experiences and descriptions of current habits and motivations of the CSS users.
    [Show full text]
  • Research About Factors Affecting the Continuous Use of Cloud Storage
    RESEARCH ABOUT FACTOR AFFECTING THE CONTINUOUS USE OF CLOUD STORAGE SERVICE Chang Joong Jun, Yonsei University, 50 Yonsei-ro Seodaemun-gu Seoul Korea, [email protected], 010-2692-3581 Jung Hoon Lee, Yonsei University, 50 Yonsei-ro Seodaemun-gu Seoul Korea,, [email protected], 010-2994-1154 Dong Young, Shin, Yonsei University, 50 Yonsei-ro Seodaemun-gu Seoul Korea,, [email protected], 010-8780-1987 ABSTRACT Many service providers are investing on cloud storage service and competing fiercely for attracting users because it has the potential for the core infrastructure service of mobile and cloud service in the future. They should find out what motivate s the users to keep using the service. In this study, therefore, new variables that show user, system, and psychological switching cost factor are seek and combined with existing TAM and relationship with user’s motivation is examined. Key Words: Cloud Storage, TAM(Technology Acceptance Model), User factor, System Factor, Psychological switching cost factor 1. INTRODUCTION 1.1 Research background It is becoming quite common for individuals to own more than one device as mobile devices including laptop computers, smartphones and mobile pads have become easily accessible in recent years. Advances in mobile-based information technology environment and changes in content consumption patterns called for cloud storage services with which users are able to have free access to information and send the latest version of selected content and device setting to other devices they have. It was not until 2011 that cloud storage service became popular. All around world, about 150 million people used the service in 2011 and 375 million in 2012, and, now, the number is expected to exceed 625 million in 2013.
    [Show full text]
  • Towards Network-Level Efficiency for Cloud Storage Services
    Towards Network-level Efficiency for Cloud Storage Services Zhenhua Li Cheng Jin Tianyin Xu Tsinghua University University of Minnesota University of California Peking University Twin Cities San Diego [email protected] [email protected] [email protected] Christo Wilson Yao Liu Linsong Cheng Northeastern University State University of New York Tsinghua University Boston, MA, US Binghamton University Beijing, China [email protected] [email protected] [email protected] Yunhao Liu Yafei Dai Zhi-Li Zhang Tsinghua University Peking University University of Minnesota Beijing, China Beijing, China Twin Cities [email protected] [email protected] [email protected] ABSTRACT General Terms Cloud storage services such as Dropbox, Google Drive, and Mi- Design, Experimentation, Measurement, Performance crosoft OneDrive provide users with a convenient and reliable way to store and share data from anywhere, on any device, and at any Keywords time. The cornerstone of these services is the data synchronization (sync) operation which automatically maps the changes in users’ Cloud storage service; network-level efficiency; data synchroniza- local filesystems to the cloud via a series of network communica- tion; traffic usage efficiency tions in a timely manner. If not designed properly, however, the tremendous amount of data sync traffic can potentially cause (fi- 1. INTRODUCTION nancial) pains to both service providers and users. Cloud storage services such as Dropbox, Google Drive, and Mi- This paper addresses a simple yet critical question: Is the cur- crosoft OneDrive (renamed from SkyDrive since Feb. 2014) pro- rent data sync traffic of cloud storage services efficiently used? vide users with a convenient and reliable way to store and share We first define a novel metric named TUE to quantify the Traffic data from anywhere, on any device, and at any time.
    [Show full text]
  • Edgecourier: an Edge-Hosted Personal Service for Low-Bandwidth Document Synchronization in Mobile Cloud Storage Services
    EdgeCourier: An Edge-hosted Personal Service for Low-bandwidth Document Synchronization in Mobile Cloud Storage Services Pengzhan Hao, Yongshu Bai, Xin Zhang, and Yifan Zhang Department of Computer Science SUNY Binghamton Binghamton, NY ABSTRACT ated, and can be further synchronized in real-time to other Using cloud storage to automatically back up content changes devices owned by the user or his collaborators. We name when editing documents is an everyday scenario. We demon- this common usage scenario as cloud-storage-backed mobile strate that current cloud storage services can cause unneces- document editing. sary bandwidth consumption, especially for office suite doc- Low-bandwidth sync is important for cloud-storage-backed uments, in this common scenario. Specifically, even with in- mobile document editing. However, our motivation study cremental synchronization approach in place, existing cloud (§3.2) shows that exiting cloud storage services incur high storage services still incur whole-file transmission every time network traffic on mobile devices when synchronizing doc- when the document file is synchronized. We analyze the ument files, especially for office suite documents [9, 10, 34, problem causes in depth, and propose EdgeCourier, a sys- 47, 63], such as word processing, spreadsheet, and presenta- tem to address the problem. We also propose the concept tion documents, which constitute the most commonly used of edge-hosed personal service (EPS), which has many ben- editable document formats in practice [18, 33]. Specifically, efits, such as helping deploy EdgeCourier easily in practice. most cloud storage services transmit the whole document We have prototyped the EdgeCourier system, deployed it in file from the mobile device to cloud storage every time when the form of EPS in a lab environment, and performed exten- the user saves the file, even for a small change in the file sive experiments for evaluation.
    [Show full text]
  • The State of the Art Forensic Techniques in Mobile Cloud Environment: a Survey, Challenges and Current Trends
    The State of the Art Forensic Techniques in Mobile Cloud Environment: A Survey, Challenges and Current Trends Muhammad Faheem School of Computer Science and informatics University College Dublin Dublin, Ireland [email protected] M-Tahar Kechadi School of Computer Science and informatics University College Dublin Dublin, Ireland [email protected] Nhien-An Le-Khac School of Computer Science and informatics University College Dublin Dublin, Ireland [email protected] Abstract: Smartphones have become popular in recent days due to the accessibility of a wide range of applications. These sophisticated applications demand more computing resources in a resource constraint smartphone. Cloud computing is the motivating factor for the progress of these applications. The emerging mobile cloud computing introduces a new architecture to offload smartphone and utilize cloud computing technology to solve resource requirements. The popularity of mobile cloud computing is an opportunity for misuse and unlawful activities. Therefore, it is a challenging platform for digital forensic investigations due to the non-availability of methodologies, tools and techniques. The aim of this work is to analyze the forensic tools and methodologies for crime investigation in a mobile cloud platform as it poses challenges in proving the evidence. The advancement of forensic tools and methodologies are much slower than the current technology development in mobile cloud computing. Thus, forces the available tools, and techniques become increasingly obsolete. Therefore, it opens up the door for the new forensic tools and techniques to cope up with recent developments. Hence, this work presents a detailed survey of forensic methodology and corresponding issues in a mobile device, cloud environment, and mobile cloud applications.
    [Show full text]
  • 3 a Quantitative and Comparative Study of Network-Level Efficiency for Cloud Storage Services
    A Quantitative and Comparative Study of Network-Level Efficiency for Cloud Storage Services ZHENHUA LI, YONGFENG ZHANG, and YUNHAO LIU, Tsinghua University TIANYIN XU, University of Illinois at Urbana-Champaign ENNAN ZHAI, Yale University YAO LIU, Binghamton University XIAOBO MA, Xi’an Jiaotong University ZHENYU LI, Institute of Computing Technology, Chinese Academy of Sciences Cloud storage services such as Dropbox and OneDrive provide users with a convenient and reliable way to 3 store and share data from anywhere, on any device, and at any time. Their cornerstone is the data synchro- nization (sync) operation, which automatically maps the changes in users’ local file systems to the cloud viaa series of network communications in a timely manner. Without careful design and implementation, however, the data sync mechanisms could generate overwhelming traffic, causing tremendous financial overhead and performance penalties to both service providers and end users. This article addresses a simple yet critical question: Is the current data sync traffic of cloud storage services efficiently used? We first define a novel metric TUE to quantify the Traffic Usage Efficiency of data synchronization. Then, by conducting comprehensive benchmark experiments and reverse engineering the data sync processes of eight widely used cloud storage services, we uncover their manifold practical endeavors for optimizing the TUE, including three intra-file approaches (compression, incremental sync, and interrupted transfer resumption), two cross-file/-user ap- proaches (i.e., deduplication and peer-assisted offloading), two batching approaches (file bundling and sync deferment), and two web-specific approaches (thumbnail views and dynamic content loading). Our measure- ment results reveal that a considerable portion of the data sync traffic is, in a sense, wasteful and canbe effectively avoided or significantly reduced via carefully designed data sync mechanisms.
    [Show full text]
  • Game of Phones, Data Isn't Coming: Modern Mobile Operating System
    \\jciprod01\productn\G\GWN\85-2\GWN205.txt unknown Seq: 1 20-MAR-17 11:21 NOTE Game of Phones, Data Isn’t Coming: Modern Mobile Operating System Encryption and Its Chilling Effect on Law Enforcement Kristen M. Jacobsen* ABSTRACT The encrypted smartphone presents a novel legal issue that is hard to crack. Smartphone data is essential to investigating and prosecuting a range of crimes, such as murder, human trafficking, child pornography, and terrorism. However, Apple and Google’s recently reengineered mobile operating systems threaten to lock out law enforcement completely. These operating systems use full-disk encryption technology, which converts everything on a hard drive into an unreadable format until the passcode is entered. Additionally, other security features on the smartphone could result in the data being completely destroyed if the passcode is incorrectly entered a certain number of times. Locked smartphones are thus quickly becoming expensive paperweights filing the evidence rooms of state and federal law enforcement. This Note provides relevant background information on Apple and Google’s use of full-disk encryption technology on their respective mobile op- erating systems. Based on the necessity of smartphone data in the twenty-first century, this Note explains that the inaccessibility of such crucial data will likely frustrate investigations and prosecutions because law enforcement can- not access it elsewhere. This Note concludes that to prevent “Going Dark,” * J.D., expected May 2017, The George Washington University Law School; B.A., En- glish, 2014, University of Denver. I would like to thank my parents, Jim Jacobsen and Denise Martin, for their unending support and the staff of The George Washington Law Review for their thoughtful comments throughout this process.
    [Show full text]