Edgecourier: an Edge-Hosted Personal Service for Low-Bandwidth Document Synchronization in Mobile Cloud Storage Services

Total Page:16

File Type:pdf, Size:1020Kb

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. Evaluation results suggest (e.g., a single character addition). This behavior can cause that our prototype system can effectively reduce document a high amount of network traffic for mobile users considering synchronization bandwidth with negligible overheads. that the “save” operation is common and happens frequently when users edit documents. We name this common problem as the whole-file-sync problem in the cloud-storage-backed CCS Concepts document editing scenario. •Networks → Cloud computing; •Human-centered To solve the problem, we develop EdgeCourier, a system computing → Mobile computing; Ubiquitous and mo- to improve cloud-storage-backed document editing usage ex- bile computing systems and tools; Mobile devices; perience by significantly lowering network traffic generated by mobile devices when synchronizing office document file Keywords changes with cloud storage services. In the following, we in- troduce how EdgeCourier works by summarizing the three Mobile computing; Edge computing; Cloud storage; File major challenges of solving the whole-file-sync problem, and synchronization; Unikernel our corresponding designs of addressing them. First, the proper way to solve the whole-file synchroniza- 1. INTRODUCTION tion issue is using an incremental synchronization approach, with which only the changes made since the last synchro- In this paper, we investigate achieving low-bandwidth doc- nization, instead of the whole file, are transmitted. How- ument content synchronization for a popular scenario en- ever, existing techniques for this purpose, such as chunk- abled by smart mobile devices (e.g., smartphones and ta- ing/deduplication [5,8,16,52,57,64] and delta-encoding [20, bles) and cloud storage services: a user edits documents on 36, 50, 58, 65], virtually have no effect on office documents. his smartphones/tablets. The content changes made by the The reason is that, for most office applications, a small edit user are synchronized to cloud storage as they are gener- in an office document can result in a substantial change in its Permission to make digital or hard copies of all or part of this work for personal or binary format. Moreover, the performance of existing incre- classroom use is granted without fee provided that copies are not made or distributed for profit or commercial advantage and that copies bear this notice and the full citation mental sync approaches highly depends on properly choosing on the first page. Copyrights for components of this work owned by others than the the right configuration (e.g., chunk/block size) for the traffic author(s) must be honored. Abstracting with credit is permitted. To copy otherwise, or of interest. However, the current incremental sync methods republish, to post on servers or to redistribute to lists, requires prior specific permission and/or a fee. Request permissions from [email protected]. deployed on cloud storage services treat all sync traffic in the same way, and hence they also do not work well for synchro- SEC ’17, October 12–14, 2017, San Jose / Silicon Valley, CA, USA nizing general document traffic. More details are discussed c 2017 Copyright held by the owner/author(s). Publication rights licensed to ACM. ISBN 978-1-4503-5087-7/17/10. $15.00 in §3. DOI: https://doi.org/10.1145/3132211.3134447 To address the first challenge, we design and implement an office-document-aware incremental sync approach, which the fact that edge nodes are usually embedded devices with we name as ec-sync. Our approach is based on the ob- limited computational resources, achieving high resource ef- servation that different types of office documents are all ficiency is critical to EPS. Second, since multiple users’ data standard ZIP files (with different extensions), which are are processed in the same edge node, an EPS runtime that compressed archives containing a defined structure of sub- can help protect users’ data security and privacy is impor- documents [68, 70]. When a small edit is made to a docu- tant. Our approach of fulfilling the above two goals is to use ment on mobile device, the edit is recorded (in plain text) Unikernel as EPS runtime environment, since Unikernels are in one of the sub-documents. Thus, the general idea of ec- known for its properties of extreme lightweight and perfect sync is to capture the actual edits by comparing the latest resource isolation [43–46]. version of the sub-document containing the edits against the The third major challenge for EdgeCourier is that to de- last-synced version, and transmit only the actual edits. Al- ploy EdgeCourier, changes also needs to be made on mo- though the idea of ec-sync is straightforward, to make it bile devices side. However, requiring modifications on ei- work effectively and efficiently was not trivial. There were ther mobile apps or mobile OS is not practical for deploying several notable difficulties. For example, when comparing EdgeCourier on millions of mobile devices already in use. the versions of the sub-document, using existing implemen- To address this issue, we take advantage of our prior work tations of the diff utility [31] would contribute significant StoArranger [12, 13], a practical system framework running computation and time overheads to ec-sync if the document on mobile devices that can rearrange, coordinate, and trans- size is large. To address this problem, we developed ec- form cloud storage accesses from mobile apps. diff, which is a new diff tool specifically designed for the To summarize, our contributions are as follows. cloud-storage-backed document editing scenario and is able • Through detailed measurement study, we identify the com- to achieve good performance regardless the sizes of the un- mon whole-file-sync problem, which incurs high sync band- derlying files. We discuss the details of ec-sync and the width in the popular cloud-storage-backed mobile document associated difficulties later in §4.1. editing scenario, and we demonstrate that it cannot be effec- The second challenge for EdgeCourier is that all the pos- tively solved by the exiting incremental sync approaches. sible incremental sync approaches require adding the cor- • We design ec-sync, an effective office-document-aware in- responding processing on cloud storage servers, which can cremental sync approach, and EdgeCourier, a system that greatly hinder them from being deployed in practice for two integrates ec-sync and the associated tools (e.g., ec-diff) reasons: one reason is that these approaches would undoubt- for low-bandwidth mobile document synchronization in cloud edly cause significant load increase on the cloud storage storage services. servers given their central processing nature; the other is • We propose the concept of edge-hosted personal service that it is hard, and also would take long time, for all the (EPS), which has many useful application scenarios and ben- cloud storage service providers to adopt such approaches. efits. For example, we demonstrate that EPS can help de- Our approach of addressing the above challenge is to dis- ploy the functionalities of EdgeCourier without requiring tribute the corresponding processing on cloud storage server changes on cloud storage services. to network edge nodes (e.g., wireless access points, in-home • We prototype the EdgeCourier system with real hardware. routers, and cellular towers). We propose the concept of We explore using Unikernel to serve as the runtime environ- edge-hosted personal service (EPS for short). An EPS runs ment of EPS, which is a promising approach to deploy EPS on a network edge node, and performs a specific functional- instances on resource-constrained edge nodes, and we report ity for mobile users. A mobile user can start/stop his own the corresponding experiences. EPS instance(s) on the edge node to which he is connected. • We evaluate the EdgeCourier system with real-world ex- One advantage of EPS is that it can help distribute the periments, which show that our system can achieve its goals functionalities that are normally deployed in data centers to with little overheads.
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]
  • 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]
  • 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.
    [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]