System and method for storing redundant information

Information

  • Patent Grant
  • 10922006
  • Patent Number
    10,922,006
  • Date Filed
    Monday, August 27, 2018
    5 years ago
  • Date Issued
    Tuesday, February 16, 2021
    3 years ago
Abstract
A method and system for reducing storage requirements and speeding up storage operations by reducing the storage of redundant data includes receiving a request that identifies one or more data objects to which to apply a storage operation. For each data object, the storage system determines if the data object contains data that matches another data object to which the storage operation was previously applied. If the data objects do not match, then the storage system performs the storage operation in a usual manner. However, if the data objects do match, then the storage system may avoid performing the storage operation.
Description
BACKGROUND

Computer systems contain large amounts of information. This information includes personal information, such as financial information, customer/client/patient contact information, audio/visual information, and much more. This information also includes information related to the correct operation of the computer system, such as operating system files, application files, user settings, and so on. With the increased reliance on computer systems to store critical information, the importance of protecting information has grown. Traditional storage systems receive an identification of a file to protect, then create one or more secondary copies, such as backup files, containing the contents of the file. These secondary copies can then later be used to restore the original data should anything happen to the original data.


In corporate environments, protecting information is generally part of a routine process that is performed for many computer systems within an organization. For example, a company might back up critical computing systems related to e-commerce such as databases, file servers, web servers, and so on. The company may also protect computing systems used by each of its employees, such as those used by an accounting department, marketing department, engineering, and so forth.


Although each computer system may contain certain unique information, many systems may contain very similar information. For example, although a computing system used by a marketing employee and another computing system used by an engineering employee will generally contain unique information created by each employee in the course of their work, both computing systems will likely have the same operating system installed, with thousands of identical or similar files used by the operating system. Similarly, both computing systems will likely have at least some similar application programs installed, such as a word processor, spreadsheet, Internet browser, and so on. Both systems may also have similar corporate information. For example, each employee may have an electronic copy of an employee manual distributed by the company. Information other than files may also be identical or similar between systems. For example, user settings and preferences may have similar default values on each system and application programs may contain similar templates on each system that are stored as application-specific information. As another example, several employees may have received a copy of the same email, and the email may be stored in each employee's electronic mailbox.


As a result of the amount of redundant information in an organization, secondary copies of an organization's information are often very large and can require the purchase of expensive storage devices and storage media. The restoration of data in the event of data loss is also slowed by the large size of the secondary copies. As the size of secondary copies increase, locating and restoring information requires more actions to be taken to restore information. For example, it may be necessary to search many tapes or other media to find the correct secondary copy. The great quantity of storage media, such as tapes, may mean that some secondary storage media has been moved offsite such that it must first be retrieved before information can be recovered from it. Each of these factors increases the cost of protecting information and the time required to recover information in the event of data loss. Quick recovery of information is often critical to today's businesses, and any additional delay could affect business operations and customers' satisfaction with the business.


There is a need for a system that overcomes the above problems, as well as one that provides additional benefits.





BRIEF DESCRIPTION OF THE DRAWINGS


FIG. 1 is a block diagram that illustrates components of a system in one embodiment of the invention.



FIG. 2 is a block diagram that illustrates a flow of data during a storage operation, in one embodiment.



FIG. 3 is a block diagram that shows a typical arrangement of the storage system in an enterprise, in one embodiment.



FIG. 4 is a flow diagram that illustrates processing of a storage operation manager component of the system in one embodiment.



FIG. 5 is a flow diagram that illustrates processing of the system to determine whether a file is unique, in one embodiment.



FIG. 6 is a flow diagram that illustrates processing of the storage operation component to restore data, in one embodiment.



FIG. 7 illustrates the process of storing data from three clients first to single-instanced random access media and then to sequential media.



FIG. 8A is a data structure that illustrates a layout of storage data on a tape or other sequential media, in one embodiment.



FIG. 8B is a data structure that illustrates a type of data stored in each entry of FIG. 8A, in one embodiment.



FIG. 9 is a table that illustrates information stored by a single instance database component, in one embodiment.



FIG. 10 is a flow diagram that illustrates processing of the storage operation component to restore date from sequential media, in one embodiment.





In the drawings, the same reference numbers and acronyms identify elements or acts with the same or similar functionality for ease of understanding and convenience. To easily identify the discussion of any particular element or act, the most significant digit or digits in a reference number refer to the Figure number in which that element is first introduced (e.g., element 604 is first introduced and discussed with respect to FIG. 6).


DETAILED DESCRIPTION

The headings provided herein are for convenience only and do not necessarily affect the scope or meaning of the claimed invention.


Overview


A method and system for reducing storage requirements and speeding up storage operations by reducing storage of redundant data, referred to as single instancing, first receives a request that identifies one or more data objects on which to perform a storage operation. A storage operation can include many different types of operations, such as a backup, copy, snapshot, disk image, and so on. For example, one storage operation is a backup of data, and the request may specify the location of data objects to be backed up, such as a directory of files, and a location to store backup data, such as a network file server. A data object can include many different types of data, such as files, email, application-specific data (e.g., documents, spreadsheets, databases, and so on), configuration settings, and so forth. For each data object, the storage system determines if the data object contains data that matches another data object that was the subject of a previous storage operation. For example, if the storage operation is a backup of data files, then the storage system determines if backup data from a previous backup operation already contains a particular file to be backed up by the current operation. If the data objects do not match, then the storage system performs the storage operation in a usual manner. However, if the data objects do match, then the storage system may avoid performing the storage operation. For example, in the case of a backup, the storage system may only store the files that are not already contained in backup data from a previous backup operation. For additional instances of the file, the storage system may store metadata describing the presence of the additional instances without storing the additional instances themselves. For example, if the same file is discovered in two different directories as part of a storage operation, then the first instance of the file may be stored in total and a placeholder or pointer may be stored representing the second instance of the file rather than storing the second instance of the file itself. The data objects may comprise any type of electronic information or object that supports object-level recovery, such as files, emails, attachments, and application data. Thus, the storage system reduces the amount of storage required to perform the storage operation and saves time by reducing the amount of data for which storage operations are performed to satisfy a storage request.


Single instancing presents a number of challenges when using sequential media. Sequential media includes media such as tapes that are typically accessed (e.g., read and written) sequentially. Sequential media is contrasted with random-access media, such as disk drives, flash drives, and optical media, that can be accessed randomly. One difficulty when using sequential media is that seeking to a particular location takes longer than random-access media. For example, while a hard drive may have an access time of several milliseconds, sequential media may have an access time of several seconds to several minutes. Therefore, it is often desirable to lay out data on sequential media in a way that reduces or eliminates dependencies among the data on different parts of the media. Single instancing, on the other hand, creates dependencies between the original instance of a file and additional instances that reference the original instance of the file. Thus, the storage system provides special techniques for storing and retrieving single instance data on sequential media.


The invention will now be described with respect to various embodiments. The following description provides specific details for a thorough understanding of, and enabling description for, these embodiments of the invention. However, one skilled in the art will understand that the invention may be practiced without these details. In other instances, well-known structures and functions have not been shown or described in detail to avoid unnecessarily obscuring the description of the embodiments of the invention.


The terminology used in the description presented below is intended to be interpreted in its broadest reasonable manner, even though it is being used in conjunction with a detailed description of certain specific embodiments of the invention. Certain terms may even be emphasized below; however, any terminology intended to be interpreted in any restricted manner will be overtly and specifically defined as such in this Detailed Description section.


Determining Data Object Similarity


Various methods of determining if one data object is similar (e.g., two instances of the same data) to another data object will now be described. However, those of ordinary skill in the art will recognize that many other methods besides those described here can be used to achieve similar results.


In some embodiments, the storage system determines if two data objects are similar by performing a binary comparison. For example, a first file can be compared byte by byte with a second file. If each byte of data in each file matches, then the two files are identical and therefore similar. Otherwise, the two files do not match and are not treated as similar.


In some embodiments, the storage system determines if two data objects are similar by creating a digest or fingerprint of the data contained in each data object. For example, as storage operations are performed, the storage system may perform a hash on each file to create a digest of the file. The digest of the file can be compared with stored digests created for other files. If the digest of two files match, then the system may consider the files to be identical. Any suitable hashing algorithm can be used, such as Message Digest version 5 (MD5).


In some embodiments, the storage system may store additional information along with a data object digest. A hash algorithm is generally selected that has a low likelihood of hash collisions, which occur when two data objects containing different data have the same hash value. However, hash collisions do occur and additional information can be used to substantially reduce the likelihood of these collisions. For example, for files the system may store the file size as additional information. When two data objects are compared to determine their similarity, the digests are compared as well as the additional information. If both the digests and the additional information match are the data objects considered identical. For example, for two files if the hash value and size do not match, then the files are not considered identical even though the hash values alone may match. Some information, such as the file name for a file, may not be included in the digest so that the storage system will consider two files having the same data but different names identical. Even though the names of files or other information may differ, the hash value will be the same and the storage system can avoid storing the redundant data. The storage system can also perform other operations after hashing is complete, such as encrypting the data. By hashing the data before encryption or other operations that modify the data are performed, the storage system allows single instancing to be performed at some time later on the modified data. For example, if files are initially copied from a client system to a first copy, then hashed, and then encrypted to create a second copy, it is still possible for the storage system to single instance the second copy and remove redundant instances of data based on the pre-generated hashes without having to first decrypt the data to restore its original content.


In some embodiments, the storage system may operate specially on data objects that are similar, but not identical. For example, many computing systems in an organization may have word processors with similar document templates, but each user may have slightly modified the document templates to match that user's preferences. The storage system may compare the document templates of two users and determine which portions are the same and which portions are different. Then, the system may treat the portions that are the same as described above, avoiding redundant storage of the identical portions, while storing only the portions that are different. As another example, several users may have received an email and replied to the email. The replies may contain some new text, but much of the text may be the contents of the original message. In this example, the storage system may only store the similar text once and store the new text for each user's reply. For example, the system may break the email up into blocks, and compare blocks within the email message to determine which are similar.


Single Instancing—Auxiliary Copies


Reducing or eliminating redundant instances of data resulting from a storage operation is sometimes referred to here as “single instancing,” because what would traditionally be stored as many instances of the same data is reduced to as few as one. Redundant instances may be detected and reduced at several locations or times throughout the operation of the system that will now be described. These embodiments are provided only as examples, and are not intended to be an exhaustive list of the way in which the system can be implemented.


In some embodiments, the storage system performs single instancing of data at the system containing or originally generating the data, such as a client system. For example, a client system that is the source of data that is the subject of a storage operation may receive a request from the storage system to provide a hash value of each file to be included in the storage operation. The client uses a hashing algorithm to produce a hash of the files or other data objects requested by the storage system. Alternatively, the client may generate hash values itself for each file that is stored on the client system on an ongoing or other basis. When a storage operation is requested, the storage system receives the hash values from the client and determines if it is already aware of a file with a hash value matching that of one provided by the client system. For example, the storage system may check an index of hashes received from client systems and look for matches with the hash value or values received from the client. If the storage system is already aware of a similar file or matching file, then the client system does not even need to send the redundant file to the secondary storage location or destination. Thus, the storage system may send a follow up request to the client system that specifies a list of files that are new to the storage system. Then, the client sends the full content of the specified files.


In some embodiments, the storage system performs single instancing of data at the subject system of a storage operation. In the example of a storage operation, the storage system may request that a client system send one or more files stored on the client system to a server system (e.g., a media agent). Then, the server system checks each file (e.g., by comparing a hash of the data) received from the client system to determine if an instance of the received file has already been stored on the server system. Additional instances of a received file that the storage system has already stored on the server system can be discarded, whereas new files can be stored for the first time and can be indexed on or tracked by the server system. This alternative method eliminates the resources used by the client system for computing digests or hash values, and does not require the client system to be modified from the configuration used for a traditional storage operation. However, additional network resources may be consumed by the extra copying, and the work of computing digests or hash values is shifted to the server system.


In some embodiments, the storage system performs single instancing on a copy of data created by a previously performed storage operation. For example, the storage system may copy data from a primary location to a secondary location, and then perform single instancing on the secondary copy of the data. The storage system may create many copies of data, sometimes referred to as secondary or auxiliary copies, as part of an organization's data handling plan, and single instancing may be performed at any stage of the process on any of the copies. The storage system may process the copied data, determine which files or other data objects are redundant with other data in the copy or with other copies of the data, and then save a new copy of the data that does not contain the redundant information. In this way, a backup server or other system need not be modified to reduce storage requirements, but the organization still benefits from single instancing by reducing the storage requirements later in the process, such as before backup data is stored on tape or shipped offsite for storage. As another example, the system may be configured to receive backup data created by another system and create a single instanced copy of the data that is smaller in size. For example, the system may be configured to process copies of data from popular data storage applications and reduce the size of the copies of data. For example, the data from the other system may be in a different format. The system may contain agents capable of parsing the data in its original format and processing it into a more usable format, and then single instancing the data. This allows an organization to reduce the storage requirements for data that may have been copied or backed up a long time ago.


In some embodiments, the storage system or other system performs additional operations on the data after single instancing has occurred. For example, backup data being stored offsite may be encrypted to prevent unauthorized parties from accessing the data. The data may also be compressed to further reduce its size. In this way, the storage system performs the additional operations more efficiently, because there is less data on which to perform the operation after redundant data has been reduced or eliminated.


Storing Single Instance Data


Single instance data may be stored in a variety of different ways. In some embodiments, single instance data may be stored in folders and files just like other, non-single instanced or file system data. When a first folder contains a file that is already present in another folder, the first folder may contain a reference, pointer, or path to the file, or a stub file that contains information about where the file containing the actual data can be located. For example, two folders A and B may each contain a file X. Folder A may contain the actual file X, while folder B may contain a stub of file X with file attributes or other supplemental information that indicates that the stub is a reference to the instance of file X located in folder A. The fact that the file in folder B is a stub may be transparent to an application. For example, a file system filter driver may detect the stub and provide the actual file data from folder A to any application that attempts to access the file in folder B. Thus, the storage system preserves the organization of the data, but eliminates the redundant instances of the data, thus saving storage space and time consumed performing additional storage operations on the data.


In some embodiments, the single instance of the file may contain a reference count or other count to track the number of other instances that are referring to the file. Alternatively, an index of files stored by the storage system may track the references to any particular single instanced file. In the example above, the file X in folder A may contain a reference count of two indicating that the file belongs in two locations, folder A and folder B. The storage system may use the reference count to prevent the file from being deleted or otherwise made unavailable while there are still outstanding references to the file.


Single Instancing—Sequential Media


Tapes and other sequential or removable media are often used for backup and other storage operations. Sequential media present special challenges for storage systems because the drawbacks of accessing data out of sequence are often much higher than accessing the data in sequence. For example, with tape media it can be very fast to read data from the beginning of the tape, then the middle, then the end (i.e., sequentially), but much slower to read data first from the end, then the middle, then the beginning (i.e., randomly or out of sequence). Therefore, it is often a goal of storage systems to structure data stored to sequential media in such a way that the data can be accessed sequentially.


In some embodiments, the storage system prepares single instance copies of data destined for sequential media using intermediate (e.g., random access) media. For example, the storage system may perform a single instance backup to a hard drive, and then process the data stored on the hard drive to prepare it for writing to tape. The data may be structured so that the first instance of each file contains the file data and is stored earlier on the tape than redundant references of the file that reference the first instance (e.g., through a stub or pointer to the first instance). This allows any redundant instances of the file to be read after the actual instance of the file using a sequential read operation. The redundant instances may contain information needed to locate the first instance such as the offset on the current tape, or the identifier of another tape if the backup data set spans multiple tapes.


In some embodiments, the storage system uses a similar technique when restoring data. For example, the storage system may restore data first to an intermediate, random access media, such as a hard drive, where the data can be recreated in its original form, including resolving references to redundant instances of the data, before being copied to a subject system. Alternatively, the storage system may maintain the data in its single instanced form and handle requests for the data by deinstancing the data upon request. For example, the system may copy the first instance of the file to a first directory, and then when a second directory references the file the system copies the file from the first directory based on information stored in a pointer or stub describing the contents of second directory. These and other techniques for storing single instance data to sequential media are described further below with reference to the figures.


Figures


The details of the storage system described above will now be illustrated with reference to the figures. Unless described otherwise below, aspects of the invention may be practiced with conventional data processing systems. Thus, the construction and operation of the various blocks shown in FIG. 1 may be of conventional design, and need not be described in further detail herein to make and use the invention, because such blocks will be understood by those skilled in the relevant art. One skilled in the relevant art can readily make any modifications necessary to the blocks in FIG. 1 (or other embodiments or figures) based on the detailed description provided herein.



FIG. 1 is a block diagram that illustrates components of the system, in one embodiment. The storage system 100 contains a file identification component 110, an identifier generation component 120, an identifier comparison component 130, a single instance database component 140, a restored file cache component 150, and a storage operation manager component 160. The file identification component 110 identifies files or other data objects, such as in response to a storage operation. The file identification component 110 may retrieve additional information related to a data object, such as its size, used by the system to uniquely identify the data object. The identifier generation component 120 generates a summary, or digest, of a file or other data object that is used to determine if another data object already stored by the system matches the data object used to generate the digest. The identifier comparison component 130 performs comparisons of digests of various data objects to determine if the data objects contain similar data.


The single instance database component 140 is a data store that contains entries identifying data objects managed by the storage system 100, and may also contain supplemental information such as a digest, path, location, reference count, or file size. The restored file cache component 150 optionally provides an intermediate location used by the system 100 during a restore operation to hold instances of files for which additional references may need to be restored. For example, during a restore operation, the storage system may restore files to the cache and then transfer the files to a subject location of the restore operation. When the storage system encounters a reference to a single instance copy of a data object, the system may consult the restored file cache component 150 or an index to determine if the data object is present in the cache before attempting to restore the data object from another location, such as a tape. The storage operation manager component 160 coordinates storage operations and invokes the other components of the storage system 100 as needed to perform requested storage operations. For example, the storage manager component 160 may include an application used by an administrator to manage the system. The storage manager component 160 may also maintain indexes of the data objects and each of the references to those data objects through the system, as well as pending operations on the data objects that are part of an organization's data management plan.



FIG. 1 and the discussion herein provides a brief, general description of a suitable computing environment in which the invention can be implemented. Although not required, aspects of the invention are described in the general context of computer-executable instructions, such as routines executed by a general-purpose computer, e.g., a server computer, wireless device or personal computer. Those skilled in the relevant art will appreciate that the invention can be practiced with other communications, data processing, or computer system configurations, including: Internet appliances, hand-held devices (including personal digital assistants (PDAs)), wearable computers, all manner of cellular or mobile phones, multi-processor systems, microprocessor-based or programmable consumer electronics, set-top boxes, network PCs, mini-computers, mainframe computers, and the like. Indeed, the terms “computer,” “host,” and “host computer” are generally used interchangeably herein, and refer to any of the above devices and systems, as well as any data processor.


Aspects of the invention can be embodied in a special purpose computer or data processor that is specifically programmed, configured, or constructed to perform one or more of the computer-executable instructions explained in detail herein. Aspects of the invention can also be practiced in distributed computing environments where tasks or modules are performed by remote processing devices, which are linked through a communications network, such as a Local Area Network (LAN), Wide Area Network (WAN), or the Internet. In a distributed computing environment, program modules may be located in both local and remote memory storage devices.


Aspects of the invention may be stored or distributed on computer-readable media, including magnetically or optically readable computer discs, hard-wired or preprogrammed chips (e.g., EEPROM semiconductor chips), nanotechnology memory, biological memory, or other data storage media. Indeed, computer implemented instructions, data structures, screen displays, and other data under aspects of the invention may be distributed over the Internet or over other networks (including wireless networks), on a propagated signal on a propagation medium (e.g., an electromagnetic wave(s), a sound wave, etc.) over a period of time, or they may be provided on any analog or digital network (packet switched, circuit switched, or other scheme). Those skilled in the relevant art will recognize that portions of the invention may reside on a server computer, while corresponding portions reside on a client computer such as a mobile or portable device, and thus, while certain hardware platforms are described herein, aspects of the invention are equally applicable to nodes on a network.



FIG. 2 is a block diagram that illustrates the flow of data during a storage operation, in one embodiment. Data is initially stored on a server 210 or other source of data. A storage policy 220 or other configuration information specifies a storage operation to be performed on the data. For example, the storage policy 220 may specify that the data stored on the server 210 is to be backed up daily to tape. The storage policy 220 causes the backup to occur, which creates the data copy 230. The data copy 230 may contain many redundant files or other data objects. A media agent 240 manages the data copy 230, and creates a single instance copy 250. The single instance copy 250 is a copy of source data in which the storage system has removed at least some of the redundant data objects. The media agent 240 uses the methods described herein to eliminate redundant instances of files contained in the data copy 230, and to produce the single instance copy 250. The single instance copy 250 may then be stored on tape or other media.


A media agent 240 is generally a software module that conducts data, as directed by the storage operation manager 160, between a client computer and one or more storage devices such as a tape library, a magnetic media storage device, an optical media storage device, or other storage device. The media agent 240 is communicatively coupled with and controls the storage device. For example, the media agent 240 might instruct the storage device to use a robotic arm or other means to load or eject a media cartridge, and to archive, migrate, or restore application specific data. The media agent 240 generally communicates with the storage device via a local bus such as a SCSI adaptor. In some embodiments, the storage device is communicatively coupled to the media agent 240 via a Storage Area Network (“SAN”).


Each media agent 240 maintains an index cache which stores index data the system generates during backup, migration, and restore storage operations. For example, storage operations for Microsoft Exchange data generate index data. Index data provides the system with an efficient mechanism for locating user files for recovery operations. This index data is generally stored with the data backed up to the storage device, and the media agent 240 that controls the storage operation also writes an additional copy of the index data to its index cache. The data in the media agent 240 index cache is thus readily available to the system for use in storage operations and other activities without having to be first retrieved from the storage device.


A storage policy 220 is generally a data structure or other information which includes a set of preferences and other storage criteria for performing a storage operation. The preferences and storage criteria may include, but are not limited to: a storage location, relationships between system components, network pathway to utilize, retention policies, data characteristics, compression or encryption requirements, preferred system components to utilize in a storage operation, and other criteria relating to a storage operation. A storage policy 220 may be stored to a media agent index, to archive media as metadata for use in restore operations or other storage operations, or to other locations or components of the system.



FIG. 3 is a block diagram that shows a typical arrangement of the storage system in an enterprise, in one embodiment. A typical enterprise contains many computer systems, such as computers 300 and 310. A computer system 300 contains a common file 302 that is common to systems throughout the organization. For example common file 302 may be an operating system file that all of the computer systems running a particular operating system contain. The computer system 300 also contains a unique file A 304 that is unique to computer system 300. Similarly, computer system 310 contains another instance of the common file 312 and a unique file B 314 that is only stored on computer system 310. A media agent 320 manages storage operations in the enterprise described by storage policies, such as nightly backups of data stored on computer systems 300 and 310. The media agent 320 stores data in a single instance database 330 such that common files are only stored once. For example, the single instance database 330 contains a common file copy 332 that contains the same data as the instances of the common file 302 and 312 stored by computer systems 300 and 310. The single instance database 330 also contains a copy of unique file A 334 and unique file B 336.



FIGS. 4-6 and 10 are representative flow diagrams that depict processes used in some embodiments. These flow diagrams do not show all functions or exchanges of data, but instead they provide an understanding of commands and data exchanged under the system. Those skilled in the relevant art will recognize that some functions or exchange of commands and data may be repeated, varied, omitted, or supplemented, and other (less important) aspects not shown may be readily implemented.



FIG. 4 is a flow diagram that illustrates the processing of the storage manager component 160 of the system in one embodiment. The component is invoked when a storage operation that creates a copy of a file is requested. In step 410, the component identifies a file to be copied, such as based on a request to backup data. In step 420, the component determines whether the file is unique, or if the file has been copied before. For example, the component may compute a digest in the manner described herein, and compare the digest to the digests of previously copied files to determine if the file is an instance of a previously copied file. In decision step 430, if the is unique, then the component continues at step 450, else the component continues at step 440. In step 440, the component adds a reference (e.g., in an index of data managed by the system) to the already backed up instance of the file, and then completes. In step 450, the component stores the unique file. After step 450, these steps conclude.



FIG. 5 is a flow diagram that illustrates the processing of the system 100 to determine whether a file is unique, in one embodiment. These steps may be invoked by the storage operation component 160, such as when performing a storage operation as described in FIG. 4 or at other times. In step 510, the identifier generation component 120 generates a digest of a file that is the subject of the backup operation. In step 520, the file identification component 110 gathers (e.g., by querying the file system of a client) additional information about the file, such as the file's size, security information, or other attributes. In step 530, the identifier comparison component 130 (e.g., on the client or a media agent) determines if the digest of the file and any supplemental information matches that of any existing file tracked by the single instance database component 140. In decision step 540, if the files match, then the system 100 continues at step 550, otherwise the system 100 continues at step 570. In step 550, the system 100 reports to the entity that invoked the component that the file is not unique. In step 560, the system updates the digest reference count tracked by the single instance database component 140 and then concludes. In step 570, the system 100 reports to the entity that invoked the component that the file is unique. In step 580, the system 100 adds the file's digest and other information to the list of files tracked by the single instance database component 140. These steps then conclude.



FIG. 6 is a flow diagram that illustrates the processing of the storage operation component 160 to restore data, in one embodiment. The component is invoked when a request is received, for example, to restore data. In step 610, the component receives a request to restore data. In step 620, the component selects the next data object referred to by the request. For example, the request may identify 10 data objects, and the component selects the first data object on which to perform the following steps. Alternatively or additionally, the 10 data objects may have been written to tape in various orders, and the component may generate a plan for accessing the 10 data objects based on a determination of the layout of the data objects on the media. In decision step 630, if the selected data object is a reference to an instance of a file stored somewhere else, then the component continues at step 640, else the component continues at step 650. In step 640, the component locates the referenced instance of the file and continues to step 655. In step 655, the component restores the data object from the referenced instance of the file. In step 650, the component restores the file directly from the data object. In decision step 660, if there are more data objects referred to by the received request, then the component loops to block 620 to select the next data object on which to perform these steps, else the component completes.



FIG. 7 illustrates the process of storing data from three clients first to single-instanced random access media and then to sequential media. In some embodiments, the system first single instances data to random-access media, such as a magnetic disk, and then copies the single instanced data to sequential media, such as a tape. The system may create each file in a data set as one or more chunks of data, for example, stored as one on more folders on random-access media. Client 1 710 stores two files, File 1 and File 2. Client 2 720 stores two files, File 2 and File 3. Client 3 730 stores two files, File 2 and File 3. The files from each client are stored in a separate chunk on the random access media 740, which creates a separate folder for each chunk. Within the folder for the first chunk is the data for File 1 and File 2 stored by Client 1 710. This is the first time that either File 1 or File 2 has been stored on the random access media 740. When client 2 stores File 2 and File 3, the media agent checks its index to determine that File 2 already exists in chunk 1. The media agent directs the data storage operation to store an actual copy of File 3 in chunk 2, because File 3 is being stored for the first time, and a stub or dummy file for File 2 in chunk 2 that contains a pointer to the actual data for File 2 stored in chunk 1. Thus, the entire data of File 2 is only stored in Chunk 1. Chunk 1 may also contain metadata associated with File 2 that includes a reference count. Each pointer to the file then increments the reference count. The reference count may be stored with each chunk or in the index. This allows the system to determine when particular files can are no longer referenced and can be pruned from the random access media to reclaim space. Each file or data object may have header information stored in a tag header that stores any reference count or pointers to other objects, as well as supplemental information such as the date the file was first stored, an expiration date after which the file can be deleted and other storage-related information. The header information can be used to rebuild the index if the index is ever lost.


When client 3 stores its copies of File 2 and File 3, the media agent determines that both files have already been stored, and two stub files are stored in the Chunk 3 folder. The first stub represents File 2 and points back to the data in Chunk 1. The second stub represents File 3 and points back to the data in Chunk 2. At some point, an administrator or scheduled process determines that the data from the random access media should be stored to sequential media. For example, this process could take place as part of a nightly data storage routine. The system stores the data for each of the chunks to the sequential media, one after the other. Optionally, the system may store index information on the sequential media that identifies which data (e.g., files) is stored in which chunk. The chunks may be large and thus span multiple sequential media, and the index may contain information about the sequential media on which it is stored as well as other sequential media that contain data for the data set.


Alternatively or additionally, the index data may remain at the media agent and be protected separately as part of a data protection process used by the media agent. It should be noted that the index data is not needed to restore data from the chunks stored on the sequential media. To the contrary, the stub information stored within each chunk is sufficient to recreate the index data from sequential media, and can serve as an additional copy for protecting the index data.



FIGS. 8-9 illustrate some of the data structures used by the system. While the term “field” and “record” are used herein, any type of data structure can be employed. For example, relevant data can have preceding headers, or other overhead data preceding (or following) the relevant data. Alternatively, relevant data can avoid the use of any overhead data, such as headers, and simply be recognized by a certain byte or series of bytes within a serial data stream. Any number of data structures and types can be employed herein.



FIG. 8A is a data structure that illustrates the layout of storage data on a tape or other media, in one embodiment. The data structure 800 contains a series of entries that are smaller data structures, described in more detail in FIG. 8B. The data structure 800 contains header information 810 that identifies the data that follows and the media. For example, the header information 810 may store a serial number or other identifier that uniquely identifies the tape so that other tapes (or database or index entries) can reference data stored on the tape, and an index of the data stored on the tape. The index may contain information about the original file system structure where the data stored on the tape was located. The entry 820 signals the start of data from a directory X. Data following the entry 820 is placed in directory X when it is restored. The entry 830 contains information about a file A. The entry may contain header information describing details about the data, such as the size of the data, followed by the data itself. The entry 840 similarly contains information about a file B. The entry 850 signals the start of data from a directory Y. The entry 860 contains information about file C. The entry 870 is the second occurrence of file A, which is stored in both directory X and directory Y. The entry 870 stores a reference to the data of file A which is stored in entry 830, rather than a second copy of the data.



FIG. 8B is a data structure that illustrates the type of data stored in each file and directory entry of FIG. 8A, in one embodiment. The entry contains a header 880 and data 890. The header 880 contains a type 882 and a size 884. The type 882 indicates the type of entry and what kind of information is stored in the data 890, such as directory information, data, or a reference to data. The size 884 is just one type of additional information that may be contained in the header 880. For example, the header 880 may contain access control information, times when the data was last accessed or modified, and so on. The header 880 may contain additional data useful for making determinations about the data 890 that follows the header 880. If the type 882 indicates that the entry contains file data, then the data 890 contains the actual file data 892. If the type 882 indicates that the entry is a reference to data, then the data 890 contains reference data 894, such as an offset to the actual file data in an earlier location of the media or other media (e.g., in a multiple tape backup set).



FIG. 9 is a table that illustrates the information stored by the single instance database component 140, in one embodiment. The table 900 contains a hash column 910, a first location column 920, a reference count column 930, a size column 940, and a time column 950. The hash column 910 contains a digest value computed on a file tracked by the system, such as an MD5 hash. The first location column 920 contains an address that can be used to access the file data where it is actually located. For example, the address may be a network path or a URL that specifies a location of a file. The reference count column 930 indicates how many different instances or references to the data have been reported to the single instance database component 140. Alternatively or additionally, the reference count column 930 may contain a list of locations where the different instances are located. The size column 940 and time column 950 specify additional data that may be used in conjunction with the hash value 910 to uniquely identify a file or other data object, such as the file's size or last modified time. The table contains a first entry 960 with a hexadecimal hash value, a location of “\\server\c$\io.sys” that is a network path specifying a common operating system file, a reference count of 56, a size of 20,254 bytes, and a time of 1/1/2000. The table also contains a second entry 970 with a hexadecimal hash value, a location of “\\hr\employee.pdf” that may be an employee handbook, a reference count of 22, a size of 1,568,214 bytes, and a time of 9/20/2006.



FIG. 10 is a flow diagram that illustrates the processing of the storage operation component 160 to restore data from sequential media, in one embodiment. In step 1010, the component receives a request to restore data. For example, the request may indicate a single file or a computer whose data is to be restored from a tape backup. In step 1020, the component generates a list of files to be restored. In step 1030, the component resolves the location of each file. For example, if the media is tape, then the location may be a tape identifier within a set of tapes and an offset within a particular tape to the file. In the example given above, this step may identify the chunk of data associated with the computer whose data is to be restored. The chunk may contain one or more stub files rather than the actual data requested, and an additional step may be performed (not shown) to resolve any pointers within the chunk to other chunks that contain the actual data. In step 1040, the locations are sorted based on their storage location on the sequential media for sequential access. For example, data that is at the beginning of the tape will be retrieved before data at the end of the tape. Sequential access provides superior access times for sequential media. In step 1050, the component restores each file from the sequential media.


In some embodiments, the process described in FIG. 10 can operate in two different modes depending on whether index data is available in addition to the data stored on sequential media. For example, the media agent that originally stored the data to the sequential media may be available with index information about the stored data. In the first mode, the index data is used to lay out a plan for accessing the data stored on the sequentially media as described in step 1040. Thus, the index data provides an optimization whereby the actual data to be restored can be accessed directly without retrieving stub data if data is readily available elsewhere in the system. In the second mode, the system has only the information about what files or other data are stored in each chunk, determines which chunks to restore, and copies the data from each chunk to a random access media file cache. Then, the system accesses each chunk of data to determine whether the chunks contain stub data. For any stubs, the system returns to the sequential media to retrieve the actual data referenced by the stub. This method is less efficient in terms of the additional seeking of the sequential media, but requires less external infrastructure for restoring the requested data. Each mode may be preferred in different situations. For example, the first mode may be preferred when data is being restored in its original environment where the media agent and other infrastructure are available for making the restore more efficient, but the second mode may be preferred when data is being restored in a new environment that does not contain all of the infrastructure available when the data was originally stored.


As described above, in some embodiments restored data is cached on random access media, and the system may check the cache before restoring any particular item from sequential media. This allows the system to save accesses to sequential media which may be slower than random access media or cause more seeking of the sequential media based on the current position of the sequential media. The lifetime of sequential media may depend on the number of seeks that occur, so saving these accesses by first accessing the cache can have reliability benefits in addition to any speed benefits.


Because the format of data stored on sequential media is type and hardware component independent, the system can single instance data sets across heterogeneous storage media. For example, the system can single instance data across different storage media (tapes, disks, and so on) or file systems (Windows, UNIX, and so on). The system can then create archive copies of data without data redundancies using heterogeneous media. Additionally, the system can then restore and provide data to users across heterogeneous systems, because the system does not depend on the applications or file systems that created the data. For example, data originally created in a UNIX environment may be stored as an archive file that is independent of typical UNIX data types. Years later, the system may receive a request to recover this data from a Windows-based device. Being data type independent, the systems is able to retrieve the file (in the archive file format), and recreate the file as a Windows based file for recovery within the Windows environment. Similarly, the system can also recover files created by different environment versions (such as recovering a Windows 95 file for a Window 2003 system).


CONCLUSION

From the foregoing, it will be appreciated that specific embodiments of the storage system have been described herein for purposes of illustration, but that various modifications may be made without deviating from the spirit and scope of the invention. For example, although backup operations have been described, the system may be used to reduce many types of redundant storage operations. As one example, the storage system may be employed by an Internet proxy server to reduce downloading of redundant files over the Internet by tracking a digest of each downloaded file and the location of a downloaded instance of the file behind the proxy server such that subsequent requests for the file can be serviced from the previously downloaded instance without accessing the file over the Internet. Similarly, the storage system could be used by a file system to reduce storage space by storing a single copy of data placed in multiple locations throughout the file system. Accordingly, the invention is not limited except as by the appended claims.


Unless the context clearly requires otherwise, throughout the description and the claims, the words “comprise,” “comprising,” and the like are to be construed in an inclusive sense, as opposed to an exclusive or exhaustive sense; that is to say, in the sense of “including, but not limited to.” The word “coupled”, as generally used herein, refers to two or more elements that may be either directly connected, or connected by way of one or more intermediate elements. Additionally, the words “herein,” “above,” “below,” and words of similar import, when used in this application, shall refer to this application as a whole and not to any particular portions of this application. Where the context permits, words in the above Detailed Description using the singular or plural number may also include the plural or singular number respectively. The word “or” in reference to a list of two or more items, that word covers all of the following interpretations of the word: any of the items in the list, all of the items in the list, and any combination of the items in the list.


The above detailed description of embodiments of the invention is not intended to be exhaustive or to limit the invention to the precise form disclosed above. While specific embodiments of, and examples for, the invention are described above for illustrative purposes, various equivalent modifications are possible within the scope of the invention, as those skilled in the relevant art will recognize. For example, while processes or blocks are presented in a given order, alternative embodiments may perform routines having steps, or employ systems having blocks, in a different order, and some processes or blocks may be deleted, moved, added, subdivided, combined, and/or modified. Each of these processes or blocks may be implemented in a variety of different ways. Also, while processes or blocks are at times shown as being performed in series, these processes or blocks may instead be performed in parallel, or may be performed at different times.


The teachings of the invention provided herein can be applied to other systems, not necessarily the system described above. The elements and acts of the various embodiments described above can be combined to provide further embodiments.


These and other changes can be made to the invention in light of the above Detailed Description. While the above description details certain embodiments of the invention and describes the best mode contemplated, no matter how detailed the above appears in text, the invention can be practiced in many ways. Details of the system may vary considerably in implementation details, while still being encompassed by the invention disclosed herein. As noted above, particular terminology used when describing certain features or aspects of the invention should not be taken to imply that the terminology is being redefined herein to be restricted to any specific characteristics, features, or aspects of the invention with which that terminology is associated. In general, the terms used in the following claims should not be construed to limit the invention to the specific embodiments disclosed in the specification, unless the above Detailed Description section explicitly defines such terms. Accordingly, the actual scope of the invention encompasses not only the disclosed embodiments, but also all equivalent ways of practicing or implementing the invention under the claims.


While certain aspects of the invention are presented below in certain claim forms, the inventors contemplate the various aspects of the invention in any number of claim forms. For example, while only one aspect of the invention is recited as embodied in a computer-readable medium, other aspects may likewise be embodied in a computer-readable medium. Accordingly, the inventors reserve the right to add additional claims after filing the application to pursue such additional claim forms for other aspects of the invention.

Claims
  • 1. A method performed by a computer system of storing a single-instance copy of multiple data objects on a sequential storage medium, the method comprising: storing, on a random-access storage medium, a single-instance copy of the multiple, substantially identical, data objects, wherein: the single-instance copy comprises a copy of only one of the multiple data objects,the single-instance copy is associated with a first logical location in the random-access storage medium of a first data object selected from the multiple, substantially identical, data objects;determining whether a data object to be stored on the random-access storage medium is duplicative of the single-instance copy;creating a first reference to the single-instance copy based on a determination that the data object is duplicative of the single-instance copy, the first reference associated with a second logical location in the random-access storage medium, wherein the second logical location is different from the first logical location;transferring the single-instance copy from the random-access storage medium to a sequential storage medium; andstoring a second reference to the single-instance copy on the sequential storage medium after transferring the single-instance copy to the sequential storage medium.
  • 2. The method of claim 1, further comprising: receiving or accessing the multiple data objects from multiple, different logical locations within a computer network, wherein the single-instance copy contains information identifying the logical locations, andwherein storing the second reference to the single-instance copy includes storing the information identifying the logical locations.
  • 3. The method of claim 1, wherein storing the second reference to the single-instance copy includes storing a reference count to track a number of references that refer to the single-instance copy.
  • 4. The method of claim 1, wherein the second reference to the single-instance copy includes a media identifier identifying a storage medium on which the single-instance copy is stored and an offset within the identified storage medium to the single-instance copy.
  • 5. The method of claim 1, further comprising: maintaining an index on the random-access storage medium, wherein the index includes, for each of the multiple data objects: an identifier for the data object;information indicating whether the data object is stored as a copy or a reference to a copy; andan identifier of a source copy when the data object is stored as a reference to the source copy.
  • 6. The method of claim 1, wherein storing, on the random-access storage medium, the single-instance copy of the multiple data objects includes storing the single-instance copy of the multiple data objects using an index that includes, for each of the multiple data objects: an identifier of the data object;information indicating whether the data object is stored as a copy or a reference to a copy; andan identifier of a source copy when the data object is stored as a reference to the source copy.
  • 7. The method of claim 1, further comprising: receiving or accessing the multiple data objects from multiple, different logical locations within a computer network, wherein the single-instance copy contains information identifying the logical locations;storing an index that includes, for each of the multiple data objects: an identifier of the data object;information indicating whether the data object is stored as a copy or a reference to a copy; andan identifier of a source copy when the data object is stored as a reference to the source copy; andstoring the information identifying the logical locations on the sequential storage medium.
  • 8. The method of claim 1, wherein at least some of the multiple data objects are of different types or formats, and wherein the different types or formats correspond to documents, email messages, and configuration settings.
  • 9. A method performed by a computer system of storing a de-duplicated copy of data objects on a sequential storage medium, comprising: storing, on a random-access storage medium, a de-duplicated copy of one or more data objects, wherein the de-duplicated copy comprises: a first instance of a first data object selected from the one or more data objects, andone or more references to other data objects selected from the one or more data objects stored on the random-access storage medium; andtransferring the de-duplicated copy of the one or more data objects from the random-access storage medium to a sequential storage medium.
  • 10. The method of claim 9, wherein the data objects are of at least two different object types, and wherein the different types or formats correspond to documents, email messages, or configuration settings.
  • 11. The method of claim 9, wherein at least one of the data objects has an archive file format.
  • 12. The method of claim 9, wherein the sequential storage medium is one or more magnetic tapes.
  • 13. A non-transitory, computer-readable medium containing instructions for controlling a computer system to execute a method of storing a copy on a sequential storage medium, the method comprising: receiving or accessing multiple data objects from a computer network, wherein some of the multiple data objects are identified as identical based on hashing;storing a de-duplicated copy of the multiple data objects to a random-access storage medium, wherein the de-duplicated copy is associated with a first network location on the computer network;creating a reference in the random-access storage medium to the de-duplicated copy, wherein the reference is associated with a second network location on the computer network; andtransferring the de-duplicated copy of the multiple data objects from the random-access storage medium to a sequential storage medium.
  • 14. The non-transitory, computer-readable medium of claim 13, further comprising: storing a reference to the de-duplicated copy of the multiple data objects to the sequential storage medium after transferring the de-duplicated copy of the multiple data objects from the random-access storage medium to the sequential storage medium.
  • 15. The non-transitory, computer-readable medium of claim 13, wherein the deduplicated copy contains a copy of only one of the multiple, substantially identical, data objects.
  • 16. The non-transitory, computer-readable medium of claim 13, wherein receiving or accessing multiple data objects from a computer network includes receiving or accessing multiple data objects from multiple, different logical locations within a computer network; and wherein the de-duplicated copy contains information identifying the logical locations.
  • 17. The non-transitory, computer-readable medium of claim 13, further comprising maintaining an index on the random-access storage medium, wherein the index comprises, for each of the multiple data objects: an identifier of the data object;information indicating whether the data object is stored as a copy or a reference to a copy; andan identifier of a source copy when the data object is stored as a reference to the source copy.
  • 18. The non-transitory, computer-readable medium of claim 13, wherein at least some of the multiple data objects are of different types or formats.
  • 19. The non-transitory, computer-readable medium of claim 13, wherein at least some of the multiple data objects include documents and email messages.
  • 20. The non-transitory, computer-readable medium of claim 13, wherein at least some of the multiple data objects include documents and configuration settings.
CROSS-REFERENCE TO RELATED APPLICATIONS

This application is a continuation of U.S. patent application Ser. No. 14/992,408, now U.S. Pat. No. 10,061,535, entitled “SYSTEM AND METHOD FOR STORING REDUNDANT INFORMATION,” filed Jan. 11, 2016, which is a continuation application of U.S. patent application Ser. No. 14/262,878, now U.S. Pat. No. 9,236,079, entitled “SYSTEM AND METHOD FOR STORING REDUNDANT INFORMATION,” filed Apr. 28, 2014, which is a continuation application of U.S. patent application Ser. No. 13/616,111, now U.S. Pat. No. 8,712,969, entitled “SYSTEM AND METHOD FOR STORING REDUNDANT INFORMATION,” filed Sep. 14, 2012, which is a continuation application of U.S. patent application Ser. No. 13/251,022, now U.S. Pat. No. 8,285,683, entitled “SYSTEM AND METHOD FOR STORING REDUNDANT INFORMATION,” filed Sep. 30, 2011, which is a continuation application of U.S. patent application Ser. No. 12/058,367, now U.S. Pat. No. 8,037,028, entitled “SYSTEM AND METHOD FOR STORING REDUNDANT INFORMATION,” filed Mar. 28, 2008, which claims the benefit of U.S. Provisional Patent Application No. 61/066,150, entitled “SYSTEM AND METHOD FOR STORING REDUNDANT INFORMATION,” filed on Oct. 31, 2007, and claims the benefit of U.S. Provisional Patent Application No. 60/871,737, entitled “SYSTEM AND METHOD FOR STORING REDUNDANT INFORMATION,” filed on Dec. 22, 2006, each of which are hereby incorporated by reference in their entireties; and wherein U.S. patent application Ser. No. 12/058,367 is a continuation application of U.S. patent application Ser. No. 11/963,623, now U.S. Pat. No. 7,840,537, entitled “SYSTEM AND METHOD FOR STORING REDUNDANT INFORMATION,” filed on Dec. 21, 2007, which claims the benefit of U.S. Provisional Patent Application No. 61/066,150, entitled “SYSTEM AND METHOD FOR STORING REDUNDANT INFORMATION,” filed on Oct. 31, 2007 and claims the benefit of U.S. Provisional Patent Application No. 60/871,737, entitled “SYSTEM AND METHOD FOR STORING REDUNDANT INFORMATION,” filed on Dec. 22, 2006, each of which are hereby incorporated by reference in their entireties.

US Referenced Citations (490)
Number Name Date Kind
4686620 Ng Aug 1987 A
4713755 Worley, Jr. et al. Dec 1987 A
4995035 Cole et al. Feb 1991 A
5005122 Griffin et al. Apr 1991 A
5093912 Dong et al. Mar 1992 A
5133065 Cheffetz et al. Jul 1992 A
5193154 Kitajima et al. Mar 1993 A
5212772 Masters May 1993 A
5226157 Nakano et al. Jul 1993 A
5239647 Anglin et al. Aug 1993 A
5241668 Eastridge et al. Aug 1993 A
5241670 Eastridge et al. Aug 1993 A
5276860 Fortier et al. Jan 1994 A
5276867 Kenley et al. Jan 1994 A
5287500 Stoppani, Jr. Feb 1994 A
5321816 Rogan et al. Jun 1994 A
5333315 Saether et al. Jul 1994 A
5347653 Flynn et al. Sep 1994 A
5410700 Fecteau et al. Apr 1995 A
5437012 Mahajan Jul 1995 A
5448724 Hayashi et al. Sep 1995 A
5491810 Allen Feb 1996 A
5495607 Pisello et al. Feb 1996 A
5504873 Martin et al. Apr 1996 A
5544345 Carpenter et al. Aug 1996 A
5544347 Yanai et al. Aug 1996 A
5559957 Balk Sep 1996 A
5604862 Midgely et al. Feb 1997 A
5606686 Tarui et al. Feb 1997 A
5619644 Crockett et al. Apr 1997 A
5628004 Gormley et al. May 1997 A
5634052 Morris May 1997 A
5638509 Dunphy et al. Jun 1997 A
5673381 Huai et al. Sep 1997 A
5699361 Ding et al. Dec 1997 A
5729743 Squibb Mar 1998 A
5742792 Yanai Apr 1998 A
5751997 Kullick et al. May 1998 A
5758359 Saxon May 1998 A
5761677 Senator et al. Jun 1998 A
5764972 Crouse et al. Jun 1998 A
5778395 Whiting et al. Jul 1998 A
5794229 French et al. Aug 1998 A
5806057 Gormley et al. Sep 1998 A
5812398 Nielsen Sep 1998 A
5813008 Benson Sep 1998 A
5813009 Johnson et al. Sep 1998 A
5813017 Morris Sep 1998 A
5822780 Schutzman Oct 1998 A
5862325 Reed et al. Jan 1999 A
5875478 Blumenau Feb 1999 A
5887134 Ebrahim Mar 1999 A
5901327 Ofek May 1999 A
5924102 Perks Jul 1999 A
5940833 Benson Aug 1999 A
5950205 Aviani, Jr. Sep 1999 A
5974563 Beeler, Jr. Oct 1999 A
5990810 Williams Nov 1999 A
6021415 Cannon et al. Feb 2000 A
6026414 Anglin Feb 2000 A
6052735 Ulrich et al. Apr 2000 A
6073133 Chrabaszcz Jun 2000 A
6076148 Kedem et al. Jun 2000 A
6094416 Ying Jul 2000 A
6125369 Wu Sep 2000 A
6131095 Low et al. Oct 2000 A
6131190 Sidwell Oct 2000 A
6148412 Cannon et al. Nov 2000 A
6154787 Urevig et al. Nov 2000 A
6161111 Mutalik et al. Dec 2000 A
6167402 Yeager Dec 2000 A
6173291 Jenevein Jan 2001 B1
6212512 Barney et al. Apr 2001 B1
6260069 Anglin Jul 2001 B1
6269431 Dunham Jul 2001 B1
6275953 Vahalia et al. Aug 2001 B1
6301592 Aoyama et al. Oct 2001 B1
6311252 Raz Oct 2001 B1
6324544 Alam Nov 2001 B1
6324581 Xu et al. Nov 2001 B1
6328766 Long Dec 2001 B1
6330570 Crighton et al. Dec 2001 B1
6330642 Carteau Dec 2001 B1
6343324 Hubis et al. Jan 2002 B1
RE37601 Eastridge et al. Mar 2002 E
6356801 Goodman et al. Mar 2002 B1
6356915 Chtchetkine Mar 2002 B1
6363400 Chtchetkine Mar 2002 B1
6389432 Pothapragada et al. May 2002 B1
6418478 Ignatius Jul 2002 B1
6421711 Blumenau et al. Jul 2002 B1
6477544 Bolosky et al. Nov 2002 B1
6487561 Ofek et al. Nov 2002 B1
6513051 Bolosky Jan 2003 B1
6519679 Devireddy et al. Feb 2003 B2
6538669 Lagueux, Jr. et al. Mar 2003 B1
6564228 O'Connor May 2003 B1
6609157 Deo Aug 2003 B2
6609183 Ohran Aug 2003 B2
6609187 Merrell Aug 2003 B1
6658526 Nguyen et al. Dec 2003 B2
6675177 Webb Jan 2004 B1
6704730 Moulton Mar 2004 B2
6708195 Borman Mar 2004 B1
6745304 Playe Jun 2004 B2
6757699 Lowry Jun 2004 B2
6757794 Cabrera Jun 2004 B2
6795903 Schultz Sep 2004 B2
6810398 Moulton Oct 2004 B2
6839819 Martin Jan 2005 B2
6862674 Dice Mar 2005 B2
6865655 Andersen Mar 2005 B1
6868417 Kazar Mar 2005 B2
6889297 Krapp et al. May 2005 B2
6901493 Maffezzoni May 2005 B1
6912645 Dorward Jun 2005 B2
6928459 Sawdon Aug 2005 B1
6952758 Chron Oct 2005 B2
6959368 St. Pierre Oct 2005 B1
6973553 Archibald et al. Dec 2005 B1
6976039 Chefalas Dec 2005 B2
6993162 Stephany et al. Jan 2006 B2
7017113 Bourbakis Mar 2006 B2
7035876 Kawai et al. Apr 2006 B2
7035880 Crescenti Apr 2006 B1
7035943 Yamane Apr 2006 B2
7085904 Mizuno Aug 2006 B2
7089383 Ji Aug 2006 B2
7089395 Jacobson Aug 2006 B2
7092956 Ruediger Aug 2006 B2
7103740 Colgrove et al. Sep 2006 B1
7107418 Ohran Sep 2006 B2
7111173 Scheidt Sep 2006 B1
7117246 Christenson Oct 2006 B2
7139808 Anderson et al. Nov 2006 B2
7143091 Charnock Nov 2006 B2
7143108 George Nov 2006 B1
7191290 Ackaouy Mar 2007 B1
7200604 Forman Apr 2007 B2
7200621 Beck et al. Apr 2007 B2
7246272 Cabezas Jul 2007 B2
7272606 Borthakur Sep 2007 B2
7287252 Bussiere Oct 2007 B2
7290102 Lubbers et al. Oct 2007 B2
7310655 Dussud Dec 2007 B2
7320059 Armangau Jan 2008 B1
7325110 Kubo Jan 2008 B2
7330997 Odom Feb 2008 B1
7343459 Prahlad Mar 2008 B2
7370003 Pych May 2008 B2
7376805 Stroberger et al. May 2008 B2
7383304 Shimada et al. Jun 2008 B2
7383462 Osaki Jun 2008 B2
7389345 Adams Jun 2008 B1
7395282 Crescenti Jul 2008 B1
7403942 Bayliss Jul 2008 B1
7409522 Fair et al. Aug 2008 B1
7444382 Malik Oct 2008 B2
7444387 Douceur Oct 2008 B2
7451166 Damani et al. Nov 2008 B2
7478096 Margolus et al. Jan 2009 B2
7478113 De Spiegeleer Jan 2009 B1
7480782 Garthwaite Jan 2009 B2
7487245 Douceur Feb 2009 B2
7490207 Amarendran Feb 2009 B2
7493314 Huang Feb 2009 B2
7493456 Brittain et al. Feb 2009 B2
7496604 Sutton Feb 2009 B2
7512745 Gschwind et al. Mar 2009 B2
7519635 Haustein et al. Apr 2009 B1
7519726 Pallyill Apr 2009 B2
7533331 Brown et al. May 2009 B2
7536440 Budd et al. May 2009 B2
7568080 Prahlad Jul 2009 B2
7577687 Bank et al. Aug 2009 B2
7590639 Ivanova Sep 2009 B1
7603529 MacHardy et al. Oct 2009 B1
7613748 Brockway Nov 2009 B2
7617297 Bruce Nov 2009 B2
7631120 Darcy Dec 2009 B2
7631194 Wahlert Dec 2009 B2
7636824 Tormasov Dec 2009 B1
7647462 Wolfgang Jan 2010 B2
7657550 Prahlad Feb 2010 B2
7661028 Erofeev Feb 2010 B2
7668884 Prahlad Feb 2010 B2
7672779 Fuchs Mar 2010 B2
7672981 Faibish et al. Mar 2010 B1
7673089 Hinchey Mar 2010 B2
7676590 Silverman Mar 2010 B2
7685126 Patel Mar 2010 B2
7685177 Hagerstrom Mar 2010 B1
7685384 Shavit Mar 2010 B2
7685459 De Spiegeleer Mar 2010 B1
7698699 Rogers Apr 2010 B2
7716445 Bonwick May 2010 B2
7721292 Frasier et al. May 2010 B2
7734581 Gu et al. Jun 2010 B2
7747579 Prahlad Jun 2010 B2
7747584 Jernigan, IV Jun 2010 B1
7747659 Bacon et al. Jun 2010 B2
7778979 Hatonen et al. Aug 2010 B2
7786881 Burchard et al. Aug 2010 B2
7788230 Dile Aug 2010 B2
7814142 Mamou Oct 2010 B2
7818287 Torii Oct 2010 B2
7818495 Tanaka et al. Oct 2010 B2
7818531 Barrall Oct 2010 B2
7830889 Lemaire Nov 2010 B1
7831707 Bardsley Nov 2010 B2
7831793 Chakravarty et al. Nov 2010 B2
7831795 Prahlad Nov 2010 B2
7836161 Scheid Nov 2010 B2
7840537 Gokhale Nov 2010 B2
7853750 Stager et al. Dec 2010 B2
7856414 Zee Dec 2010 B2
7865470 Fries Jan 2011 B2
7865678 Arakawa Jan 2011 B2
7870105 Arakawa Jan 2011 B2
7870486 Wang Jan 2011 B2
7873599 Ishii Jan 2011 B2
7873806 Prahlad Jan 2011 B2
7882077 Gokhale Feb 2011 B2
7899990 Moll et al. Mar 2011 B2
7921077 Ting et al. Apr 2011 B2
7937371 Bates et al. May 2011 B2
7953706 Prahlad May 2011 B2
7962452 Anglin Jun 2011 B2
8028106 Bondurant et al. Sep 2011 B2
8037028 Prahlad Oct 2011 B2
8041907 Wu et al. Oct 2011 B1
8051367 Arai et al. Nov 2011 B2
8054765 Passey et al. Nov 2011 B2
8055618 Anglin Nov 2011 B2
8055627 Prahlad Nov 2011 B2
8055745 Atluri Nov 2011 B2
8078603 Chandratillake Dec 2011 B1
8086799 Mondal et al. Dec 2011 B2
8095756 Somavarapu Jan 2012 B1
8108429 Sim-Tang Jan 2012 B2
8112357 Mueller Feb 2012 B2
8131687 Bates et al. Mar 2012 B2
8140786 Bunte Mar 2012 B2
8156092 Hewett Apr 2012 B2
8156279 Tanaka et al. Apr 2012 B2
8161003 Kavuri Apr 2012 B2
8161255 Anglin et al. Apr 2012 B2
8165221 Zheng Apr 2012 B2
8166263 Prahlad Apr 2012 B2
8170994 Tsaur May 2012 B2
8190823 Waltermann et al. May 2012 B2
8190835 Yueh May 2012 B1
8213540 Rickey Jul 2012 B1
8219524 Gokhale Jul 2012 B2
8234444 Bates et al. Jul 2012 B2
8239348 Bezbaruah Aug 2012 B1
8244914 Nagarkar Aug 2012 B1
8271992 Chatley Sep 2012 B2
8285683 Gokhale Oct 2012 B2
8290915 Anglin Oct 2012 B2
8295875 Masuda Oct 2012 B2
8296260 Ting et al. Oct 2012 B2
8315984 Frandzel Nov 2012 B2
8346730 Srinivasan Jan 2013 B2
8364652 Vijayan Jan 2013 B2
8375008 Gomes Feb 2013 B1
8380957 Prahlad Feb 2013 B2
8386436 Ben-Dyke Feb 2013 B2
8392677 Bunte et al. Mar 2013 B2
8401996 Muller Mar 2013 B2
8412677 Klose Apr 2013 B2
8412682 Zheng et al. Apr 2013 B2
8484162 Prahlad Jul 2013 B2
8495032 Anglin et al. Jul 2013 B2
8548953 Wong Oct 2013 B2
8572340 Vijayan Oct 2013 B2
8577851 Vijayan Nov 2013 B2
8578109 Vijayan Nov 2013 B2
8578120 Attarde Nov 2013 B2
8620845 Stoakes et al. Dec 2013 B2
8626723 Ben-Shaul Jan 2014 B2
8712969 Prahlad Apr 2014 B2
8712974 Datuashvili Apr 2014 B2
8725687 Klose May 2014 B2
8769185 Chung Jul 2014 B2
8782368 Lillibridge et al. Jul 2014 B2
8788466 Anglin et al. Jul 2014 B2
8880797 Yueh Nov 2014 B2
8909881 Bunte et al. Dec 2014 B2
8930306 Ngo Jan 2015 B1
8935492 Gokhale Jan 2015 B2
8954446 Vijayan Feb 2015 B2
8965852 Jayaraman Feb 2015 B2
8997020 Chambers et al. Mar 2015 B2
9015181 Kottomtharayil et al. Apr 2015 B2
9020890 Kottomtharayil et al. Apr 2015 B2
9020900 Vijayan Apr 2015 B2
9116850 Vijayan Apr 2015 B2
9058117 Attarde et al. Jun 2015 B2
9104623 Vijayan Aug 2015 B2
9213540 Rickey et al. Dec 2015 B1
9218374 Muller Dec 2015 B2
9218375 Muller Dec 2015 B2
9218376 Muller Dec 2015 B2
9236079 Prahlad et al. Jan 2016 B2
9251186 Muller Feb 2016 B2
9262275 Gokhale Feb 2016 B2
9276871 Freitas Mar 2016 B1
9372479 Phillips Jun 2016 B1
9575673 Mitkar Feb 2017 B2
9633022 Vijayan et al. Apr 2017 B2
9633033 Vijayan Apr 2017 B2
9633056 Attarde Apr 2017 B2
9639563 Gokhale May 2017 B2
9646166 Cash May 2017 B2
9665591 Vijayan May 2017 B2
9773025 Muller et al. Sep 2017 B2
9781000 Kumar Oct 2017 B1
10089337 Senthilnathan et al. Oct 2018 B2
10262003 Kottomtharayil et al. Apr 2019 B2
10324897 Amarendran et al. Jun 2019 B2
10324914 Senthilnathan et al. Jun 2019 B2
10339106 Vijayan Jul 2019 B2
20010037323 Moulton et al. Nov 2001 A1
20020055972 Weinman May 2002 A1
20020059317 Black May 2002 A1
20020065892 Malik May 2002 A1
20020099806 Balsamo Jul 2002 A1
20020107877 Whiting Aug 2002 A1
20030004922 Schmidt et al. Jan 2003 A1
20030074600 Tamatsu Apr 2003 A1
20030097359 Ruediger May 2003 A1
20030105716 Sutton, Jr. Jun 2003 A1
20030110190 Achiwa Jun 2003 A1
20030135480 Van Arsdale Jul 2003 A1
20030135704 Martin Jul 2003 A1
20030167318 Robbin Sep 2003 A1
20030172368 Alumbaugh et al. Sep 2003 A1
20030177149 Coombs Sep 2003 A1
20030236763 Kilduff Dec 2003 A1
20040128287 Keller Jul 2004 A1
20040148306 Moulton Jul 2004 A1
20040177319 Horn Sep 2004 A1
20040187075 Maxham Sep 2004 A1
20040220975 Carpentier Nov 2004 A1
20040230817 Ma Nov 2004 A1
20050033756 Kottomtharayil Feb 2005 A1
20050060643 Glass Mar 2005 A1
20050066190 Martin Mar 2005 A1
20050097150 McKeon et al. May 2005 A1
20050108435 Nowacki et al. May 2005 A1
20050131961 Margolus Jun 2005 A1
20050138081 Alshab Jun 2005 A1
20050138483 Hatonen Jun 2005 A1
20050160243 Lubbers Jul 2005 A1
20050182780 Forman Aug 2005 A1
20050195660 Kavuri Sep 2005 A1
20050203864 Schmidt Sep 2005 A1
20050203887 Joshi Sep 2005 A1
20050210460 Rogers Sep 2005 A1
20050223109 Mamou Oct 2005 A1
20050234823 Schimpf Oct 2005 A1
20050246389 Shah Nov 2005 A1
20050254072 Hirai Nov 2005 A1
20050262193 Mamou et al. Nov 2005 A1
20050283461 Sell Dec 2005 A1
20050286466 Tagg et al. Dec 2005 A1
20060005048 Osaki et al. Jan 2006 A1
20060010227 Atluri Jan 2006 A1
20060047894 Okumura Mar 2006 A1
20060047978 Kawakami Mar 2006 A1
20060047998 Darcy Mar 2006 A1
20060053305 Wahlert et al. Mar 2006 A1
20060056623 Gligor Mar 2006 A1
20060069702 Moeller Mar 2006 A1
20060089954 Anschutz Apr 2006 A1
20060095470 Cochran May 2006 A1
20060126615 Angtin Jun 2006 A1
20060129576 Carpentier Jun 2006 A1
20060129771 Dasgupta Jun 2006 A1
20060156064 Damani Jul 2006 A1
20060174112 Wray Aug 2006 A1
20060206547 Kulkarni Sep 2006 A1
20060206621 Toebes Sep 2006 A1
20060222163 Bank Oct 2006 A1
20060224846 Amarendran Oct 2006 A1
20060230081 Craswell Oct 2006 A1
20060230244 Amarendran Oct 2006 A1
20060259587 Ackerman Nov 2006 A1
20060271622 Scheid Nov 2006 A1
20070022145 Kavuri Jan 2007 A1
20070079170 Zimmer Apr 2007 A1
20070106863 Bonwick May 2007 A1
20070118573 Gadiraju et al. May 2007 A1
20070136200 Frank Jun 2007 A1
20070156998 Gorobets Jul 2007 A1
20070179995 Prahlad Aug 2007 A1
20070208788 Chakravarty Sep 2007 A1
20070260476 Smolen Nov 2007 A1
20070271316 Hollebeek Nov 2007 A1
20070288534 Zak Dec 2007 A1
20080005201 Ting Jan 2008 A1
20080047935 Hinchey Feb 2008 A1
20080082714 Hinchey Apr 2008 A1
20080082736 Chow et al. Apr 2008 A1
20080098083 Shergill Apr 2008 A1
20080098236 Pandey et al. Apr 2008 A1
20080104291 Hinchey May 2008 A1
20080115176 Rodriguez May 2008 A1
20080126543 Hamada May 2008 A1
20080144079 Pandey et al. Jun 2008 A1
20080162467 Fuchs Jul 2008 A1
20080162518 Bollinger Jul 2008 A1
20080162597 Tysowski Jul 2008 A1
20080229037 Bunte Sep 2008 A1
20080243769 Arbour Oct 2008 A1
20080243914 Prahlad Oct 2008 A1
20080244172 Kano Oct 2008 A1
20080244204 Cremelie et al. Oct 2008 A1
20080307000 Paterson Dec 2008 A1
20090012984 Ravid et al. Jan 2009 A1
20090049260 Upadhyayula Feb 2009 A1
20090083341 Parees Mar 2009 A1
20090083344 Inoue et al. Mar 2009 A1
20090089483 Tanaka et al. Apr 2009 A1
20090106369 Chen et al. Apr 2009 A1
20090109891 Fonseca, Jr. et al. Apr 2009 A1
20090112870 Ozzie Apr 2009 A1
20090119678 Shih May 2009 A1
20090150498 Branda et al. Jun 2009 A1
20090204636 Li et al. Aug 2009 A1
20090204650 Wong Aug 2009 A1
20090228446 Anzai Sep 2009 A1
20090234870 Bates et al. Sep 2009 A1
20090268903 Bojinov et al. Oct 2009 A1
20090271454 Anglin et al. Oct 2009 A1
20090281847 Hamilton, II Nov 2009 A1
20090319534 Gokhale Dec 2009 A1
20100036887 Anglin et al. Feb 2010 A1
20100070478 Anglin Mar 2010 A1
20100082529 Mace et al. Apr 2010 A1
20100082558 Anglin et al. Apr 2010 A1
20100082672 Kottomtharayil Apr 2010 A1
20100088296 Periyagaram Apr 2010 A1
20100174881 Anglin et al. Jul 2010 A1
20100281081 Stager Nov 2010 A1
20100332401 Prahlad Dec 2010 A1
20110125711 Meisenheimer May 2011 A1
20120102286 Holt Apr 2012 A1
20120150818 Vijayan Jun 2012 A1
20120159098 Cheung Jun 2012 A1
20120233417 Kalach Sep 2012 A1
20120271793 Gokhale Oct 2012 A1
20120311581 Balmin Dec 2012 A1
20130013573 Anglin Jan 2013 A1
20130041872 Aizman Feb 2013 A1
20130086007 Bandopadhyay Apr 2013 A1
20130117305 Varakin May 2013 A1
20130218350 Phillips Aug 2013 A1
20130262801 Sancheti Oct 2013 A1
20130290598 Fiske Oct 2013 A1
20130339298 Muller Dec 2013 A1
20130339310 Muller Dec 2013 A1
20140006382 Barber Jan 2014 A1
20140012814 Bercovici et al. Jan 2014 A1
20140129961 Zubarev May 2014 A1
20140181079 Ghazal Jun 2014 A1
20140188532 Liu Jul 2014 A1
20140250088 Klose et al. Sep 2014 A1
20140310232 Plattner Oct 2014 A1
20150178277 Singhal Jun 2015 A1
20150199242 Attarde et al. Jul 2015 A1
20150205678 Kottomtharayil et al. Jul 2015 A1
20150205817 Kottomtharayil et al. Jul 2015 A1
20150212889 Amarendran et al. Jul 2015 A1
20160124658 Prahlad May 2016 A1
20160179435 Haley Jun 2016 A1
20160210064 Dornemann Jul 2016 A1
20160342633 Senthilnathan Nov 2016 A1
20160342661 Kumarasamy Nov 2016 A1
20160350391 Vijayan Dec 2016 A1
20170083408 Vijayan et al. Mar 2017 A1
20170193003 Vijayan Jul 2017 A1
20170206206 Gokhale Jul 2017 A1
20180144000 Muller May 2018 A1
20180239772 Vijayan et al. Aug 2018 A1
20190188188 Kottomtharayil et al. Jun 2019 A1
20190192978 Eatedali et al. Jun 2019 A1
20190266139 Kumarasamy et al. Aug 2019 A1
20190278748 Amarendran et al. Sep 2019 A1
Foreign Referenced Citations (13)
Number Date Country
0259912 Mar 1988 EP
0405926 Jan 1991 EP
0467546 Jan 1992 EP
0774715 May 1997 EP
0809184 Nov 1997 EP
0899662 Mar 1999 EP
0981090 Feb 2000 EP
WO9513580 May 1995 WO
WO9912098 Mar 1999 WO
WO03027891 Apr 2003 WO
WO2006052872 May 2006 WO
WO2008070688 Jun 2008 WO
WO2008080140 Jul 2008 WO
Non-Patent Literature Citations (58)
Entry
Anonymous, “NTFS Sparse Files (NTFS5 Only)”, Jun. 4, 2002, pp. 1-1, https://web.archive.org/web/20020604013016/http://ntfs.com/ntfs-sparse.htm.
Armstead et al., “Implementation of a Campwide Distributed Mass Storage Service: The Dream vs. Reality,” IEEE, Sep. 11-14, 1995, pp. 190-199.
Arneson, “Mass Storage Archiving in Network Environments,” Digest of Papers, Ninth IEEE Symposium on Mass Storage Systems, Oct. 31-Nov. 3, 1988, pp. 45-50, Monterey, CA.
Cabrera et al., “ADSM: A Multi-Platform, Scalable, Backup and Archive Mass Storage System,” Digest of Papers, Compcon '95, Proceedings of the 40th IEEE Computer Society International Conference, Mar. 5-9, 1995, pp. 420-427, San Francisco, CA.
Commvault Systems, Inc., “Continuous Data Replicator 7.0,” Product Data Sheet, 2007, 6 pages.
CommVault Systems, Inc., “Deduplication—How to,” <http://documentation.commvault.com/commvault/release_8_0_0/books_online_1/english_US/features/single_instance/single_instance_how_to.htm>, earliest known publication date: Jan. 26, 2009, 7 pages.
CommVault Systems, Inc., “Deduplication,” <http://documentation.commvault.com/commvault/release_8_0_0/books_online_1/english_US/features/single_instance/single_instance.htm>, earliest known publication date: Jan. 26, 2009, 9 pages.
Computer Hope, “File,” May 21, 2008, pp. 1-3, https://web.archive.org/web/20080513021935/https://www.computerhope.com/jargon/f/file.htm.
Diligent Technologies “HyperFactor,” <http://www.diligent.com/products:protecTIER-1:HyperFactor-1>, Internet accessed on Dec. 5, 2008, 2 pages.
Eitel, “Backup and Storage Management in Distributed Heterogeneous Environments,” IEEE, Jun. 12-16, 1994, pp. 124-126.
Enterprise Storage Management, “What is Hierarchical Storage Management?”, Jun. 19, 2005, pp. 1, http://web.archive.org/web/20050619000521/hhttp://www.enterprisestoragemanagement.com/faq/hierarchical-storage-management-shtml.
Enterprise Storage Management, What is a Incremental Backup?, Oct. 26, 2005, pp. 1-2, http://web.archive.org/web/w0051026010908/http://www.enterprisestoragemanagement.com/faq/incremental-backup.shtml.
Extended European Search Report for 09816825.5; dated Oct. 27, 2015, 15 pages.
Extended European Search Report for EP07865192.4; dated May 2, 2013, 7 pages.
Federal Information Processing Standards Publication 180-2, “Secure Hash Standard”, Aug. 1, 2002, <http://csrc.nist.gov/publications/fips/fips1 80-2/fips 1 80-2withchangenotice.pdf>, 83 pages.
FlexHex, “NTFS Sparse Files for Programmers”, Feb. 22, 2006, pp. 1-4, https://web.archive.org/web/20060222050807/http://www.flexhex.com/docs/articles/sparse-files.phtml.
Gait, J., “The Optical File Cabinet: A Random-Access File System for Write-Once Optical Disks,” IEEE Computer, vol. 21, No. 6, pp. 11-22 (Jun. 1988).
Geer, D., “Reducing the Storage Burden Via Data Deduplication,” IEEE, Computer Journal, vol. 41, Issue 12, Dec. 2008, pp. 15-17.
Handy, Jim, “The Cache Memory Book: The Authoritative Reference on Cache Design,” Second Edition, 1998, pp. 64-67 and pp. 204-205.
International Preliminary Report on Patentability and Written Opinion for PCT/US2007/086421, dated Jun. 18, 2009, 8 pages.
International Preliminary Report on Patentability and Written Opinion for PCT/US2011/054378, dated Apr. 11, 2013, 5 pages.
International Search Report and Written Opinion for PCT/US07/86421, dated Apr. 18, 2008, 9 pages.
International Search Report for Application No. PCT/US09/58137, dated Dec. 23, 2009, 14 pages.
International Search Report for Application No. PCT/US10/34676, dated Nov. 29, 2010, 9 pages.
International Search Report for Application No. PCT/US11/54378, dated May 2, 2012, 8 pages.
Jander, M., “Launching Storage-Area Net,” Data Communications, US, McGraw Hill, NY, vol. 27, No. 4 (Mar. 21, 1998), pp. 64-72.
Kornblum, Jesse, “Identifying Almost Identical Files Using Context Triggered Piecewise Hashing,” www.sciencedirect.com, Digital Investigation 3S (2006), pp. S91-S97.
Kulkarni P. et al., “Redundancy elimination within large collections of files,” Proceedings of the Usenix Annual Technical Conference, Jul. 2, 2004, pp. 59-72.
Lortu Software Development, “Kondar Technology-Deduplication,” <http://www.lortu.com/en/deduplication.asp>, Internet accessed on Dec. 5, 2008, 3 pages.
Menezes et al., “Handbook of Applied Cryptography”, CRC Press, 1996, <http://www.cacr.math.uwaterloo.ca/hac/aboutlchap9.pdf>, 64 pages.
Microsoft, “Computer Dictionary”, p. 249, Fifth Edition, 2002, 3 pages.
Microsoft, “Computer Dictionary”, pp. 142, 150, 192, and 538, Fifth Edition, 2002, 6 pages.
Microsoft,“Computer Dictionary,” Fifth Edition, 2002, p. 220.
Overland Storage, “Data Deduplication,” <http://www.overlandstorage.com/topics/data_deduplication.html>, Internet accessed on Dec. 5, 2008, 2 pages.
Partial Supplementary European Search Report in Application No. 09816825.5, dated Apr. 15, 2015, 6 pages.
Quantum Corporation, “Data De-Duplication Background: A Technical White Paper,” May 2008, 13 pages.
Rosenblum et al., “The Design and Implementation of a Log-Structured File System,” Operating Systems Review SIGOPS, vol. 25, No. 5, New York, US, pp. 1-15 (May 1991).
SearchStorage, “File System”, Nov. 1998, <http://searchstorage.techtarget.com/definition/file-system>, 10 pages.
Sharif, A., “Cache Memory,” Sep. 2005, http://searchstorage.techtarget.com/definition/cache-memory, pp. 1-26.
Techterms.com, “File,” May 17, 2008, 1 page, <https://web.archive.org/web/20080517102848/https://techterms.com/definition/file>.
Webopedia, “Cache,” Apr. 11, 2001, http://web.archive.org/web/20010411033304/http://www.webopedia.com/TERM/c/cache.html pp. 1-4.
Webopedia, “Data Duplication”, Aug. 31, 2006, <http://web.archive.org/web/20060913030559/http://www.webopedia.com/TERMID/data_deduplication.html>, 2 pages.
Webopedia, “File,” May 21, 2008, pp. 1-3, <https://web.archive.org/web/20080521094529/https://www.webopedia.com/TERM/F/file.html>.
Webopedia, “Folder”, Aug. 9, 2002, <https://web.archive.org/web/20020809211001/http://www.webopedia.com/TERM/F/folder.html> pp. 1-2.
Webopedia, “Logical Drive”, Aug. 13, 2004, pp. 1-2, https://web.archive.org/web/20040813033834/http://www.webopedia.com/TERM/L/logical_drive.html.
Webopedia, “LPAR”, Aug. 8, 2002, pp. 1-2, https://web.archive.org/web/20020808140639/http://www.webopedia.com/TERM/L/LPAR.html.
Webopedia, “Metadata”, Apr. 5, 2001, <https://web.archive.org/web/20010405235507/http://webopedia.com/TERM/M/metadata.html>, pp. 1-2.
U.S. Appl. No. 16/057,763 for Senthilnathan, filed Aug. 7, 2018.
U.S. Appl. No. 16/201,897, filed Nov. 27, 2018, Haridas.
U.S. Appl. No. 16/380,469, filed Apr. 10, 2019, Vijayan.
U.S. Appl. No. 16/407,040, filed May 8, 2019, Ngo.
Webopedia, “header”, Jul. 21, 2005, pp. 1-2, https://web.archive.org/web/20080503033941/https://www.webopedia.com/Term/H/header.html (Year: 2005).
Australian Examination Report dated Feb. 14, 2012 for Australian Application No. 2009296695 in 3 pages.
Australian Examination Report dated Jun. 7, 2013 for Australian Application No. 2009296695 in 3 pages.
Australian Examination Report dated Sep. 12, 2013 for Australian Application No. 2009296695 in 6 pages.
Australian Examination Report dated Oct. 2, 2014 for Australian Application No. 2013206404 in 2 pages.
Canadian Examination Report dated Nov. 7, 2014 for Canadian Application No. 2729078 in 5 pages.
European Examination Report dated Jan. 13, 2020 for European Application No. 09816825.5 in 7 pages.
Related Publications (1)
Number Date Country
20180364914 A1 Dec 2018 US
Provisional Applications (2)
Number Date Country
61066150 Oct 2007 US
60871737 Dec 2006 US
Continuations (6)
Number Date Country
Parent 14992408 Jan 2016 US
Child 16114093 US
Parent 14262878 Apr 2014 US
Child 14992408 US
Parent 13616111 Sep 2012 US
Child 14262878 US
Parent 13251022 Sep 2011 US
Child 13616111 US
Parent 12058367 Mar 2008 US
Child 13251022 US
Parent 11963623 Dec 2007 US
Child 12058367 US