ACCELERATED DEDUPLICATION

- Dell Products L.P.

Mechanisms are provided for accelerated data deduplication. A data stream is received an input interface and maintained in memory. Chunk boundaries are detected and chunk fingerprints are calculated using a deduplication accelerator while a processor maintains a state machine. A deduplication dictionary is accessed using a chunk fingerprint to determine if the associated data chunk has previously been written to persistent memory. If the data chunk has previously been written, reference counts may be updated but the data chunk need not be stored again. Otherwise, datastore suitcases, filemaps, and the deduplication dictionary may be updated to reflect storage of the data chunk. Direct memory access (DMA) addresses are provided to directly transfer a chunk to an output interface as needed.

Skip to: Description  ·  Claims  · Patent History  ·  Patent History
Description
CROSS-REFERENCE TO RELATED APPLICATIONS

This application is a continuation of and claims benefit of priority under 35 U.S.C. §120 to U.S. patent application Ser. No. 14/010,495 (Attorney Docket No. DELLP024C1), titled “Accelerated Deduplication”, filed Aug. 26, 2013, which is a continuation of and claims benefit of priority under 35 U.S.C. §120 to U.S. patent application Ser. No. 13/309,455 (Attorney Docket No. DELLP024), titled “Accelerated Deduplication”, filed Dec. 1, 2011, now U.S. Pat. No. 8,521,705, issued on Aug. 27, 2013, which claims priority to Provisional Patent Application No. 61/506,269 (Attorney Docket No. DELLP024P), titled “Accelerated Deduplication” filed Jul. 11, 2011, all of which are incorporated in their entirety herein by this reference for all purposes.

TECHNICAL FIELD

The present disclosure relates to accelerated deduplication.

DESCRIPTION OF RELATED ART

Maintaining vast amounts of data is resource intensive not just in terms of the physical hardware costs but also in terms of system administration and infrastructure costs. Some mechanisms provide compression of data to save resources. For example, some file formats such as the Portable Document Format (PDF) are compressed. Some other utilities allow compression on an individual file level in a relatively inefficient manner.

Data deduplication refers to the ability of a system to eliminate data duplication across files to increase storage, transmission, and/or processing efficiency. A storage system which incorporates deduplication technology involves storing a single instance of a data segment that is common across multiple files. In some examples, data sent to a storage system is segmented in fixed or variable sized segments. Each segment is provided with a segment identifier (ID), such as a digital signature or a hash of the actual data. Once the segment ID is generated, it can be used to determine if the data segment already exists in the system. If the data segment does exist, it need not be stored again.

However, mechanisms for processing data for deduplication are limited. Consequently, techniques and mechanisms are provided to improve data deduplication.

BRIEF DESCRIPTION OF THE DRAWINGS

The disclosure may best be understood by reference to the following description taken in conjunction with the accompanying drawings, which illustrate particular embodiments of the present invention.

FIG. 1 illustrates a particular example of a system that can use the techniques and mechanisms of the present invention.

FIG. 2A illustrates a particular example of an object map.

FIG. 2B illustrates a particular example of a datastore suitcase.

FIG. 3 illustrates a particular example of a dictionary.

FIG. 4 illustrates a particular example of a technique for performing reduced data transfer write operations.

FIG. 5 illustrates a particular example of a technique for performing reduced data transfer read operations.

FIG. 6 illustrates a particular example of a computer system.

DESCRIPTION OF PARTICULAR EMBODIMENTS

Reference will now be made in detail to some specific examples of the invention including the best modes contemplated by the inventors for carrying out the invention. Examples of these specific embodiments are illustrated in the accompanying drawings. While the invention is described in conjunction with these specific embodiments, it will be understood that it is not intended to limit the invention to the described embodiments. On the contrary, it is intended to cover alternatives, modifications, and equivalents as may be included within the spirit and scope of the invention as defined by the appended claims.

For example, the techniques and mechanisms of the present invention will be described in the context of particular compute nodes and network interfaces. However, it should be noted that the techniques and mechanisms of the present invention apply to a variety of different compute nodes and network interfaces. In the following description, numerous specific details are set forth in order to provide a thorough understanding of the present invention. Particular example embodiments of the present invention may be implemented without some or all of these specific details. In other instances, well known process operations have not been described in detail in order not to unnecessarily obscure the present invention.

Various techniques and mechanisms of the present invention will sometimes be described in singular form for clarity. However, it should be noted that some embodiments include multiple iterations of a technique or multiple instantiations of a mechanism unless noted otherwise. For example, a system uses a processor in a variety of contexts. However, it will be appreciated that a system can use multiple processors while remaining within the scope of the present invention unless otherwise noted. Furthermore, the techniques and mechanisms of the present invention will sometimes describe a connection between two entities. It should be noted that a connection between two entities does not necessarily mean a direct, unimpeded connection, as a variety of other entities may reside between the two entities. For example, a processor may be connected to memory, but it will be appreciated that a variety of bridges and controllers may reside between the processor and memory. Consequently, a connection does not necessarily mean a direct, unimpeded connection unless otherwise noted.

Overview

Mechanisms are provided for accelerated data deduplication. A data stream is received an input interface and maintained in memory. Chunk boundaries are detected and chunk fingerprints are calculated using a deduplication accelerator while a processor maintains a state machine. A deduplication dictionary is accessed using a chunk fingerprint to determine if the associated data chunk has previously been written to persistent memory. If the data chunk has previously been written, reference counts may be updated but the data chunk need not be stored again. Otherwise, datastore suitcases, filemaps, and the deduplication dictionary may be updated to reflect storage of the data chunk. Direct memory access (DMA) addresses are provided to directly transfer a chunk to an output interface as needed.

Example Embodiments

Maintaining, managing, transmitting, and/or processing large amounts of data can have significant costs. These costs include not only power and cooling costs but system maintenance, network bandwidth, and hardware costs as well.

Some efforts have been made to reduce the footprint of data maintained by file servers and reduce the associated network traffic. A variety of utilities compress files on an individual basis prior to writing data to file servers. Compression algorithms are well developed and widely available. Some compression algorithms target specific types of data or specific types of files. Compression algorithms operate in a variety of manners, but many compression algorithms analyze data to determine source sequences in data that can be mapped to shorter code words. In many implementations, the most frequent source sequences or the most frequent long source sequences are replaced with the shortest possible code words.

Data deduplication reduces storage footprints by reducing the amount of redundant data. Deduplication may involve identifying variable or fixed sized segments. According to various embodiments, each segment of data is processed using a hash algorithm such as MD5 or SHA-1. This process generates a unique ID, hash, or reference for each segment. That is, if only a few bytes of a document or presentation are changed, only changed portions are saved. In some instances, a deduplication system searches for matching sequences using a fixed or sliding window and uses references to identify matching sequences instead of storing the matching sequences again.

In a data deduplication system, the backup server working in conjunction with a backup agent identifies candidate files for backup, creates a backup stream and sends the data to the deduplication system. A typical target system in a deduplication system will deduplicate data as data segments are received. A block that has a duplicate already stored on the deduplication system will not need to be stored again. However, other information such as references and reference counts may need to be updated. Some implementations allow the candidate data to be directly moved to the deduplication system without using backup software by exposing a NAS drive that a user can manipulate to backup and archive files.

However, processing data for deduplication can itself be resource intensive. In many instances, data is scanned to calculate appropriate chunk boundaries. An algorithm such as Rabin may be used to determine appropriate boundary locations. Data is also scanned to determine chunk fingerprints. The fingerprints may serve as identifiers for the chunks in a deduplication dictionary. Metadata may be delineated for efficient access after deduplication and deduplication dictionaries and datastore suitcases may be generated, updated, and maintained in a distributed manner. Deduplication may be supplemented with compression and can be performed in-line or post-process.

It is recognized that performing fingerprint calculations and chunk boundary calculations can be inefficient. Consequently, the techniques and mechanisms of the present invention provide a pipeline that implements a chunk boundary calculation algorithm as well as a fingerprint algorithm in the same pipeline stage. In particular embodiments, chunk boundary calculation and fingerprint calculation are performed in a single pass. Bus data transfers are reduced.

According to various embodiments, an optimization algorithm runs in software. The optimization algorithms maintains a state machine but does not perform actual processing of the data. In particular embodiments, the optimization algorithms provide a scatter-gather vector of memory areas for a processor to apply boundary identification and fingerprinting algorithms. The resultant computed values are communicated to the software deduplication engine, which then looks up the values in a dictionary and makes a decision as to what to do with the data. The data may be stored for the first time, references and datastore suitcases may be updated or created.

According to various embodiments, deduplication is offloaded from the general purpose processor onto a deduplication engine that may be implemented as an ASIC, programmable chip, or other specially configured device. In particular embodiments, both boundary identification and fingerprinting are performed using the deduplication engine or deduplication accelerator. In other examples, portions of deduplication are still performed by the processor.

According to various embodiments, if the data needs to be transferred to storage, the software stack will communicate to the processor the final destination direct memory access (DMA) addresses for the data. The processor or CPU will directly DMA the data to the target storage address. There is minimal data movement over the system bus.

According to various embodiments, actual data can enter a system over a network and store itself in memory. The processor can apply operations exactly where the data arrived without having to move it to a separate area for deduplication and storage transfer.

FIG. 1 illustrates a particular example of a system that can use the techniques and mechanisms of the present invention. According to various embodiments, data is received at an accelerated deduplication system 101 over an interface such as a network interface. A data stream may be received in segments or blocks and maintained in system memory 103. According to various embodiments, a processor 111 or CPU 111 maintains a state machine but offloads boundary detection and fingerprinting to a deduplication engine or deduplication accelerator 105. The CPU 111 is associated with cache 111 and memory controller 113. According to various embodiments, cache 111 and memory controller 113 may be integrated onto the CPU 111.

In particular embodiments, the deduplication engine or deduplication accelerator 105 is connected to the CPU 111 over a system bus 115 and detects boundaries using an algorithm such as Rabin to delineate chunks of data in system memory 103 and generates fingerprints using algorithms such as hashing algorithms like SHA-1 or MD-5. The deduplication engine 105 accesses the deduplication dictionary 107 to determine if a fingerprint is already included in the deduplication dictionary 107. According to various embodiments, the deduplication dictionary 107 is maintained in persistent storage and maps chunk fingerprints to chunk storage locations. Datastore suitcases, references, metadata, etc., may be created or modified based on the result of the dictionary lookup.

If the data needs to be transferred to persistent storage, the optimization software stack will communicate to the CPU 111 the final destination DMA addresses for the data. The DMA addresses can then be used to transfer the data through one or more bus bridges 117 and/or 127 and secondary buses 119 and/or 129. In example of a secondary bus is a peripheral component interconnect (PCI) bus 119. Peripherals 121, 123, 125, 131, and 133 may be peripheral components and/or peripheral interfaces such as disk arrays, network interfaces, serial interfaces, timers, tape devices, etc.

FIG. 2A illustrates a particular example of a mechanism for delineating data chunks. FIG. 2B illustrates a particular example of a mechanism for managing data chunks. It should be noted that although a particular mechanism is described, a wide variety of mechanisms can be used. According to various embodiments, object map file X 201 includes offset 203, index 205, and lname 207 fields. In particular embodiments, each chunk in the object map for file X is 8K in size. In particular embodiments, each data chunk has an index of format <Datastore Suitcase ID>. <Data Table Index>. For example, 0.1 corresponds to suitcase ID 0 and datatable index 1, while 2.3 corresponds to suitcase ID 2 and database index 3. The chunks corresponding to offsets OK, 8K, and 16K all reside in suitcase ID 0 while the data table indices are 1, 2, and 3. The lname field 207 is NULL in the object map because each chunk has not previously been referenced by any file.

FIG. 2B illustrates one example of a datastore suitcase corresponding to the object map file X 201. According to various embodiments, datastore suitcase 271 includes an index portion and a data portion. The index section includes indices 253, data offsets 255, and data reference counts 257. The data section includes indices 253, data 261, and last file references 263. According to various embodiments, arranging a data table 251 in this manner allows a system to perform a bulk read of the index portion to obtain offset data to allow parallel reads of large amounts of data in the data section.

According to various embodiments, datastore suitcase 251 includes three offset reference count pairs which map to the data chunks of the object map file X 201. In the index portion, index 1 corresponding to data in offset-data chunk A has been referenced once. Index 2 corresponding to data in offset-data chunk B has been referenced once. Index 3 corresponding to data in offset-data chunk C has been referenced once. In the data portion, index 1 includes data chunk A and a reference to File X 201 which was last to place a reference on the data chunk A. Index 2 includes data chunk B and a reference to File X 201 which was last to place a reference on the data chunk B. Index 3 includes data chunk C and a reference to File X 201 which was last to place a reference on the data chunk C.

FIG. 3 illustrates multiple dictionaries assigned to different fingerprints. According to various embodiments, the fingerprints values are checksums, SHA/SHA1/SHA-256 hash values. In particular embodiments, dictionary 301 is a deduplication dictionary used by a first node and includes fingerprint ranges from 0x0000 0000 0000 0000-0x0000 0000 FFFF FFFF. Dictionary 351 is used by a second node and includes fingerprint ranges from 0x0000 0001 0000 0000-0X0000 0001 FFFF FFFF. Fingerprints 311 within the range for dictionary 301 are represented by symbols a, b, and c for simplicity. Fingerprints 361 within the range for dictionary 351 are represented by symbols i, j, and k for simplicity. According to various embodiments, each fingerprint in dictionary 301 is mapped to a particular storage location 321 such as location 323, 325, or 327. Each fingerprint in dictionary 351 is mapped to a particular storage location 371 such as location 373, 375, and 377.

Having numerous small chunks increases the likelihood that duplicates will be found. However, having numerous small chunks decreases the efficiency of using the dictionary itself as well as the efficiency of using associated object maps and datastore suitcases.

FIG. 4 illustrates a particular example of a technique for performing reduced data transfer write operations. According to various embodiments, a compute node receives a write data stream at 401. In particular embodiments, the compute node performs write data stream chunking at 403. The compute node may divide the write data stream into fixed size chunks or variable size chunks. The compute node may also perform analysis to identify chunk boundaries. In particular embodiments, the data stream is divided into chunks to allow for deduplication, although chunking may also be useful in a variety of other applications. At 405, fingerprints are generated for the chunks. Fingerprints may be checksums, hash values, or any other sequence that can be used to identify individual chunks.

At 407, the compute node uses a negative acknowledgement (N-ACK) protocol to communicate the fingerprints it has just calculated. The scale out node receives the fingerprints and compares the fingerprints it receives with the fingerprints of chunks locally stored at 409. If it is determined that received fingerprints correspond to fingerprints already stored at 411, reference counts are updated for the chunks at 413 and an object is created for the data stream at 415.

If it is determined that received fingerprints do not correspond to fingerprints already stored at 411, the scale out node requests the missing chunks at 423. The scale out node also stores the fingerprints at 425. Reference counts are initiated at 427 and an object map is created for the data stream at 429.

FIG. 5 illustrates a particular example of a technique for performing accelerated deduplication. At 501, a data stream is received. According to various embodiments, the data stream is data received as part of an inline or post process operation. At 503, a deduplication accelerator perform chunk boundary identification and chunk fingerprinting. Chunk boundary identification may entail selecting boundaries used in deduplication. In particular embodiments, chunk boundaries are identified upon detecting particular bit sequences, patterns, or arrangements before and/or after performing some operation on the data. Chunk fingerprinting may entail calculating an identifier such as a hash that can be used to identify the chunk with reasonable certainty.

According to various embodiments, a general purpose processor such as a CPU maintains a state machine used for deduplication, but offloads the chunk boundary determination and chunk fingerprinting operations to the deduplication accelerator at 505. In particular embodiments, a deduplication dictionary is accessed using the chunk identifier at 507. According to various embodiments, the deduplication dictionary maintains numerous chunk fingerprints and corresponding information that can be used to identify their location in persistent storage. At 509, it is determined whether a delineated chunk has previously been written to persistent storage. It the delineated chunk has previously been written, reference counts may be updated but the data need not be stored again. If the delineated chunk has not previously been written, filemaps, datastore suitcases, and the deduplication dictionary may be updated as necessary at 511.

A variety of devices and applications can implement particular examples of the present invention. FIG. 6 illustrates one example of a computer system. According to particular example embodiments, a system 600 suitable for implementing particular embodiments of the present invention includes a processor 601, a memory 603, an interface 611, and a bus 615 (e.g., a PCI bus). When acting under the control of appropriate software or firmware, the processor 601 is responsible for such tasks such as optimization. Various specially configured devices can also be used in place of a processor 601 or in addition to processor 601. The complete implementation can also be done in custom hardware. The interface 611 is typically configured to send and receive data packets or data segments over a network. Particular examples of interfaces the device supports include Ethernet interfaces, frame relay interfaces, cable interfaces, DSL interfaces, token ring interfaces, and the like.

In addition, various very high-speed interfaces may be provided such as fast Ethernet interfaces, Gigabit Ethernet interfaces, ATM interfaces, HSSI interfaces, POS interfaces, FDDI interfaces and the like. Generally, these interfaces may include ports appropriate for communication with the appropriate media. In some cases, they may also include an independent processor and, in some instances, volatile RAM. The independent processors may control such communications intensive tasks as packet switching, media control and management.

According to particular example embodiments, the system 600 uses memory 603 to store data and program instructions and maintained a local side cache. The program instructions may control the operation of an operating system and/or one or more applications, for example. The memory or memories may also be configured to store received metadata and batch requested metadata.

Because such information and program instructions may be employed to implement the systems/methods described herein, the present invention relates to tangible, machine readable media that include program instructions, state information, etc. for performing various operations described herein. Examples of machine-readable media include hard disks, floppy disks, magnetic tape, optical media such as CD-ROM disks and DVDs; magneto-optical media such as optical disks, and hardware devices that are specially configured to store and perform program instructions, such as read-only memory devices (ROM) and programmable read-only memory devices (PROMs). Examples of program instructions include both machine code, such as produced by a compiler, and files containing higher level code that may be executed by the computer using an interpreter.

Although many of the components and processes are described above in the singular for convenience, it will be appreciated by one of skill in the art that multiple components and repeated processes can also be used to practice the techniques of the present invention.

While the invention has been particularly shown and described with reference to specific embodiments thereof, it will be understood by those skilled in the art that changes in the form and details of the disclosed embodiments may be made without departing from the spirit or scope of the invention. It is therefore intended that the invention be interpreted to include all variations and equivalents that fall within the true spirit and scope of the present invention.

Consequently, the techniques and mechanisms of the present invention provide a pipeline that implements a chunk boundary calculation algorithm as well as a fingerprint algorithm in the same pipeline stage. In particular embodiments, chunk boundary calculation and fingerprint calculation are performed in a single pass. Bus data transfers are reduced.

Claims

1. A system comprising:

a processor configured to maintain a state machine designating a plurality of memory areas for chunk boundary identification and chunk fingerprinting for a data stream; and
a deduplication accelerator configured to access the designated memory areas to delineate a respective chunk boundary and determine a respective chunk fingerprint for each of a plurality of data chunks in a single pipeline phase.

2. The system recited in claim 1, the system further comprising:

a deduplication dictionary configured to indicate whether a designated chunk has previously been written to persistent storage.

3. The system recited in claim 2, wherein the system is configured to communicate to the processor a final destination direct memory address for the designated chunk when it is determined that the designated chunk has not previously been written to persistent storage.

4. The system recited in claim 2, wherein the deduplication dictionary includes a plurality of chunk identifiers corresponding to a plurality of storage locations for the plurality of data chunks.

5. The system recited in claim 1, wherein chunk boundary calculation and chunk fingerprint calculation are performed in a single pass.

6. The system recited in claim 1, wherein the processor is configured to perform data stream optimization without performing chunk boundary calculation and chunk fingerprint calculation on the data stream.

7. The system recited in claim 1, wherein determining the respective chunk fingerprint comprises calculating a hash for the respective chunk delineated by identified chunk boundaries.

8. The system recited in claim 1, wherein the deduplication accelerator is an application specific integrated circuit (ASIC).

9. The system recited in claim 1, wherein the deduplication accelerator is a programmable logic device.

10. A method comprising:

maintaining a state machine at a processor, the state machine designating a plurality of memory areas for chunk boundary identification and chunk fingerprinting for a data stream; and
accessing the designated memory areas with a deduplication accelerator to delineate a respective chunk boundary and determine a respective chunk fingerprint for each of a plurality of data chunks in a single pipeline phase.

11. The method recited in claim 10, the method further comprising:

accessing a deduplication dictionary to indicate whether a designated chunk has previously been written to persistent storage.

12. The method recited in claim 11, the method further comprising:

communicating to the processor a final destination direct memory address for the designated chunk when it is determined that the designated chunk has not previously been written to persistent storage.

13. The method recited in claim 11, wherein the deduplication dictionary includes a plurality of chunk identifiers corresponding to a plurality of storage locations for the plurality of data chunks.

14. The method recited in claim 10, wherein chunk boundary calculation and chunk fingerprint calculation are performed in a single pass.

15. The method recited in claim 10, wherein the processor is configured to perform data stream optimization without performing chunk boundary calculation and chunk fingerprint calculation on the data stream.

16. The method recited in claim 10, wherein determining the respective chunk fingerprint comprises calculating a hash for the respective chunk delineated by identified chunk boundaries.

17. The method recited in claim 10, wherein the deduplication accelerator is an application specific integrated circuit (ASIC).

18. The method recited in claim 10, wherein the deduplication accelerator is a programmable logic device.

19. One or more computer readable media having instructions stored thereon for performing a method, the method comprising:

maintaining a state machine at a processor, the state machine designating a plurality of memory areas for chunk boundary identification and chunk fingerprinting for a data stream; and
accessing the designated memory areas with a deduplication accelerator to delineate a respective chunk boundary and determine a respective chunk fingerprint for each of a plurality of data chunks in a single pipeline phase.

20. The one or more computer readable media recited in claim 19, the method further comprising:

accessing a deduplication dictionary to indicate whether a designated chunk has previously been written to persistent storage.
Patent History
Publication number: 20150039571
Type: Application
Filed: Oct 20, 2014
Publication Date: Feb 5, 2015
Patent Grant number: 9569456
Applicant: Dell Products L.P. (Round Rock, TX)
Inventors: Goutham Rao (Los Altos, CA), Vinod Jayaraman (San Francisco, CA)
Application Number: 14/518,063
Classifications
Current U.S. Class: Data Cleansing, Data Scrubbing, And Deleting Duplicates (707/692)
International Classification: G06F 17/30 (20060101);