IP Library Granted Patent US 7,882,068
Granted Patent B2
US 7,882,068 · App. 11/894,756 · Granted Feb 1, 2011

Systems and methods for adaptive copy on write

View Patent ↗
Loading inventors, assignments & file history…
Monitor This Case
Get email alerts when status or documents change.
Order Certified Copies
Most orders are placed with the USPTO same day — all within 24 business hours.
Order via The Patent Place →
Pre-filled with this patent's details
Quick Facts
Patent No.
US 7,882,068
App. No.
11/894,756
Granted
Feb 1, 2011
Kind
B2
Abstract

In one embodiment, a user or client device communicates with a distributed file system comprised of one or more physical nodes. The data on each of the physical nodes store metadata about files and directories within the file system. Some of the embodiments permit a user to take a snapshot of data stored on the file system. The snapshot may include a single file, a single directory, a plurality of files within a directory, a plurality of directories, a path on the file system that includes nested files and subdirectories, or more than one path on the file system that each includes nested files and directories. In some embodiments, systems and methods intelligently choose whether to use copy-on-write or point-in-time copy when saving data in a snapshot version of a file whose current version is being overwritten. In some embodiments, systems and methods allow snapshot users to return from a snapshot directory to the immediate parent directory from which the user entered into the snapshot.

Claims (55)

1. A method of determining whether to use Copy-On-Write (COW) or Point-In-Time-Copy (PITC) for storing multiple versions of at least a portion of a file, comprising:

receiving a request to modify a portion of a file;

determining, via execution of instructions by a processor, whether to perform a Point-In-Time-Copy operation, wherein determining whether to perform a Point-In -Time-Copy operation comprises determining whether performing a Point-In-Time-Copy operation would fragment the current version of the file;

if it is determined to perform a Point-In-Time-Copy, performing a Point-In-Time Copy operation on the portion of the file; and

if it is determined not to perform a Point-In-Time-Copy, performing a Copy-On-Write operation on the portion of the file.

2. The method of claim 1 , wherein the portion of the file is the entire file.

3. The method of claim 1 , wherein the request to modify is a request to delete.

4. The method of claim 1 , wherein the request to modify is a request to overwrite.

5. The method of claim 1 , wherein determining whether to perform a Point-In-Time-Copy additionally comprises determining whether a condition has been specified to use a Point-In-Time-Copy.

6. The method of claim 1 , wherein the Point-In-Time-Copy operation comprises allocating a new data block assigned to the current version of the file, transferring a corresponding data block from the current version of the file to a previous version of the file, and overwriting the new data block.

7. The method of claim 1 , wherein the Copy-On-Write operation comprises allocating a new data block assigned to the previous version of the file, reading a value from a corresponding data block from the current version of the file, writing the value to the new data block, and overwriting the corresponding data block from the current version of the file.

8. The method of claim 1 , wherein determining whether to perform a Point-In-Time-Copy additionally comprises determining at least one of the following: whether the entire file is being deleted, whether the entire file is being overwritten, whether any blocks in the file have had a Copy-On-Write operation performed on them already, whether an entire cluster of contiguous blocks is being deleted, and whether an entire cluster of contiguous blocks is being overwritten.

9. The method of claim 8 , wherein the number of contiguous blocks is sixteen.

10. The method of claim 1 , wherein determining whether to perform a Point-In-Time-Copy additionally comprises:

determining whether the portion of the file is the entire file;

if the portion of the file is the entire file, determining whether the entire file is being deleted or overwritten;

if the entire file is being deleted or overwritten, determining whether any blocks of the file have already had a Copy-On-Write operation performed on them; and

if none of the blocks of the file have already had a Copy-On-Write operation performed on them, concluding that a Point-In-Time-Copy operation may be performed on the portion.

11. The method of claim 1 , wherein determining to perform a Point-In-Time-Copy additionally comprises:

if the portion of the file is a contiguous portion of the file, determining whether the contiguous portion is being entirely deleted or overwritten;

if the contiguous portion is being entirely deleted or overwritten, determining whether any blocks of the contiguous portion have already had a Copy-On-Write operation performed on them; and

if none of the blocks of the contiguous portion have already had a Copy-On-Write operation performed on them, concluding that a Point-In-Time-Copy operation may be performed on the contiguous portion.

12. The method of claim 11 , wherein the contiguous portion is a sixteen block cluster.

13. A non-transitory computer-readable storage medium having instructions stored thereon for determining, when the instructions are executed, whether to use Copy-On-Write (COW) or Point-In-Time-Copy (PITC) for storing multiple versions of at least a portion of a file, the instructions comprising:

receiving a request to modify a portion of a file;

determining whether to perform a Point-In-Time-Copy operation, wherein determining whether to perform a Point-In-Time-Copy operation comprises determining performing a Point-In-Time-Copy operation would fragment the current version of the file;

if it is determined to perform a Point-In-Time-Copy, performing a Point-In-Time Copy operation on the portion of the file; and

if it is determined not to perform a Point-In-Time-Copy, performing a Copy-On-Write operation on the portion of the file.

14. A storage module having instructions stored thereon for determining, when the instructions are executed, whether to use Copy-On-Write (COW) or Point-In-Time-Copy (PITC) for storing multiple versions of at least a portion of a file, the storage module comprising:

a computer-readable medium having instructions stored thereon;

a processor capable of executing the instructions; and

a memory system for storing a copy of at least a portion of a file according to the instructions executed on the processor;

wherein the instructions comprise:

receiving a request to modify a portion of a file;

determining whether to perform a Point-In-Time-Copy operation, wherein determining whether to perform a Point-In-Time-Copy operation comprises determining whether performing a Point-In-Time-Copy operation would fragment the current version of the file;

if it is determined to perform a Point-In-Time-Copy, performing a Point-In-Time Copy operation on the portion of the file; and

if it is determined not to perform a Point-In-Time-Copy, performing a Copy-On-Write operation on the portion of the file.

15. The storage module of claim 14 , wherein the portion of the file is the entire file.

16. The storage module of claim 14 , wherein the request to modify is a request to delete.

17. The storage module of claim 14 , wherein the request to modify is a request to overwrite.

18. The storage module of claim 14 , wherein determining whether to perform a Point-In-Time-Copy additionally comprises determining whether a condition has been specified to use a Point-In-Time-Copy.

19. The storage module of claim 14 , wherein the Point-In-Time-Copy operation comprises allocating a new data block assigned to the current version of the file, transferring a corresponding data block from the current version of the file to a previous version of the file, and overwriting the new data block.

20. The storage module of claim 14 , wherein the Copy-On-Write operation comprises allocating a new data block assigned to the previous version of the file, reading a value from a corresponding data block from the current version of the file, writing the value to the new data block, and overwriting the corresponding data block from the current version of the file.

21. The storage module of claim 14 , wherein determining whether to perform a Point-In-Time-Copy additionally comprises determining at least one of the following: whether the entire file is being deleted, whether the entire file is being overwritten, whether any blocks in the file have had a Copy-On-Write operation performed on them already, whether an entire cluster of contiguous blocks is being deleted, and whether an entire cluster of contiguous blocks is being overwritten.

22. The storage module of claim 21 , wherein the contiguous number of blocks is sixteen.

23. The storage module of claim 14 , wherein determining whether to perform a Point-In-Time-Copy additionally comprises:

determining whether the portion of the file is the entire file;

if the portion of the file is the entire file, determining whether the entire file is being deleted or overwritten;

if the entire file is being deleted or overwritten, determining whether any blocks of the file have already had a Copy-On-Write operation performed on them; and

if none of the blocks of the file have already had a Copy-On-Write operation performed on them, concluding that a Point-In-Time-Copy operation may be performed on the portion.

24. The storage module of claim 14 , wherein determining whether to perform a Point-In-Time-Copy additionally comprises:

if the portion of the file is a contiguous portion of the file, determining whether the contiguous portion is being entirely deleted or overwritten;

if the contiguous portion is being entirely deleted or overwritten, determining whether any blocks of the contiguous portion have already had a Copy-On-Write operation performed on them; and

if none of the blocks of the contiguous portion have already had a Copy-On-Write operation performed on them, concluding that a Point-In-Time-Copy operation may be performed on the contiguous portion.

25. The storage module of claim 24 , wherein the contiguous portion is a sixteen block cluster.

Assignments (13)
RELEASE OF SECURITY INTEREST IN PATENTS PREVIOUSLY RECORDED AT REEL/FRAME (053546/0001) Recorded Jun 23, 2022
From: THE BANK OF NEW YORK MELLON TRUST COMPANY, N.A., AS NOTES COLLATERAL AGENT
To: DELL MARKETING L.P. (ON BEHALF OF ITSELF AND AS SUCCESSOR-IN-INTEREST TO CREDANT TECHNOLOGIES, INC.); DELL INTERNATIONAL L.L.C.; DELL PRODUCTS L.P.; DELL USA L.P.; EMC CORPORATION; DELL MARKETING CORPORATION (SUCCESSOR-IN-INTEREST TO FORCE10 NETWORKS, INC. AND WYSE TECHNOLOGY L.L.C.); EMC IP HOLDING COMPANY LLC
Reel/Frame 071642/0001 →
RELEASE OF SECURITY INTEREST IN PATENTS PREVIOUSLY RECORDED AT REEL/FRAME (045455/0001) Recorded May 20, 2022
From: THE BANK OF NEW YORK MELLON TRUST COMPANY, N.A., AS NOTES COLLATERAL AGENT
To: DELL MARKETING CORPORATION (SUCCESSOR-IN-INTEREST TO ASAP SOFTWARE EXPRESS, INC.); DELL MARKETING L.P. (ON BEHALF OF ITSELF AND AS SUCCESSOR-IN-INTEREST TO CREDANT TECHNOLOGIES, INC.); DELL USA L.P.; DELL INTERNATIONAL L.L.C.; DELL PRODUCTS L.P.; DELL MARKETING CORPORATION (SUCCESSOR-IN-INTEREST TO FORCE10 NETWORKS, INC. AND WYSE TECHNOLOGY L.L.C.); EMC CORPORATION (ON BEHALF OF ITSELF AND AS SUCCESSOR-IN-INTEREST TO MAGINATICS LLC); EMC IP HOLDING COMPANY LLC (ON BEHALF OF ITSELF AND AS SUCCESSOR-IN-INTEREST TO MOZY, INC.); SCALEIO LLC
Reel/Frame 061753/0001 →
RELEASE OF SECURITY INTEREST IN PATENTS PREVIOUSLY RECORDED AT REEL/FRAME (040136/0001) Recorded Apr 26, 2022
From: THE BANK OF NEW YORK MELLON TRUST COMPANY, N.A., AS NOTES COLLATERAL AGENT
To: DELL MARKETING CORPORATION (SUCCESSOR-IN-INTEREST TO ASAP SOFTWARE EXPRESS, INC.); DELL MARKETING L.P. (ON BEHALF OF ITSELF AND AS SUCCESSOR-IN-INTEREST TO CREDANT TECHNOLOGIES, INC.); DELL USA L.P.; DELL INTERNATIONAL L.L.C.; DELL PRODUCTS L.P.; DELL MARKETING CORPORATION (SUCCESSOR-IN-INTEREST TO FORCE10 NETWORKS, INC. AND WYSE TECHNOLOGY L.L.C.); EMC CORPORATION (ON BEHALF OF ITSELF AND AS SUCCESSOR-IN-INTEREST TO MAGINATICS LLC); EMC IP HOLDING COMPANY LLC (ON BEHALF OF ITSELF AND AS SUCCESSOR-IN-INTEREST TO MOZY, INC.); SCALEIO LLC
Reel/Frame 061324/0001 →
RELEASE OF SECURITY INTEREST Recorded Nov 3, 2021
From: CREDIT SUISSE AG, CAYMAN ISLANDS BRANCH
To: ASAP SOFTWARE EXPRESS, INC.; AVENTAIL LLC; CREDANT TECHNOLOGIES, INC.; DELL USA L.P.; DELL INTERNATIONAL, L.L.C.; DELL MARKETING L.P.; DELL PRODUCTS L.P.; DELL SOFTWARE INC.; DELL SYSTEMS CORPORATION; EMC CORPORATION; EMC IP HOLDING COMPANY LLC; FORCE10 NETWORKS, INC.; MAGINATICS LLC; MOZY, INC.; SCALEIO LLC; WYSE TECHNOLOGY L.L.C.
Reel/Frame 058216/0001 →
SECURITY AGREEMENT Recorded Apr 22, 2020
From: CREDANT TECHNOLOGIES INC.; DELL INTERNATIONAL L.L.C.; DELL MARKETING L.P.; DELL PRODUCTS L.P.; DELL USA L.P.; EMC CORPORATION; FORCE10 NETWORKS, INC.; WYSE TECHNOLOGY L.L.C.; EMC IP HOLDING COMPANY LLC
To: THE BANK OF NEW YORK MELLON TRUST COMPANY, N.A.
Reel/Frame 053546/0001 →
SECURITY AGREEMENT Recorded Mar 21, 2019
From: CREDANT TECHNOLOGIES, INC.; DELL INTERNATIONAL L.L.C.; DELL MARKETING L.P.; DELL PRODUCTS L.P.; DELL USA L.P.; EMC CORPORATION; FORCE10 NETWORKS, INC.; WYSE TECHNOLOGY L.L.C.; EMC IP HOLDING COMPANY LLC
To: THE BANK OF NEW YORK MELLON TRUST COMPANY, N.A.
Reel/Frame 049452/0223 →
ASSIGNMENT OF ASSIGNOR'S INTEREST Recorded Sep 29, 2016
From: EMC CORPORATION
To: EMC IP HOLDING COMPANY LLC
Reel/Frame 040203/0001 →
SECURITY AGREEMENT Recorded Sep 21, 2016
From: ASAP SOFTWARE EXPRESS, INC.; AVENTAIL LLC; CREDANT TECHNOLOGIES, INC.; DELL USA L.P.; DELL INTERNATIONAL L.L.C.; DELL MARKETING L.P.; DELL PRODUCTS L.P.; DELL SOFTWARE INC.; DELL SYSTEMS CORPORATION; EMC CORPORATION; EMC IP HOLDING COMPANY LLC; FORCE10 NETWORKS, INC.; MAGINATICS LLC; MOZY, INC.; SCALEIO LLC; SPANNING CLOUD APPS LLC; WYSE TECHNOLOGY L.L.C.
To: THE BANK OF NEW YORK MELLON TRUST COMPANY, N.A., AS NOTES COLLATERAL AGENT
Reel/Frame 040136/0001 →
SECURITY AGREEMENT Recorded Sep 21, 2016
From: ASAP SOFTWARE EXPRESS, INC.; AVENTAIL LLC; CREDANT TECHNOLOGIES, INC.; DELL USA L.P.; DELL INTERNATIONAL L.L.C.; DELL MARKETING L.P.; DELL PRODUCTS L.P.; DELL SOFTWARE INC.; DELL SYSTEMS CORPORATION; EMC CORPORATION; EMC IP HOLDING COMPANY LLC; FORCE10 NETWORKS, INC.; MAGINATICS LLC; MOZY, INC.; SCALEIO LLC; SPANNING CLOUD APPS LLC; WYSE TECHNOLOGY L.L.C.
To: CREDIT SUISSE AG, CAYMAN ISLANDS BRANCH, AS COLLATERAL AGENT
Reel/Frame 040134/0001 →
ASSIGNMENT OF ASSIGNOR'S INTEREST Recorded Apr 6, 2011
From: IVY HOLDING, INC.
To: EMC CORPORATION
Reel/Frame 026083/0036 →
ASSIGNMENT OF ASSIGNOR'S INTEREST Recorded Apr 4, 2011
From: ISILON SYSTEMS LLC
To: IVY HOLDING, INC.
Reel/Frame 026069/0925 →
MERGER Recorded Mar 31, 2011
From: ISILON SYSTEMS, INC.
To: ISILON SYSTEMS LLC
Reel/Frame 026066/0785 →
ASSIGNMENT OF ASSIGNOR'S INTEREST Recorded Nov 14, 2007
From: SCHACK, DARREN P.; LEMAR, ERIC M.; FACHAN, NEAL T.
To: ISILON SYSTEMS, INC.
Reel/Frame 020115/0837 →