SlideShare a Scribd company logo
1 of 3
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 06 | June-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 1
Application Backup And Restore Across Multiple Devices
Pooja Chate1, Piyush Khadse2, Shubham Kadam3, Mayur Padma4, Prof. Ruhi A. Patankar5
1,23,4UG Student, Department of Computer Engineering, MIT Pune College, Maharashtra, Pune, India
5Assistant Professor, Department of Computer Engineering, MIT Pune College, Maharashtra, Pune, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract – Computer system is widely used across the globe
for several purposes in different fields and failure in this
system is natural. It is not acceptable as it might lead to loss
of important data. There are several reasons which can
cause the computer system or an application to crash or fail,
thus causing loss of important data lead to redo all the
activity or task, user was performing before the system
crashed. Our system proposes a solution to this problem by
backing all the data to the cloud and thus can be restored
when the system recovers from the crash, allowing to
resume the task which the user was initially performing.
Key Words: Cloud Computing, CRIU, Backup and
Restore, Selenium WebDriver.
1. INTRODUCTION
We live in the era of information and technology
where application software plays a significant role. We use
software applications on everyday basis because they
make our life easier than it was ever before. Humans rely
on software of different kinds, specific to their purpose, to
perform different activities like use of editors to create a
digital document, use of web to perform money
transaction; there are many simulators which are also one
kind of software system which is used for testing purpose
before any physical implementation or rather actual
implementation of project.
As useful as they sound software application are
also prone to failure. These applications might lose their
current state due to several reasons which might include
power failure, application failure or the system hosting the
application itself may crash. Thus, leads to loss of
application state and eventually the data. There is no
provision available for restoring the previous system state
and the data we lost during system or application failure
causing user to redo all the task or action user was
performing before the failure. In the proposed system we
aim to backup and restore the state of the application to
the one before the failure. Several mechanisms are used to
keep track of the activity the particular application is
performing and every data set being generated by the
application and after fixed time interval it is being backed
up on cloud so it could be restored when the application or
system recovers and starts running.
The proposed application uses multithreading
approach to handle the data generated by the multiple
(currently running) applications or tasks and uploads its
data to the cloud system consistently after several
intervals.
2. PROBLEM DEFINITION
Our problem includes two major sections. The
first section deals with backup of application programs
state and in this section applications state will be stored
on cloud and the backing up process will be handled by
thread allocated to each individual application. The second
section involves restoration of application selected by
user. In this section user will select application to be
restored and from cloud the data relevant to the
application will be sent to users system for restoration.
The application can be restored on multiple devices
providing the user with flexibility with usage of different
system.
3. ARCHITECTURE OF THE SYSTEM
The system architecture involves the components
namely cloud and the users device. The cloud is where the
users data is stored after its backed-up. Cloud system
decides to which node the data should be backed-up by
determining the load on the different available nodes, the
traffic or congestion in the network and other aspects.
The user system has different application
installed and is using different web services. While using
these applications the system constantly keeps backing up
data and accordingly the cloud system stores the data
attributes in the database. So, if the application fails
because of certain reasons the data stored in cloud system
is used to restore the state of the system when the user
requests for state restoration.
Fig -1: ASBAR System Architecture
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 06 | June-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 1323
4. TECHNOLOGIES
Selenium is an automated testing suite for web
application. It is open source (free) and can be
downloaded from web. It is not a single tool but a
collection of several suite of software which are used for
testing purpose based on the organizations need. It has
four components namely Selenium Integrated
Development Environment (IDE), Selenium Remote
Control (RC), WebDriver, Selenium Grid. Our problem
statement is to take backup and restore state of an
application, so to restore state of web application we are
going to use Selenium WebDriver API.
Every browser has default automation feature
and feature is exploited by Selenium WebDriver.
Selenium WebDriver is basically a well-designed object
oriented API which enables communication between
programming languages and browsers.
Fig-2: Selenium WebDriver Architecture
As it could be seen in fig 2 the client, that is, the
user program makes a specific request by issuing a
command to the client library and as soon as the client
library receives the command it converts it to the JSON
format to communicate with the browsers driver. Later,
on receiving the request the browser processes the
request and returns the status.
In our proposed system we are using this
functionality of Selenium WebDriver to gain access to
the contents of the website fed by the user. This data is
later backed-up and is used when user initiates restore
operation.
CRIU is used to implement checkpoint or restore
functionality for Linux. It stands for checkpoint or
restore in user space. CRIU is used for application live
migration, snapshots of apps, remote debugging, process
duplication etc.
Fig-3: CRIU Process
In our proposed system in order to restore
system applications state we are using criu. Using criu
we can freeze the running application and store
checkpoint of the application on local machine as well as
on cloud storage. Later we can restore application by
retrieving that checkpoint. criu provides dump and
restore to perform checkpointing and restoration of
application state. criu uses the kernels ptrace interface
to seize the application process. Then, it injects its
parasite code to dump the memory pages of the process
into image files from within process address space.
These are the image files which are later used for
application state restoration.
5. OBSERVATIONS
5.1 System Application Restoration Result
5.1.1 Text Editors state Restoration
Based on users demand to restore the requested
application, the dumped image files of the application
state which are stored on the cloud platform are
downloaded and are used to restore the application
state. XTerm terminal environment is used to display the
restored state of the application.
5.1.2 Restoration of Program Execution State
It involves restoration or rather resumption of
the program execution from where it left off. The
programming languages involved are C, C++, Java, and
Python. Our system namely ASBAR resumes the program
execution form the point it stopped. All the previous
resulting output of the program execution is stored in a
text file.
5.2 Application Restoration Result
5.2.1 Content Restoration
It involves restoration of the web application data fields,
for example gmail account creation form, which
demands data values of those fields to be fed by users.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 06 | June-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 1324
5.2.2 Session Restoration
It involves restoring the current user session
irrespective to which website the user visits.
6. CONCLUSION
This system proposes a solution for application state
restoration using several different techniques to backup
and restore the data securely and in an optimal fashion
reducing significant amount of effort that the used
would have had to spend on re-performing all the task.
The system provides different users with unique ID
allowing to restore the application on multiple devices
based on the ID provided.
REFERENCES
[1]. S. Luo, Y. Wang, W. Huang and H. Yu, ”Backup
and Disaster Recovery System for HDFS,” 2016
IEEE International Conference on Information
Science and Security (ICISS), Pattaya, 2016, pp.
1-4.
[2]. S. Biswas, R. Roy, M. R. Chowdhury and A. B.
Bhattacharya, ”On the Advanced Strategies of
Next Generation Online Examination System
Implementing Cloud Based Standardization:
Next Generation Online Examination System,”
2016 IEEE 6th International Conference on
Advanced Computing (IACC), Bhimavaram,
2016, pp. 834-839.
[3]. H. E. Camacho, J. Alfredo Brambila, A. Pea and J.
M. Vargas, ”A cloud environment for backup and
data storage,” 2014 IEEE International
Conference on Electronics, Communications
and Computers (CONIELECOMP), Cholula, 2014,
pp. 111-117.
[4]. Y. Gu, D. Wang and C. Liu, ”DR-Cloud: Multi-
cloud based disaster recovery service,” in
Tsinghua Science and Technology, vol. 19, no. 1,
pp. 13-23, Feb. 2014.

More Related Content

What's hot

Predicting the Maintenance of Aircraft Engines using LSTM
Predicting the Maintenance of Aircraft Engines using LSTMPredicting the Maintenance of Aircraft Engines using LSTM
Predicting the Maintenance of Aircraft Engines using LSTM
ijtsrd
 
Srs document for identity based secure distributed data storage schemes
Srs document for identity based secure distributed data storage schemesSrs document for identity based secure distributed data storage schemes
Srs document for identity based secure distributed data storage schemes
Sahithi Naraparaju
 

What's hot (17)

IRJET- An Efficient Automation Framework for Testing ITS Solution using Selenium
IRJET- An Efficient Automation Framework for Testing ITS Solution using SeleniumIRJET- An Efficient Automation Framework for Testing ITS Solution using Selenium
IRJET- An Efficient Automation Framework for Testing ITS Solution using Selenium
 
Java remote control for laboratory monitoring
Java remote control for laboratory monitoringJava remote control for laboratory monitoring
Java remote control for laboratory monitoring
 
Development of Farm Records Software
Development of Farm Records SoftwareDevelopment of Farm Records Software
Development of Farm Records Software
 
chapters
chapterschapters
chapters
 
Ch8.testing
Ch8.testingCh8.testing
Ch8.testing
 
System Specification Report.
System Specification Report.System Specification Report.
System Specification Report.
 
Online Exam Management System(OEMS)
Online Exam Management System(OEMS)Online Exam Management System(OEMS)
Online Exam Management System(OEMS)
 
IRJET - pyScout: Employee Monitoring System by using Screen Capturing Tec...
IRJET -  	  pyScout: Employee Monitoring System by using Screen Capturing Tec...IRJET -  	  pyScout: Employee Monitoring System by using Screen Capturing Tec...
IRJET - pyScout: Employee Monitoring System by using Screen Capturing Tec...
 
Predicting the Maintenance of Aircraft Engines using LSTM
Predicting the Maintenance of Aircraft Engines using LSTMPredicting the Maintenance of Aircraft Engines using LSTM
Predicting the Maintenance of Aircraft Engines using LSTM
 
Srs document for identity based secure distributed data storage schemes
Srs document for identity based secure distributed data storage schemesSrs document for identity based secure distributed data storage schemes
Srs document for identity based secure distributed data storage schemes
 
An Investigation of Fault Tolerance Techniques in Cloud Computing
An Investigation of Fault Tolerance Techniques in Cloud ComputingAn Investigation of Fault Tolerance Techniques in Cloud Computing
An Investigation of Fault Tolerance Techniques in Cloud Computing
 
ADAPTIVE AUTHENTICATION: A CASE STUDY FOR UNIFIED AUTHENTICATION PLATFORM
ADAPTIVE AUTHENTICATION: A CASE STUDY FOR UNIFIED AUTHENTICATION PLATFORM ADAPTIVE AUTHENTICATION: A CASE STUDY FOR UNIFIED AUTHENTICATION PLATFORM
ADAPTIVE AUTHENTICATION: A CASE STUDY FOR UNIFIED AUTHENTICATION PLATFORM
 
IRJET-Managing Security of Systems by Data Collection
IRJET-Managing Security of Systems by Data CollectionIRJET-Managing Security of Systems by Data Collection
IRJET-Managing Security of Systems by Data Collection
 
Online Exam System_Industrial Report
Online Exam System_Industrial ReportOnline Exam System_Industrial Report
Online Exam System_Industrial Report
 
IRJET-A Review on Trends in Multicore Processor Based on Cache and Power Diss...
IRJET-A Review on Trends in Multicore Processor Based on Cache and Power Diss...IRJET-A Review on Trends in Multicore Processor Based on Cache and Power Diss...
IRJET-A Review on Trends in Multicore Processor Based on Cache and Power Diss...
 
Java for beginners
Java for beginnersJava for beginners
Java for beginners
 
Ch14 resilience engineering
Ch14 resilience engineeringCh14 resilience engineering
Ch14 resilience engineering
 

Similar to IRJET- Application Backup and Restore across Multiple Devices

online multiplex ticket booking using ASP.NET C#(glosyn)
online multiplex ticket booking using ASP.NET C#(glosyn)online multiplex ticket booking using ASP.NET C#(glosyn)
online multiplex ticket booking using ASP.NET C#(glosyn)
Md Imran
 
127801976 mobile-shop-management-system-documentation
127801976 mobile-shop-management-system-documentation127801976 mobile-shop-management-system-documentation
127801976 mobile-shop-management-system-documentation
Nitesh Kumar
 
fault tolerance management in cloud computing
fault tolerance management in cloud computingfault tolerance management in cloud computing
fault tolerance management in cloud computing
Kruthikka Palraj
 

Similar to IRJET- Application Backup and Restore across Multiple Devices (20)

IRJET- A Repository Application Developed using .Net MVC and Angularjs for In...
IRJET- A Repository Application Developed using .Net MVC and Angularjs for In...IRJET- A Repository Application Developed using .Net MVC and Angularjs for In...
IRJET- A Repository Application Developed using .Net MVC and Angularjs for In...
 
26 7956 8212-1-rv software (edit)
26 7956 8212-1-rv software (edit)26 7956 8212-1-rv software (edit)
26 7956 8212-1-rv software (edit)
 
Android Application For Decentralized Family Locator
Android Application For Decentralized Family LocatorAndroid Application For Decentralized Family Locator
Android Application For Decentralized Family Locator
 
Bug Tracking System (BTS)
Bug Tracking System (BTS)Bug Tracking System (BTS)
Bug Tracking System (BTS)
 
IRJET- Enabling Identity-Based Integrity Auditing and Data Sharing with Sensi...
IRJET- Enabling Identity-Based Integrity Auditing and Data Sharing with Sensi...IRJET- Enabling Identity-Based Integrity Auditing and Data Sharing with Sensi...
IRJET- Enabling Identity-Based Integrity Auditing and Data Sharing with Sensi...
 
IRJET- Detecting Performance of Clouds by Uploading Applications
IRJET- Detecting Performance of Clouds by Uploading ApplicationsIRJET- Detecting Performance of Clouds by Uploading Applications
IRJET- Detecting Performance of Clouds by Uploading Applications
 
IRJET- An Efficient Hardware-Oriented Runtime Approach for Stack-Based Softwa...
IRJET- An Efficient Hardware-Oriented Runtime Approach for Stack-Based Softwa...IRJET- An Efficient Hardware-Oriented Runtime Approach for Stack-Based Softwa...
IRJET- An Efficient Hardware-Oriented Runtime Approach for Stack-Based Softwa...
 
Railway Reservation System - Software Engineering
Railway Reservation System - Software EngineeringRailway Reservation System - Software Engineering
Railway Reservation System - Software Engineering
 
online multiplex ticket booking using ASP.NET C#(glosyn)
online multiplex ticket booking using ASP.NET C#(glosyn)online multiplex ticket booking using ASP.NET C#(glosyn)
online multiplex ticket booking using ASP.NET C#(glosyn)
 
VEHICLE MANAGEMENT SYSTEM
VEHICLE MANAGEMENT SYSTEMVEHICLE MANAGEMENT SYSTEM
VEHICLE MANAGEMENT SYSTEM
 
Cloud Storage and Security
Cloud Storage and SecurityCloud Storage and Security
Cloud Storage and Security
 
IRJET- Analysis of using Software Defined and Service Coherence Approach
IRJET- Analysis of using Software Defined and Service Coherence ApproachIRJET- Analysis of using Software Defined and Service Coherence Approach
IRJET- Analysis of using Software Defined and Service Coherence Approach
 
School management System
School management SystemSchool management System
School management System
 
J017325660
J017325660J017325660
J017325660
 
Abstraction and Automation: A Software Design Approach for Developing Secure ...
Abstraction and Automation: A Software Design Approach for Developing Secure ...Abstraction and Automation: A Software Design Approach for Developing Secure ...
Abstraction and Automation: A Software Design Approach for Developing Secure ...
 
127801976 mobile-shop-management-system-documentation
127801976 mobile-shop-management-system-documentation127801976 mobile-shop-management-system-documentation
127801976 mobile-shop-management-system-documentation
 
IRJET - College Event Management System
IRJET - College Event Management SystemIRJET - College Event Management System
IRJET - College Event Management System
 
fault tolerance management in cloud computing
fault tolerance management in cloud computingfault tolerance management in cloud computing
fault tolerance management in cloud computing
 
Scale and Load Testing of Micro-Service
Scale and Load Testing of Micro-ServiceScale and Load Testing of Micro-Service
Scale and Load Testing of Micro-Service
 
F017264143
F017264143F017264143
F017264143
 

More from IRJET Journal

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

Digital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptxDigital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptx
pritamlangde
 
Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
Neometrix_Engineering_Pvt_Ltd
 

Recently uploaded (20)

Linux Systems Programming: Inter Process Communication (IPC) using Pipes
Linux Systems Programming: Inter Process Communication (IPC) using PipesLinux Systems Programming: Inter Process Communication (IPC) using Pipes
Linux Systems Programming: Inter Process Communication (IPC) using Pipes
 
Digital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptxDigital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptx
 
Computer Networks Basics of Network Devices
Computer Networks  Basics of Network DevicesComputer Networks  Basics of Network Devices
Computer Networks Basics of Network Devices
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdf
 
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxHOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
Memory Interfacing of 8086 with DMA 8257
Memory Interfacing of 8086 with DMA 8257Memory Interfacing of 8086 with DMA 8257
Memory Interfacing of 8086 with DMA 8257
 
Convergence of Robotics and Gen AI offers excellent opportunities for Entrepr...
Convergence of Robotics and Gen AI offers excellent opportunities for Entrepr...Convergence of Robotics and Gen AI offers excellent opportunities for Entrepr...
Convergence of Robotics and Gen AI offers excellent opportunities for Entrepr...
 
Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
 
Introduction to Geographic Information Systems
Introduction to Geographic Information SystemsIntroduction to Geographic Information Systems
Introduction to Geographic Information Systems
 
Max. shear stress theory-Maximum Shear Stress Theory ​ Maximum Distortional ...
Max. shear stress theory-Maximum Shear Stress Theory ​  Maximum Distortional ...Max. shear stress theory-Maximum Shear Stress Theory ​  Maximum Distortional ...
Max. shear stress theory-Maximum Shear Stress Theory ​ Maximum Distortional ...
 
Path loss model, OKUMURA Model, Hata Model
Path loss model, OKUMURA Model, Hata ModelPath loss model, OKUMURA Model, Hata Model
Path loss model, OKUMURA Model, Hata Model
 
Electromagnetic relays used for power system .pptx
Electromagnetic relays used for power system .pptxElectromagnetic relays used for power system .pptx
Electromagnetic relays used for power system .pptx
 
Theory of Time 2024 (Universal Theory for Everything)
Theory of Time 2024 (Universal Theory for Everything)Theory of Time 2024 (Universal Theory for Everything)
Theory of Time 2024 (Universal Theory for Everything)
 
Computer Graphics Introduction To Curves
Computer Graphics Introduction To CurvesComputer Graphics Introduction To Curves
Computer Graphics Introduction To Curves
 
Augmented Reality (AR) with Augin Software.pptx
Augmented Reality (AR) with Augin Software.pptxAugmented Reality (AR) with Augin Software.pptx
Augmented Reality (AR) with Augin Software.pptx
 
Introduction to Data Visualization,Matplotlib.pdf
Introduction to Data Visualization,Matplotlib.pdfIntroduction to Data Visualization,Matplotlib.pdf
Introduction to Data Visualization,Matplotlib.pdf
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdf
 
8th International Conference on Soft Computing, Mathematics and Control (SMC ...
8th International Conference on Soft Computing, Mathematics and Control (SMC ...8th International Conference on Soft Computing, Mathematics and Control (SMC ...
8th International Conference on Soft Computing, Mathematics and Control (SMC ...
 
Signal Processing and Linear System Analysis
Signal Processing and Linear System AnalysisSignal Processing and Linear System Analysis
Signal Processing and Linear System Analysis
 

IRJET- Application Backup and Restore across Multiple Devices

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 06 | June-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 1 Application Backup And Restore Across Multiple Devices Pooja Chate1, Piyush Khadse2, Shubham Kadam3, Mayur Padma4, Prof. Ruhi A. Patankar5 1,23,4UG Student, Department of Computer Engineering, MIT Pune College, Maharashtra, Pune, India 5Assistant Professor, Department of Computer Engineering, MIT Pune College, Maharashtra, Pune, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract – Computer system is widely used across the globe for several purposes in different fields and failure in this system is natural. It is not acceptable as it might lead to loss of important data. There are several reasons which can cause the computer system or an application to crash or fail, thus causing loss of important data lead to redo all the activity or task, user was performing before the system crashed. Our system proposes a solution to this problem by backing all the data to the cloud and thus can be restored when the system recovers from the crash, allowing to resume the task which the user was initially performing. Key Words: Cloud Computing, CRIU, Backup and Restore, Selenium WebDriver. 1. INTRODUCTION We live in the era of information and technology where application software plays a significant role. We use software applications on everyday basis because they make our life easier than it was ever before. Humans rely on software of different kinds, specific to their purpose, to perform different activities like use of editors to create a digital document, use of web to perform money transaction; there are many simulators which are also one kind of software system which is used for testing purpose before any physical implementation or rather actual implementation of project. As useful as they sound software application are also prone to failure. These applications might lose their current state due to several reasons which might include power failure, application failure or the system hosting the application itself may crash. Thus, leads to loss of application state and eventually the data. There is no provision available for restoring the previous system state and the data we lost during system or application failure causing user to redo all the task or action user was performing before the failure. In the proposed system we aim to backup and restore the state of the application to the one before the failure. Several mechanisms are used to keep track of the activity the particular application is performing and every data set being generated by the application and after fixed time interval it is being backed up on cloud so it could be restored when the application or system recovers and starts running. The proposed application uses multithreading approach to handle the data generated by the multiple (currently running) applications or tasks and uploads its data to the cloud system consistently after several intervals. 2. PROBLEM DEFINITION Our problem includes two major sections. The first section deals with backup of application programs state and in this section applications state will be stored on cloud and the backing up process will be handled by thread allocated to each individual application. The second section involves restoration of application selected by user. In this section user will select application to be restored and from cloud the data relevant to the application will be sent to users system for restoration. The application can be restored on multiple devices providing the user with flexibility with usage of different system. 3. ARCHITECTURE OF THE SYSTEM The system architecture involves the components namely cloud and the users device. The cloud is where the users data is stored after its backed-up. Cloud system decides to which node the data should be backed-up by determining the load on the different available nodes, the traffic or congestion in the network and other aspects. The user system has different application installed and is using different web services. While using these applications the system constantly keeps backing up data and accordingly the cloud system stores the data attributes in the database. So, if the application fails because of certain reasons the data stored in cloud system is used to restore the state of the system when the user requests for state restoration. Fig -1: ASBAR System Architecture
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 06 | June-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 1323 4. TECHNOLOGIES Selenium is an automated testing suite for web application. It is open source (free) and can be downloaded from web. It is not a single tool but a collection of several suite of software which are used for testing purpose based on the organizations need. It has four components namely Selenium Integrated Development Environment (IDE), Selenium Remote Control (RC), WebDriver, Selenium Grid. Our problem statement is to take backup and restore state of an application, so to restore state of web application we are going to use Selenium WebDriver API. Every browser has default automation feature and feature is exploited by Selenium WebDriver. Selenium WebDriver is basically a well-designed object oriented API which enables communication between programming languages and browsers. Fig-2: Selenium WebDriver Architecture As it could be seen in fig 2 the client, that is, the user program makes a specific request by issuing a command to the client library and as soon as the client library receives the command it converts it to the JSON format to communicate with the browsers driver. Later, on receiving the request the browser processes the request and returns the status. In our proposed system we are using this functionality of Selenium WebDriver to gain access to the contents of the website fed by the user. This data is later backed-up and is used when user initiates restore operation. CRIU is used to implement checkpoint or restore functionality for Linux. It stands for checkpoint or restore in user space. CRIU is used for application live migration, snapshots of apps, remote debugging, process duplication etc. Fig-3: CRIU Process In our proposed system in order to restore system applications state we are using criu. Using criu we can freeze the running application and store checkpoint of the application on local machine as well as on cloud storage. Later we can restore application by retrieving that checkpoint. criu provides dump and restore to perform checkpointing and restoration of application state. criu uses the kernels ptrace interface to seize the application process. Then, it injects its parasite code to dump the memory pages of the process into image files from within process address space. These are the image files which are later used for application state restoration. 5. OBSERVATIONS 5.1 System Application Restoration Result 5.1.1 Text Editors state Restoration Based on users demand to restore the requested application, the dumped image files of the application state which are stored on the cloud platform are downloaded and are used to restore the application state. XTerm terminal environment is used to display the restored state of the application. 5.1.2 Restoration of Program Execution State It involves restoration or rather resumption of the program execution from where it left off. The programming languages involved are C, C++, Java, and Python. Our system namely ASBAR resumes the program execution form the point it stopped. All the previous resulting output of the program execution is stored in a text file. 5.2 Application Restoration Result 5.2.1 Content Restoration It involves restoration of the web application data fields, for example gmail account creation form, which demands data values of those fields to be fed by users.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 06 | June-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 1324 5.2.2 Session Restoration It involves restoring the current user session irrespective to which website the user visits. 6. CONCLUSION This system proposes a solution for application state restoration using several different techniques to backup and restore the data securely and in an optimal fashion reducing significant amount of effort that the used would have had to spend on re-performing all the task. The system provides different users with unique ID allowing to restore the application on multiple devices based on the ID provided. REFERENCES [1]. S. Luo, Y. Wang, W. Huang and H. Yu, ”Backup and Disaster Recovery System for HDFS,” 2016 IEEE International Conference on Information Science and Security (ICISS), Pattaya, 2016, pp. 1-4. [2]. S. Biswas, R. Roy, M. R. Chowdhury and A. B. Bhattacharya, ”On the Advanced Strategies of Next Generation Online Examination System Implementing Cloud Based Standardization: Next Generation Online Examination System,” 2016 IEEE 6th International Conference on Advanced Computing (IACC), Bhimavaram, 2016, pp. 834-839. [3]. H. E. Camacho, J. Alfredo Brambila, A. Pea and J. M. Vargas, ”A cloud environment for backup and data storage,” 2014 IEEE International Conference on Electronics, Communications and Computers (CONIELECOMP), Cholula, 2014, pp. 111-117. [4]. Y. Gu, D. Wang and C. Liu, ”DR-Cloud: Multi- cloud based disaster recovery service,” in Tsinghua Science and Technology, vol. 19, no. 1, pp. 13-23, Feb. 2014.