SlideShare a Scribd company logo
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 (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
IRJET Journal
 
Java remote control for laboratory monitoring
Java remote control for laboratory monitoringJava remote control for laboratory monitoring
Java remote control for laboratory monitoring
IAEME Publication
 
Development of Farm Records Software
Development of Farm Records SoftwareDevelopment of Farm Records Software
Development of Farm Records Software
Oyeniyi Samuel
 
chapters
chapterschapters
chapters
Jayesh Katta Ramalingaiah
 
Ch8.testing
Ch8.testingCh8.testing
Ch8.testing
software-engineering-book
 
System Specification Report.
System Specification Report.System Specification Report.
System Specification Report.
Shivakant Dubey
 
Online Exam Management System(OEMS)
Online Exam Management System(OEMS)Online Exam Management System(OEMS)
Online Exam Management System(OEMS)
PUST
 
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...
IRJET Journal
 
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
 
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
ijtsrd
 
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
csandit
 
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
IRJET Journal
 
Online Exam System_Industrial Report
Online Exam System_Industrial ReportOnline Exam System_Industrial Report
Online Exam System_Industrial Report
Manmeet Sinha
 
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...
IRJET Journal
 
Java for beginners
Java for beginnersJava for beginners
Java for beginners
Nitesh Mehta
 
Ch14 resilience engineering
Ch14 resilience engineeringCh14 resilience engineering
Ch14 resilience engineering
software-engineering-book
 
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
IRJET Journal
 
Java remote control for laboratory monitoring
Java remote control for laboratory monitoringJava remote control for laboratory monitoring
Java remote control for laboratory monitoring
IAEME Publication
 
Development of Farm Records Software
Development of Farm Records SoftwareDevelopment of Farm Records Software
Development of Farm Records Software
Oyeniyi Samuel
 
System Specification Report.
System Specification Report.System Specification Report.
System Specification Report.
Shivakant Dubey
 
Online Exam Management System(OEMS)
Online Exam Management System(OEMS)Online Exam Management System(OEMS)
Online Exam Management System(OEMS)
PUST
 
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...
IRJET Journal
 
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
 
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
ijtsrd
 
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
csandit
 
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
IRJET Journal
 
Online Exam System_Industrial Report
Online Exam System_Industrial ReportOnline Exam System_Industrial Report
Online Exam System_Industrial Report
Manmeet Sinha
 
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...
IRJET Journal
 
Java for beginners
Java for beginnersJava for beginners
Java for beginners
Nitesh Mehta
 

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...
IRJET Journal
 
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)
IAESIJEECS
 
Android Application For Decentralized Family Locator
Android Application For Decentralized Family LocatorAndroid Application For Decentralized Family Locator
Android Application For Decentralized Family Locator
IRJET Journal
 
basha 1.pptx fsdbjn'ksfdipsdknd hvlflyifkjvkufuikf.uk
basha 1.pptx fsdbjn'ksfdipsdknd hvlflyifkjvkufuikf.ukbasha 1.pptx fsdbjn'ksfdipsdknd hvlflyifkjvkufuikf.uk
basha 1.pptx fsdbjn'ksfdipsdknd hvlflyifkjvkufuikf.uk
sammsameer342
 
Bug Tracking System (BTS)
Bug Tracking System (BTS)Bug Tracking System (BTS)
Bug Tracking System (BTS)
IRJET Journal
 
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 Journal
 
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 Journal
 
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...
IRJET Journal
 
travel portal for flights booking trave
travel portal for flights booking  travetravel portal for flights booking  trave
travel portal for flights booking trave
GNaveenKanth
 
ghgh.pdf travel portal for flights booking right
ghgh.pdf travel portal for flights booking rightghgh.pdf travel portal for flights booking right
ghgh.pdf travel portal for flights booking right
GNaveenKanth
 
project report on for travel portal for flights booking site
project report on for travel portal for flights booking siteproject report on for travel portal for flights booking site
project report on for travel portal for flights booking site
GNaveenKanth
 
travel portal career flights booking site
travel portal career flights booking sitetravel portal career flights booking site
travel portal career flights booking site
GNaveenKanth
 
travel portal for flights bookingn sbite
travel portal for flights bookingn sbitetravel portal for flights bookingn sbite
travel portal for flights bookingn sbite
GNaveenKanth
 
Railway Reservation System - Software Engineering
Railway Reservation System - Software EngineeringRailway Reservation System - Software Engineering
Railway Reservation System - Software Engineering
Lalit Pal
 
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
 
VEHICLE MANAGEMENT SYSTEM
VEHICLE MANAGEMENT SYSTEMVEHICLE MANAGEMENT SYSTEM
VEHICLE MANAGEMENT SYSTEM
Kalpam Srivastava
 
Cloud Storage and Security
Cloud Storage and SecurityCloud Storage and Security
Cloud Storage and Security
Shashank Srivastava
 
leave management system project report.pdf
leave management system project report.pdfleave management system project report.pdf
leave management system project report.pdf
Kamal Acharya
 
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
IRJET Journal
 
School management System
School management SystemSchool management System
School management System
HATIM Bhagat
 
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...
IRJET Journal
 
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)
IAESIJEECS
 
Android Application For Decentralized Family Locator
Android Application For Decentralized Family LocatorAndroid Application For Decentralized Family Locator
Android Application For Decentralized Family Locator
IRJET Journal
 
basha 1.pptx fsdbjn'ksfdipsdknd hvlflyifkjvkufuikf.uk
basha 1.pptx fsdbjn'ksfdipsdknd hvlflyifkjvkufuikf.ukbasha 1.pptx fsdbjn'ksfdipsdknd hvlflyifkjvkufuikf.uk
basha 1.pptx fsdbjn'ksfdipsdknd hvlflyifkjvkufuikf.uk
sammsameer342
 
Bug Tracking System (BTS)
Bug Tracking System (BTS)Bug Tracking System (BTS)
Bug Tracking System (BTS)
IRJET Journal
 
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 Journal
 
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 Journal
 
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...
IRJET Journal
 
travel portal for flights booking trave
travel portal for flights booking  travetravel portal for flights booking  trave
travel portal for flights booking trave
GNaveenKanth
 
ghgh.pdf travel portal for flights booking right
ghgh.pdf travel portal for flights booking rightghgh.pdf travel portal for flights booking right
ghgh.pdf travel portal for flights booking right
GNaveenKanth
 
project report on for travel portal for flights booking site
project report on for travel portal for flights booking siteproject report on for travel portal for flights booking site
project report on for travel portal for flights booking site
GNaveenKanth
 
travel portal career flights booking site
travel portal career flights booking sitetravel portal career flights booking site
travel portal career flights booking site
GNaveenKanth
 
travel portal for flights bookingn sbite
travel portal for flights bookingn sbitetravel portal for flights bookingn sbite
travel portal for flights bookingn sbite
GNaveenKanth
 
Railway Reservation System - Software Engineering
Railway Reservation System - Software EngineeringRailway Reservation System - Software Engineering
Railway Reservation System - Software Engineering
Lalit Pal
 
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
 
leave management system project report.pdf
leave management system project report.pdfleave management system project report.pdf
leave management system project report.pdf
Kamal Acharya
 
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
IRJET Journal
 
School management System
School management SystemSchool management System
School management System
HATIM Bhagat
 

More from IRJET Journal (20)

Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
IRJET Journal
 
BRAIN TUMOUR DETECTION AND CLASSIFICATION
BRAIN TUMOUR DETECTION AND CLASSIFICATIONBRAIN TUMOUR DETECTION AND CLASSIFICATION
BRAIN TUMOUR DETECTION AND CLASSIFICATION
IRJET Journal
 
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
IRJET Journal
 
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ..."Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
IRJET Journal
 
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
IRJET Journal
 
Breast Cancer Detection using Computer Vision
Breast Cancer Detection using Computer VisionBreast Cancer Detection using Computer Vision
Breast Cancer Detection using Computer Vision
IRJET Journal
 
Auto-Charging E-Vehicle with its battery Management.
Auto-Charging E-Vehicle with its battery Management.Auto-Charging E-Vehicle with its battery Management.
Auto-Charging E-Vehicle with its battery Management.
IRJET Journal
 
Analysis of high energy charge particle in the Heliosphere
Analysis of high energy charge particle in the HeliosphereAnalysis of high energy charge particle in the Heliosphere
Analysis of high energy charge particle in the Heliosphere
IRJET Journal
 
A Novel System for Recommending Agricultural Crops Using Machine Learning App...
A Novel System for Recommending Agricultural Crops Using Machine Learning App...A Novel System for Recommending Agricultural Crops Using Machine Learning App...
A Novel System for Recommending Agricultural Crops Using Machine Learning App...
IRJET Journal
 
Auto-Charging E-Vehicle with its battery Management.
Auto-Charging E-Vehicle with its battery Management.Auto-Charging E-Vehicle with its battery Management.
Auto-Charging E-Vehicle with its battery Management.
IRJET Journal
 
Analysis of high energy charge particle in the Heliosphere
Analysis of high energy charge particle in the HeliosphereAnalysis of high energy charge particle in the Heliosphere
Analysis of high energy charge particle in the Heliosphere
IRJET Journal
 
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
IRJET Journal
 
FIR filter-based Sample Rate Convertors and its use in NR PRACH
FIR filter-based Sample Rate Convertors and its use in NR PRACHFIR filter-based Sample Rate Convertors and its use in NR PRACH
FIR filter-based Sample Rate Convertors and its use in NR PRACH
IRJET Journal
 
Kiona – A Smart Society Automation Project
Kiona – A Smart Society Automation ProjectKiona – A Smart Society Automation Project
Kiona – A Smart Society Automation Project
IRJET Journal
 
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
IRJET Journal
 
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
IRJET Journal
 
Invest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
Invest in Innovation: Empowering Ideas through Blockchain Based CrowdfundingInvest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
Invest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
IRJET Journal
 
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
IRJET Journal
 
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUBSPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
IRJET Journal
 
AR Application: Homewise VisionMs. Vaishali Rane, Om Awadhoot, Bhargav Gajare...
AR Application: Homewise VisionMs. Vaishali Rane, Om Awadhoot, Bhargav Gajare...AR Application: Homewise VisionMs. Vaishali Rane, Om Awadhoot, Bhargav Gajare...
AR Application: Homewise VisionMs. Vaishali Rane, Om Awadhoot, Bhargav Gajare...
IRJET Journal
 
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
IRJET Journal
 
BRAIN TUMOUR DETECTION AND CLASSIFICATION
BRAIN TUMOUR DETECTION AND CLASSIFICATIONBRAIN TUMOUR DETECTION AND CLASSIFICATION
BRAIN TUMOUR DETECTION AND CLASSIFICATION
IRJET Journal
 
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
IRJET Journal
 
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ..."Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
IRJET Journal
 
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
IRJET Journal
 
Breast Cancer Detection using Computer Vision
Breast Cancer Detection using Computer VisionBreast Cancer Detection using Computer Vision
Breast Cancer Detection using Computer Vision
IRJET Journal
 
Auto-Charging E-Vehicle with its battery Management.
Auto-Charging E-Vehicle with its battery Management.Auto-Charging E-Vehicle with its battery Management.
Auto-Charging E-Vehicle with its battery Management.
IRJET Journal
 
Analysis of high energy charge particle in the Heliosphere
Analysis of high energy charge particle in the HeliosphereAnalysis of high energy charge particle in the Heliosphere
Analysis of high energy charge particle in the Heliosphere
IRJET Journal
 
A Novel System for Recommending Agricultural Crops Using Machine Learning App...
A Novel System for Recommending Agricultural Crops Using Machine Learning App...A Novel System for Recommending Agricultural Crops Using Machine Learning App...
A Novel System for Recommending Agricultural Crops Using Machine Learning App...
IRJET Journal
 
Auto-Charging E-Vehicle with its battery Management.
Auto-Charging E-Vehicle with its battery Management.Auto-Charging E-Vehicle with its battery Management.
Auto-Charging E-Vehicle with its battery Management.
IRJET Journal
 
Analysis of high energy charge particle in the Heliosphere
Analysis of high energy charge particle in the HeliosphereAnalysis of high energy charge particle in the Heliosphere
Analysis of high energy charge particle in the Heliosphere
IRJET Journal
 
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
IRJET Journal
 
FIR filter-based Sample Rate Convertors and its use in NR PRACH
FIR filter-based Sample Rate Convertors and its use in NR PRACHFIR filter-based Sample Rate Convertors and its use in NR PRACH
FIR filter-based Sample Rate Convertors and its use in NR PRACH
IRJET Journal
 
Kiona – A Smart Society Automation Project
Kiona – A Smart Society Automation ProjectKiona – A Smart Society Automation Project
Kiona – A Smart Society Automation Project
IRJET Journal
 
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
IRJET Journal
 
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
IRJET Journal
 
Invest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
Invest in Innovation: Empowering Ideas through Blockchain Based CrowdfundingInvest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
Invest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
IRJET Journal
 
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
IRJET Journal
 
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUBSPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
IRJET Journal
 
AR Application: Homewise VisionMs. Vaishali Rane, Om Awadhoot, Bhargav Gajare...
AR Application: Homewise VisionMs. Vaishali Rane, Om Awadhoot, Bhargav Gajare...AR Application: Homewise VisionMs. Vaishali Rane, Om Awadhoot, Bhargav Gajare...
AR Application: Homewise VisionMs. Vaishali Rane, Om Awadhoot, Bhargav Gajare...
IRJET Journal
 

Recently uploaded (20)

Redirects Unraveled: From Lost Links to Rickrolls
Redirects Unraveled: From Lost Links to RickrollsRedirects Unraveled: From Lost Links to Rickrolls
Redirects Unraveled: From Lost Links to Rickrolls
Kritika Garg
 
Water Industry Process Automation & Control Monthly May 2025
Water Industry Process Automation & Control Monthly May 2025Water Industry Process Automation & Control Monthly May 2025
Water Industry Process Automation & Control Monthly May 2025
Water Industry Process Automation & Control
 
Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...
Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...
Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...
Journal of Soft Computing in Civil Engineering
 
introduction technology technology tec.pptx
introduction technology technology tec.pptxintroduction technology technology tec.pptx
introduction technology technology tec.pptx
Iftikhar70
 
Artificial intelligence and machine learning.pptx
Artificial intelligence and machine learning.pptxArtificial intelligence and machine learning.pptx
Artificial intelligence and machine learning.pptx
rakshanatarajan005
 
Generative AI & Large Language Models Agents
Generative AI & Large Language Models AgentsGenerative AI & Large Language Models Agents
Generative AI & Large Language Models Agents
aasgharbee22seecs
 
ATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ATAL 6 Days Online FDP Scheme Document 2025-26.pdfATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ssuserda39791
 
hypermedia_system_revisit_roy_fielding .
hypermedia_system_revisit_roy_fielding .hypermedia_system_revisit_roy_fielding .
hypermedia_system_revisit_roy_fielding .
NABLAS株式会社
 
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdfML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
rameshwarchintamani
 
Applications of Centroid in Structural Engineering
Applications of Centroid in Structural EngineeringApplications of Centroid in Structural Engineering
Applications of Centroid in Structural Engineering
suvrojyotihalder2006
 
Autodesk Fusion 2025 Tutorial: User Interface
Autodesk Fusion 2025 Tutorial: User InterfaceAutodesk Fusion 2025 Tutorial: User Interface
Autodesk Fusion 2025 Tutorial: User Interface
Atif Razi
 
JRR Tolkien’s Lord of the Rings: Was It Influenced by Nordic Mythology, Homer...
JRR Tolkien’s Lord of the Rings: Was It Influenced by Nordic Mythology, Homer...JRR Tolkien’s Lord of the Rings: Was It Influenced by Nordic Mythology, Homer...
JRR Tolkien’s Lord of the Rings: Was It Influenced by Nordic Mythology, Homer...
Reflections on Morality, Philosophy, and History
 
SICPA: Fabien Keller - background introduction
SICPA: Fabien Keller - background introductionSICPA: Fabien Keller - background introduction
SICPA: Fabien Keller - background introduction
fabienklr
 
ML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdf
ML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdfML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdf
ML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdf
rameshwarchintamani
 
Slide share PPT of NOx control technologies.pptx
Slide share PPT of  NOx control technologies.pptxSlide share PPT of  NOx control technologies.pptx
Slide share PPT of NOx control technologies.pptx
vvsasane
 
Efficient Algorithms for Isogeny Computation on Hyperelliptic Curves: Their A...
Efficient Algorithms for Isogeny Computation on Hyperelliptic Curves: Their A...Efficient Algorithms for Isogeny Computation on Hyperelliptic Curves: Their A...
Efficient Algorithms for Isogeny Computation on Hyperelliptic Curves: Their A...
IJCNCJournal
 
Dynamics of Structures with Uncertain Properties.pptx
Dynamics of Structures with Uncertain Properties.pptxDynamics of Structures with Uncertain Properties.pptx
Dynamics of Structures with Uncertain Properties.pptx
University of Glasgow
 
Design of Variable Depth Single-Span Post.pdf
Design of Variable Depth Single-Span Post.pdfDesign of Variable Depth Single-Span Post.pdf
Design of Variable Depth Single-Span Post.pdf
Kamel Farid
 
Computer Security Fundamentals Chapter 1
Computer Security Fundamentals Chapter 1Computer Security Fundamentals Chapter 1
Computer Security Fundamentals Chapter 1
remoteaimms
 
最新版加拿大魁北克大学蒙特利尔分校毕业证(UQAM毕业证书)原版定制
最新版加拿大魁北克大学蒙特利尔分校毕业证(UQAM毕业证书)原版定制最新版加拿大魁北克大学蒙特利尔分校毕业证(UQAM毕业证书)原版定制
最新版加拿大魁北克大学蒙特利尔分校毕业证(UQAM毕业证书)原版定制
Taqyea
 
Redirects Unraveled: From Lost Links to Rickrolls
Redirects Unraveled: From Lost Links to RickrollsRedirects Unraveled: From Lost Links to Rickrolls
Redirects Unraveled: From Lost Links to Rickrolls
Kritika Garg
 
introduction technology technology tec.pptx
introduction technology technology tec.pptxintroduction technology technology tec.pptx
introduction technology technology tec.pptx
Iftikhar70
 
Artificial intelligence and machine learning.pptx
Artificial intelligence and machine learning.pptxArtificial intelligence and machine learning.pptx
Artificial intelligence and machine learning.pptx
rakshanatarajan005
 
Generative AI & Large Language Models Agents
Generative AI & Large Language Models AgentsGenerative AI & Large Language Models Agents
Generative AI & Large Language Models Agents
aasgharbee22seecs
 
ATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ATAL 6 Days Online FDP Scheme Document 2025-26.pdfATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ssuserda39791
 
hypermedia_system_revisit_roy_fielding .
hypermedia_system_revisit_roy_fielding .hypermedia_system_revisit_roy_fielding .
hypermedia_system_revisit_roy_fielding .
NABLAS株式会社
 
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdfML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
rameshwarchintamani
 
Applications of Centroid in Structural Engineering
Applications of Centroid in Structural EngineeringApplications of Centroid in Structural Engineering
Applications of Centroid in Structural Engineering
suvrojyotihalder2006
 
Autodesk Fusion 2025 Tutorial: User Interface
Autodesk Fusion 2025 Tutorial: User InterfaceAutodesk Fusion 2025 Tutorial: User Interface
Autodesk Fusion 2025 Tutorial: User Interface
Atif Razi
 
SICPA: Fabien Keller - background introduction
SICPA: Fabien Keller - background introductionSICPA: Fabien Keller - background introduction
SICPA: Fabien Keller - background introduction
fabienklr
 
ML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdf
ML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdfML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdf
ML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdf
rameshwarchintamani
 
Slide share PPT of NOx control technologies.pptx
Slide share PPT of  NOx control technologies.pptxSlide share PPT of  NOx control technologies.pptx
Slide share PPT of NOx control technologies.pptx
vvsasane
 
Efficient Algorithms for Isogeny Computation on Hyperelliptic Curves: Their A...
Efficient Algorithms for Isogeny Computation on Hyperelliptic Curves: Their A...Efficient Algorithms for Isogeny Computation on Hyperelliptic Curves: Their A...
Efficient Algorithms for Isogeny Computation on Hyperelliptic Curves: Their A...
IJCNCJournal
 
Dynamics of Structures with Uncertain Properties.pptx
Dynamics of Structures with Uncertain Properties.pptxDynamics of Structures with Uncertain Properties.pptx
Dynamics of Structures with Uncertain Properties.pptx
University of Glasgow
 
Design of Variable Depth Single-Span Post.pdf
Design of Variable Depth Single-Span Post.pdfDesign of Variable Depth Single-Span Post.pdf
Design of Variable Depth Single-Span Post.pdf
Kamel Farid
 
Computer Security Fundamentals Chapter 1
Computer Security Fundamentals Chapter 1Computer Security Fundamentals Chapter 1
Computer Security Fundamentals Chapter 1
remoteaimms
 
最新版加拿大魁北克大学蒙特利尔分校毕业证(UQAM毕业证书)原版定制
最新版加拿大魁北克大学蒙特利尔分校毕业证(UQAM毕业证书)原版定制最新版加拿大魁北克大学蒙特利尔分校毕业证(UQAM毕业证书)原版定制
最新版加拿大魁北克大学蒙特利尔分校毕业证(UQAM毕业证书)原版定制
Taqyea
 

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.
  翻译: