- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- OnlineJFS (snapshot) & rsync
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2004 02:28 PM
08-12-2004 02:28 PM
OnlineJFS (snapshot) & rsync
Thanks.
Mark.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2004 02:35 PM
08-12-2004 02:35 PM
Re: OnlineJFS (snapshot) & rsync
Treat snapshot Filesystems as you would any other normal FS..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2004 02:36 PM
08-12-2004 02:36 PM
Re: OnlineJFS (snapshot) & rsync
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2004 02:57 PM
08-12-2004 02:57 PM
Re: OnlineJFS (snapshot) & rsync
No, just planning for the future. I'll be upgrading in the future and planning to install OnlineJFS (including Hardware Mirroring). At the moment using MirrorDisk/UX and using a script to split the LV several times a day rsyncing to a remote server.
Thanks again Nelson.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2004 12:03 AM
08-13-2004 12:03 AM
Re: OnlineJFS (snapshot) & rsync
nelson is right, with jfs snapshot you have a new fs which appear as the copy of the original one. It's faster, more then splitting/merge because there is nothing to resync at the end.
The snapshot can be used in reading exactly as the original fs, while it is, of course, not writable.
The only cons is that you need unused space in the vg to hold the copy. You should thing about 75% of the original fs, even if the total umount needed depends on how much time you will leave the snapshot active and how much activity on the original fs is done during this period.
Hope it helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2004 12:53 AM
08-13-2004 12:53 AM
Re: OnlineJFS (snapshot) & rsync
Lets say you have a filesystem called /data
its /dev/vg01/lvol22
Online JFS snapshot redirects all block changes to a temporary logical volume which is created by the command. This allows you to back up /data, /dev/vg01/lvol22 with any utility you want.
When you shutdown the snapshot all changed blocks are written to the original filesystem/logical volume.
Example.
/data is an oracle database.
I shut down the database.
I create the snapshot.
I start the database and can get a cold backup of the database.
All writes go to the snapshot area and the database is available to users.
When i shut down the snapshot the blocks get written to the original logical volume.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2004 12:59 AM
08-13-2004 12:59 AM
Re: OnlineJFS (snapshot) & rsync
Ain't JFS (aka VxFS) snapshots great? And storage checkpoints too?
It is supposed to be much improved and more robust under VxFS 3.5 (aka Online JFS 3.5).. We've been using it on Solaris systems for years...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2004 10:57 AM
08-15-2004 10:57 AM
Re: OnlineJFS (snapshot) & rsync
The snapshot hold the original data, not the modified. This means that modifications are not redirected to the snapshot but done on the original fs. Before the change, the original block is copied to the snapshot.
This means that when you stop the snapshot there is no need to copy anything, just trash the original data: no wasting of time at all !!
Also, with most database, oracle for instance, you don't even need to stop the db, if it can, as oracle, sync all buffered data and make the files complete as the db was closed. All new transactions are kept only in memory, in few seconds you start the snapshot and immediately release the database to work normally.
At the end snapshot is really great, if you have enough space on disk to hold original blocks that will be modified during snapshot
hope it helps