Extent-Map Prefetching for Faster Sparse File Restore

Resolve Bottlenecks,
Find Innovative Solutions
Generate Solutions

Solution Overview

Problem

Existing deduplication storage systems face inefficiencies in extent-based reads due to wasteful I/O operations and inadequate prefetching mechanisms, which fail to identify and prefetch the exact regions of a file that will be read, leading to reduced read performance during data restoration.

Innovation Solution

Implementing a method that encodes an extent map identifying valid data interspersed with holes, storing it in a network client or filesystem, and using this map to generate prefetches that target only valid data regions, potentially utilizing multi-streamed restore components for parallel read-ahead operations.

Engineering Contradictions & Design Principles

VSEngineering Contradiction Analysis

1Speed

If traditional prefetching is used for extent-based reads, then read performance is improved, but wasteful I/O operations occur when prefetching into holes

Engineering Contradiction:
Improveread performanceVSAvoidwasteful I/O operations
Core Design Contradiction:
SpeedVSLoss of energy

Solution Approach 1:

The system performs preliminary actions by issuing prefetch requests for extent data before actual read operations occur. The extent map is used to pre-identify valid data regions and issue targeted prefetch requests, ensuring data is loaded into the read-ahead cache before needed, thus improving read performance without wasting I/O on hole regions.

Inventive Principle:
Principle #10Preliminary action

Solution Approach 2:

The invention extracts and removes the problematic element (holes) from the prefetching process. By using the extent map to identify valid extents, the system selectively prefetches only actual data regions and skips over holes, eliminating wasteful I/O operations while maintaining efficient read performance.

Inventive Principle:
Principle #2Taking out (Extraction)

2Speed

If prefetch horizon is increased to compensate for slow storage, then read performance is improved, but more I/O operations are wasted on holes

Engineering Contradiction:
Improveread performanceVSAvoideffective I/O utilization
Core Design Contradiction:
SpeedVSProductivity

Solution Approach 1:

The system applies local quality by treating different regions of the file differently based on their validity. Using the extent map, the system identifies which regions contain actual data and which are holes, then applies prefetching selectively only to valid extents. This localized approach ensures I/O operations are productive and avoid wasting resources on hole regions.

Inventive Principle:
Principle #3Local quality

3Measurement precision

If extent map is stored in network client, then prefetch precision is improved, but network client complexity increases

Engineering Contradiction:
Improveprefetch precisionVSAvoidnetwork client complexity
Core Design Contradiction:
Measurement precisionVSDevice complexity

Solution Approach 1:

The extent map acts as an intermediary data structure that enables precise prefetching. By storing the extent map in the network client, the system gains the ability to precisely identify valid data regions and issue accurate prefetch requests, while the extent map itself serves as a compact representation that doesn't excessively increase client complexity.

Inventive Principle:
Principle #24Intermediary (Mediator)

4Productivity

If multi-streamed restore is used, then data restoration throughput is improved, but system complexity increases

Engineering Contradiction:
Improvedata restoration throughputVSAvoidsystem complexity
Core Design Contradiction:
ProductivityVSDevice complexity

Solution Approach 1:

The system applies segmentation by dividing the restore operation into multiple parallel streams. Each stream independently processes different portions of the file using the extent map to identify valid extents, enabling concurrent data restoration that improves throughput while the modular stream-based architecture manages complexity through clear separation of processing tasks.

Inventive Principle:
Principle #1Segmentation

Data Source

PatentUS12524346B2Extent restore performance using intelligent client-side recipe-based prefetching
Publication Date: 2026.01.13 DELL PROD LP
  • US12524346B2 patent drawing
  • US12524346B2 patent drawing
  • US12524346B2 patent drawing

AI summary

Improving read performance using pre-fetches by encoding an extent map provided by an application executed on a client, where the extent map identifies valid data of the file as extents that may be interspersed with holes constituting invalid data. A server-based filesystem interprets the extent map as a read receipt to bring the right extents in memory ahead of a read request. The extents of the extent map are prefetched at a prefetch read horizon. Because the client is aware of the application-resident extent map, the prefetch operations can intelligently skip over the holes. Multi-stream restores using multiple streams to issue read-ahead operations for the pre-fetches in parallel can also be accommodated.