WO2004053650A2 - Data-aware data flow manager - Google Patents

Data-aware data flow manager Download PDF

Info

Publication number
WO2004053650A2
WO2004053650A2 PCT/US2003/039223 US0339223W WO2004053650A2 WO 2004053650 A2 WO2004053650 A2 WO 2004053650A2 US 0339223 W US0339223 W US 0339223W WO 2004053650 A2 WO2004053650 A2 WO 2004053650A2
Authority
WO
WIPO (PCT)
Prior art keywords
data
cache
storage
computer
flow manager
Prior art date
Application number
PCT/US2003/039223
Other languages
French (fr)
Other versions
WO2004053650A3 (en
Inventor
Wei Liu
Steven H. Kahle
Original Assignee
Infabric Technologies, Inc.
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Infabric Technologies, Inc. filed Critical Infabric Technologies, Inc.
Priority to AU2003297816A priority Critical patent/AU2003297816A1/en
Publication of WO2004053650A2 publication Critical patent/WO2004053650A2/en
Publication of WO2004053650A3 publication Critical patent/WO2004053650A3/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F12/00Accessing, addressing or allocating within memory systems or architectures
    • G06F12/02Addressing or allocation; Relocation
    • G06F12/08Addressing or allocation; Relocation in hierarchically structured memory systems, e.g. virtual memory systems
    • G06F12/0802Addressing of a memory level in which the access to the desired data or data block requires associative addressing means, e.g. caches
    • G06F12/0888Addressing of a memory level in which the access to the desired data or data block requires associative addressing means, e.g. caches using selective caching, e.g. bypass
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F12/00Accessing, addressing or allocating within memory systems or architectures
    • G06F12/02Addressing or allocation; Relocation
    • G06F12/08Addressing or allocation; Relocation in hierarchically structured memory systems, e.g. virtual memory systems
    • G06F12/0802Addressing of a memory level in which the access to the desired data or data block requires associative addressing means, e.g. caches
    • G06F12/0866Addressing of a memory level in which the access to the desired data or data block requires associative addressing means, e.g. caches for peripheral storage systems, e.g. disk cache
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F3/00Input arrangements for transferring data to be processed into a form capable of being handled by the computer; Output arrangements for transferring data from processing unit to output unit, e.g. interface arrangements
    • G06F3/06Digital input from, or digital output to, record carriers, e.g. RAID, emulated record carriers or networked record carriers
    • G06F3/0601Interfaces specially adapted for storage systems
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F3/00Input arrangements for transferring data to be processed into a form capable of being handled by the computer; Output arrangements for transferring data from processing unit to output unit, e.g. interface arrangements
    • G06F3/06Digital input from, or digital output to, record carriers, e.g. RAID, emulated record carriers or networked record carriers
    • G06F3/0601Interfaces specially adapted for storage systems
    • G06F3/0668Interfaces specially adapted for storage systems adopting a particular infrastructure
    • G06F3/0671In-line storage system
    • G06F3/0673Single storage device

Definitions

  • This application relates generally to computers, and more specifically to data flow management.
  • Hardware developers have responded by developing faster hard drives, larger hard drive caches, and more bandwidth between storage devices and CPUs. Despite the dazzling increase in performance, storing or retrieving data or code from a hard drive remains one of the most significant bottlenecks to increased performance. What is needed is a method and system to speed the transfer of data and code to both local and remote storage.
  • the present invention provides a method and system directed to reducing the bottleneck to storage.
  • a data-aware data flow manager (DADFM) is inserted between storage and a process or device requesting access to the storage.
  • DADFM data-aware data flow manager
  • an already- existing data cache is moved out of the direct data paths and supplemented with one or more components of a DADFM.
  • the data-aware data flow manager determines which data to cache and which data to pipe directly through. Through intelligent management and caching of data flow, the data- aware data flow manager is able to avoid some of the latencies associated with caches that front storage devices.
  • the data-aware data flow manager may determine whether to cache data or pipe it directly through based on many factors including type of data requested, state of cache, state of I/O components, and user or system policies.
  • the data-aware data flow manager provides a mechanism for flushing the cache to avoid or alleviate cache stress conditions.
  • the mechanism may involve one or more of monitoring clean and dirty lines within the cache, pacing the flush, flushing the cache during relatively idle times or when the stress on the cache exceeds a threshold, avoiding flush during certain read requests, eliminating the need of reads waiting for a flush and read-induced writes, routing data directly through while bypassing the cache, or taking other measures to improve the performance of the system.
  • the data- aware data flow manager provides a mechanism for switching cache write policies dynamically in order to alleviate a cache or storage system stress condition.
  • the mechanism may involve one or more of examining data access characteristics, state of cache, state of I/O components or other factors, dynamically choosing write through, write back, write invalidate, routing data directly through while bypassing the cache, or taking other measures to improve the performance of the system.
  • the data-aware data flow manager attempts to predict data access patterns. Using these predictions, the data-aware data flow manager attempts to obtain data before it is requested, readjust I/O transfer sizes to accommodate for an unusual pattern of reads or writes, or take other actions.
  • the data-aware data flow manager attempts to group writes together.
  • the data-aware data flow manager may cache writes until a predefined amount of data is available to write altogether.
  • the data-aware data flow manager may read more data from storage than was requested by a server.
  • the extra data may be cached in a memory of the data-aware data flow manager in anticipation of future read requests from the server.
  • DADFMs may be implemented in one or more places along a data path to increase performance.
  • the DADFM is incorporated on a network appliance that sits between a mass storage device and a device that requests access to the data on the storage device.
  • the DADFM is implemented on one or more devices that request data.
  • components of the DADFM may reside, for example, in an output driver layer of an operating system or an application executing on the device and may use system memory as cache.
  • a DADFM may be implemented using a host bus adapter or RAID card and may use host memory or card memory, respectively, as cache.
  • Traditional RAID cards typically have at least one microprocessor, an operating system, and some access to system resources.
  • Other RAID controllers are implemented on a single chip that includes its own cache and one or more microprocessors. The resources of either type of RAID controller may be used to implement a DADFM to speed throughput to and from storage managed by the RAID controller.
  • a Network Attached Storage device gives Local Area Network (LAN) access to a file server that manages mass storage.
  • a DADFM may be implemented using the components of a NAS product, which is essentially a computer with an operating system and memory, to deliver better performance.
  • Switches in network fabric may include a microprocessor and memory.
  • a DADFM may be implemented using the components of a switch to increase performance, particularly as the capabilities of fabric switches increases.
  • the DADFM may receive input from a content manager module.
  • the input may indicate the type of content contained in a data access and may take the form of XML tags or a type of meta-data or other embedded flags or data. This input may be considered in addition to other information about the data to determine the data flow and caching strategy for the data being accessed. In this manner the DADFM may become a "content aware" data flow manager.
  • the DADFM may receive input from an application manager module.
  • the input may identify an application associated with an access request.
  • the application manager module may use filename extensions, other file attributes, meta-data associate with a file, data tags, or other information about the data access to determine the application requesting the data access.
  • the application manager module may interact directly with the application to determine the application requesting the data access.
  • the DADFM may use this input together with other information to determine the data flow and caching strategy to use for the data being accessed. In this manner, the DADFM may become an "application aware" data flow manager.
  • FIGURE 1 is a block diagram representing an exemplary environment in which the invention may be practiced in accordance with some aspects of the invention
  • FIGURE 2 is a block diagram illustrating a more detailed view of a data- aware data flow manager in accordance with some aspects of the invention.
  • FIGURE 3 is a block diagram representing a more detailed view of an exemplary environment in which the invention may be practiced in accordance with some aspects of the invention;
  • FIGURE 4 is a block diagram representing exemplary components of a data- aware data flow manager in accordance with some aspects of the invention.
  • FIGURE 5 is a dataflow diagram that generally represents exemplary steps that may occur in an environment that operates in accordance with some aspects of the invention
  • FIGURE 6 is a dataflow diagram that generally represents exemplary steps that may occur to determine whether to cache or not cache data
  • FIGURE 7 is a dataflow diagram that generally represents exemplary steps that may occur when a server sends a read request in accordance with some aspects of the invention.
  • FIGURE 8 is a dataflow diagram that generally represents exemplary steps that may occur when a server sends a write request in accordance with some aspects of the invention.
  • FIGURE 9 is a dataflow diagram that generally represents exemplary steps that may occur when data-aware data flow manager initiates and handles a flush request in accordance with some aspects of the invention. Detailed Description
  • a network includes any method or medium for transmitting information from one device to another, unless the context clearly dictates otherwise.
  • a network may interconnect computer devices and storage devices and switches, routers or hubs (sometimes referred to as a storage area network).
  • a network may interconnect devices that are relatively local to each other (sometimes referred to as a local area network), devices that are relatively spread out with respect to each other (sometimes referred to as a wide area network), or some combination thereof.
  • a network may include wired or wireless communication links.
  • a widely recognized network is the Internet which connects millions of devices around the world.
  • FIGURE 1 is a block diagram representing an exemplary environment in which the invention may be practiced in accordance with some aspects of the invention.
  • the environment includes server 105, fabric 115, data-aware data flow manager 120 and storage 125.
  • the devices shown in the environment are interconnected by a network having communication links.
  • data-aware data flow manager 120 is incorporated in server 105, fabric 115, or storage 125.
  • data-aware data flow manager 120 and storage 125 are incorporated in server 105.
  • Data-aware data flow manager 120 may be incorporated at multiple places within the environment. For example, data-aware data flow manager 120 may be incorporated on server 105 or storage 125 in addition to, or alternatively from, being inserted between fabric 115 and storage 125.
  • the communication links shown represent any medium capable of transmitting information.
  • one or more communication links are fiber channels —especially those that need a lot of bandwidth. It will be recognized, however, that any type of communication link may be used without departing from the spirit or scope of the invention.
  • Server 105 comprises a device or process that provides services.
  • server 105 receives requests from one or more clients and performs a service for the requesting client.
  • Server 105 may, for example, provide Web pages, files, database access, audio or video streams, electronic messages, or other services for clients. At times, server 105 may also take on one or more roles of a client in requesting data or services from another wired or wireless device.
  • Server 105 includes one or more host bus adapters 110. Each host bus adapter 110 provides an interface to a communication link for communicating with other devices (e.g., storage 125 via fabric 115 and data-aware data flow manager 120).
  • Server 105 may include an operating system and memory. Server 105 may use part of its memory as a cache.
  • Fabric 115 represents a network connecting server 105 and data-aware data flow manager 120. It should be understood that fabric 115 may include routers, switches, or other devices (not shown) for routing data between server 105 and data- aware data flow manager 120. Fabric 115 may also be connected to and provide access to other devices (not shown). In some embodiments of the invention, fabric 115 is not included; rather, server 105 either includes the storage or is directly connected to the storage through a communication link.
  • Data-aware data flow manager 120 is a device or process that intelligently caches or does not cache data, depending on a variety of factors which are described in more detail below. Briefly, when data-aware data flow manager 120 receives data that needs to be written to storage 125 or data that has been retrieved from storage 125, data-aware data flow manager 120 may decide to cache the data or send the data through without caching the data.
  • Data-aware data flow manager 120 may be constructed to appear as a storage device to server 105 and as a server to storage 125. That is, when server 105 sends a request to store data, data-aware data flow manager 120 may store the data in its own memory or other storage and inform server 105 that the data has been stored. Server 105 will typically not know that the data has not been stored to storage 125; rather, it thinks, based on the reply from data-aware data flow manager 120, that the data has been stored in storage 125. Similarly, in responding to a request there may be little or no different (from storage 125's perspective) between interacting with data-aware data flow manager 120 or server 105.
  • storage 125 might not know that it is interacting with data- aware data flow manager 120 instead of server 105.
  • the feature of being transparent allows data-aware data flow manager 120 to be inserted essentially anywhere between server 105 and storage 125 — even if server 105 and storage 125 reside in the same device, for example.
  • Storage 125 includes any computer-readable media which stores data.
  • Computer storage media can include volatile and nonvolatile, removable and non- removable media implemented in any method or technology for storage of information, such as computer readable instructions, data structures, program modules or other data. Examples of computer storage media include RAM, ROM, EEPROM, flash memory or other memory technology, CD-ROM, digital versatile disks (DND) or other optical storage, magnetic cassettes, magnetic tape, magnetic disk storage or other magnetic storage devices, or any other medium that can store the information and that can be accessed by a computing device. Most commonly, storage 125 will be some sort of mass storage device, such as one or more hard disk drives.
  • storage 125 may be configured, for example, as a redundant array of inexpensive disks (RAID) which include a controller, as just a bunch of disks (JBOD), or in some other configuration.
  • RAID redundant array of inexpensive disks
  • JBOD bunch of disks
  • storage 125 may comprise one or more hard drives. It will be recognized that the type of storage 125 may vary depending on application without departing from the spirit or scope of the present invention.
  • Each computing device mentioned herein e.g., server 105, data-aware data flow manager 120, and the like
  • Such devices may include, for example, computers, network appliances, multiprocessor systems, microprocessor-based or programmable consumer electronics, network PCs, cell phones, smart phones, pagers, radio frequency (RF) devices, infrared (IR) devices, CBs, personal digital assistants (PDAs), POCKET PCs, wearable computers, integrated devices combining one or more of the preceding devices, embedded microprocessors, and the like.
  • RF radio frequency
  • IR infrared
  • CBs personal digital assistants
  • PDAs personal digital assistants
  • POCKET PCs wearable computers, integrated devices combining one or more of the preceding devices, embedded microprocessors, and the like.
  • FIGURE 2 is a block diagram representing a more detailed view of a data- aware data flow manager in accordance with some aspects of the invention.
  • Data- aware data flow manager 120 includes target module 205, intelligent data flow manager (IDFM) module 210, host module 215, and data-aware cache 220.
  • IDFM intelligent data flow manager
  • Target module 205 includes logic and protocols needed to make data-aware data flow manager 120 appear as a target device.
  • a server (not shown) having a host bus adapter can communicate with data-aware data flow manager 120 via target module 205 as if data-aware data flow manager 120 were a storage device.
  • a target module acts as an interface to a requestor.
  • host module 215 includes logic and protocols needed to make data-aware data flow manager 120 appear as a host device.
  • data-aware data flow manager 120 can communicate with a storage device (or other downstream device) as if data-aware data flow manager 120 were a host device.
  • a host module acts as an interface to a storage device (or other downstream device).
  • IDFM module 210 is used to make various decisions with respect to data passing through data-aware data flow manager 120. Among its tasks, IDFM module 210 determines whether data should be piped directly through data-aware data flow manager 120 (e.g., directly from target module 205 to host module 215), or whether the data should be cached in data-aware cache 220. As this is described in more detail below, this decision making will not be described in more detail here. Data-aware cache 220 stores and retrieves data in accordance with instructions from IDFM module 210. Data-aware cache 220 may be implemented in any type of memory, volatile or non- volatile.
  • Data-aware data flow manager 120 may contain one or more host modules 215, each handling one or more protocols in communication with one or more storage devices (e.g. one fast storage device and one slow storage device). Data- aware data flow manager 120 may determine whether to pipe the data to the fast or slow storage device based on data patterns, attributes related to content or application, user or system policies, or other factors.
  • FIGURE 3 is a block diagram representing an exemplary environment in which the invention may be practiced in accordance with some aspects of the invention.
  • the environment includes a data-aware data flow manager 120, data- aware target engine 305, SCSI mid-layer 310, target mode driver 315, host mode driver 320, hardware abstraction layer (HAL) 325, input/output controllers (IOCs) 335-338, server 105, storage controller 345, and disk 350.
  • Data-aware target engine 305 includes a SCSI target engine (STE) (not shown). The STE may bridge data sent to it between target mode driver 315 and host mode driver 320. This may allow, for example, for data to be transferred from server 105, to disk 350.
  • SCSI target engine SCSI target engine
  • the STE may also be used by data-aware target engine 305 to send or receive data from a device or process external to data-aware target engine 305.
  • an STE comprises a data pipe engine that transfers data between two devices.
  • the data pipe engine may use SCSI protocols or other common communication protocols.
  • Data-aware target engine 305 uses SCSI mid-layer 310 to send data and commands to and receive data and responses from disk 350. These data and commands may be relayed through other processes, components, or devices, such as host mode driver 320, one or more of IOCs 335-338, and storage controller 345. Generally, data-aware target engine 305 can communicate data and commands to other processes, components, or devices, such as host mode driver 320, and other downstream devices.
  • HAL 325 provides an interface to send data to and receive data from hardware, such as IOCs 335-338. HAL 325 may be structured to provide a certain set of interfaces to software, regardless of the capabilities of the hardware.
  • HAL 325 may be modified to work with different hardware or different low level communication protocols while maintaining the same set of software interfaces.
  • a software program interacting with HAL 325 can be ported to other hardware platforms or communication protocols without requiring that the software program be rewritten.
  • a HAL that presents the same software interface can be constructed for the other hardware platforms or communication protocols.
  • Dotted line 330 shows an exemplary separation between software and hardware within data- aware data flow manager 120 with components below the line being implemented in hardware and components about the line being implemented in software. It will be recognized, however, that any components within data-aware data flow manager 120 may be implemented in hardware, in software, or in some combination thereof without departing from the spirit or scope of the invention.
  • IOCs 335-338 send data or commands to and receive data or commands through communication links attached to IOCs 335-338.
  • the communication links may be implemented in any technology now existing or hereafter invented without departing from the spirit or scope of the present invention.
  • Some current communication link technologies include Ethernet, fiber channel, SCSI, iSCSI, InfiniBand, EIDI, USB, Firewire, and the like.
  • Target mode driver 315 receives commands and data from server 105.
  • Target mode driver 315 may include what is typically found on a storage controller, such as storage controller 345.
  • target mode driver 315 may emulate the behavior of a storage controller when accessed by a server.
  • Data-aware data flow manager 120 may also emulate the behavior or a server (e.g., via host mode driver 320) when communicating with storage controller 345.
  • server 105 will not typically know that it is communicating with data-aware data flow manager 120; rather, it will think that it is communicating with a storage device.
  • storage controller 345 will not typically know that it is communicating with data-aware data flow manager 120; rather, it will think that it is communicating with a server.
  • a target mode driver such as target mode driver 315, does not initiate a conversation. Rather, the target mode driver responds to a conversation and then controls and finishes the conversation.
  • Host mode driver 320 sends data and commands received from SCSI mid- layer 310 to one or more of IOCs 337-338. Host mode driver 320 does this through HAL 325.
  • the HAL selects one or more of the IOCs through which to send the commands or data.
  • the selected IOCs send the commands or data to storage controller 345.
  • Storage controller 345 may then save the data on disk 350 or perform the command.
  • a command may include retrieving data from disk 350, for example.
  • HAL 325 receives data through one of IOCs 337-338. This data is sent from storage controller 345. HAL 325 relays this data to host mode driver 320.
  • Host mode driver 320 may make data-aware data flow manager 120 appear to be a server to storage controller 345.
  • a host mode driver initiates a conversation to send data or commands.
  • Storage controller 345 manages, controls, and provides access to disk 350.
  • Storage controller 345 typically includes its own host mode driver and target mode driver (not shown).
  • Disk 350 includes any computer storage medium readable or writable by a computing device.
  • Computer storage media can include volatile and nonvolatile, removable and non-removable media implemented in any method or technology for storage of information, such as computer readable instructions, data structures, program modules or other data. Examples of computer storage media include RAM, ROM, EEPROM, flash memory or other memory technology, CD-ROM, digital versatile disks (DND) or other optical storage, magnetic cassettes, magnetic tape, magnetic disk storage or other magnetic storage devices, or any other medium that can store the information and that can be accessed by a computing device. Disk 350 may include one or more computer storage medium devices.
  • FIGURE 4 is a block diagram representing exemplary components of a data- aware data flow manager in accordance with some aspects of the invention.
  • the components include data-aware cache 405, advanced flush manager 410, system stats manager 415, policies 420, fail-over manager 425, auto configuration manager 435, and SCSI target engine 440. It will be recognized, however, that not all of the components described in conjunction with FIGURE 4 are essential to every decision data-aware data flow manager 120 makes. Indeed, data-aware data flow manager 120 may make many of its decisions based on information from zero, one, or more of the components without departing from the spirit or scope of the invention.
  • data-aware data flow manager 120 may include fewer than all the components shown in FIGURE 4.
  • components may be split or merged, or implemented in hardware, in software, or in some combination thereof without departing from the spirit or scope of the invention.
  • Fail-over manager 425 detects certain condition events that indicate a failure.
  • At least three types of failures may occur.
  • the device upon which intelligent data flow manager 430 resides may crash, become totally disconnected from servers and storage, or otherwise become incapable of responding to or forwarding data.
  • the device upon which intelligent data flow manager 430 resides may lose one or more connections to a server or storage while maintaining at least one other connection to the server or storage.
  • the device upon which intelligent data flow manager 430 resides may lose all connections to a server or storage.
  • the first type of failure is known as a complete failure while the other types of failure are known as a partial failure.
  • fail-over manager 425 Upon detection of a failure, fail-over manager 425, notifies intelligent data flow manager 430 of the failure. Intelligent data flow manager 430 may then reconfigure or otherwise deal with the failure. For example, in response to a complete failure, intelligent data flow manager 430 may inform another redundant intelligent data flow manager (hereinafter sometimes referred to as "neighbor") (not shown) that the other intelligent data flow manager should take over the duties of intelligent data flow manager 430.
  • neighbor another redundant intelligent data flow manager
  • the redundant intelligent data flow manager may deduce that the intelligent data flow manager 430 has suffered a complete failure and may automatically take over the intelligent data flow manager 430' s functions. This may be detected if the intelligent data flow manager 430 ceases sending "I'm alive” or "heartbeat" messages to the other redundant intelligent data flow manager.
  • intelligent data flow manager 430 may reroute traffic to the server or storage through the one or more remaining connections to the server or storage. For example, fail-over manager 425 may indicate that one of IOCs (e.g., one of IOCs 335-338) has failed. Intelligent data flow manager 430 may then route communications over a non-failing IOC.
  • intelligent data flow manager 430 may use the paths of a redundant intelligent data flow manager (not shown) to access the server or storage.
  • intelligent data flow manager 430 may provide a path to a server or storage for a redundant intelligent data flow manager that has lost one or more paths to the server or storage.
  • a neighboring intelligent data flow manager may indicate that it no longer has a path to a server or to storage.
  • Intelligent data flow manager 430 may have a path to the server or the storage. Intelligent data flow manager 430 may pass data or commands to and from the other intelligent data flow manager through intelligent data flow manager 430's path.
  • Fail-over manager 425 may inform intelligent data flow manager 430 of an impending failure. For example, a power outage may activate an uninterruptible power supply (UPS). The UPS may be able to supply power for a limited amount of time. Fail-over manager 425 may indicate a pending complete failure to intelligent data flow manager 430. In response, intelligent data flow manager 430 may attempt to flush everything from cache (e.g., by informing advanced flush manager 410 of the pending shutdown). If necessary (e.g., if the time left before shutdown has reached a critical threshold), intelligent data flow manager 430 may direct that the cache be dumped into a local non-volatile memory. The local non-volatile memory may then be used to restore the cache when the device upon which the intelligent data flow manager 430 resides is brought back up.
  • UPS uninterruptible power supply
  • intelligent data flow manager 430 may stop assigning data to cache. For example, if a server is still trying to read or write data, intelligent data flow manager 430 may cease caching this data.
  • Fail-over manager 430 may be in charge of mirroring cache between intelligent data flow manager 430 and a redundant device.
  • Policies 420 include any user input which intelligent data flow manager 430 uses or may use in its decision-making process. In general, policies 420 take priority over other system preferences. Policies 420 may affect how intelligent data flow manager 430 caches data sent to or retrieved from certain storage volumes. For example, a policy may apply to data written to or retrieved from a storage identified by one logical unit number (LUN), but not to data written to or retrieved from storage identified by another LUN. A LUN identifies a virtual storage device that may span one, less than one, or more than one actual physical storage devices. Policies 420 may be applied on volume-by-volume basis or cache-by-cache basis. Policies 420 may be arranged hierarchically, wherein a policy that applies to a single cache or volume may take precedence over a policy that applies to a group of caches or volumes (or vice-versa).
  • LUN logical unit number
  • a policy may indicate whether one or more threads should be used by intelligent data flow manager 430.
  • a policy may indicate how cache should be mirrored on a redundant intelligent data flow manager.
  • a policy may indicate that dynamic multi-pathing should or should not be used. Multi-pathing means that a device has two or more paths by which it can transfer data to or from another device.
  • a policy may indicate a mapping from a volume to a particular cache.
  • One or more policies may affect the sizes of reads or writes that are sent to disk. For example, a policy may indicate what a preferred size for writing is. Writes may be cached until the preferred size is reached before being sent to disk. A policy may limit the size of a write to disk (e.g., to 128 kilobytes or some other number).
  • One or more policies may affect prefetching.
  • a policy may indicate that prefetching should or should not be done.
  • a policy may indicate that when a relatively large number of reads are being requested that additional data be prefetched in anticipation of a future read.
  • a policy may indicate that when data reads show a pattern (e.g., sequential), that a selected amount of data is prefetched in anticipation of another sequential read.
  • a policy may indicate that when a read is requested that more data than the read requested be retrieved from storage in the same request that is sent to the storage.
  • One or more policies may affect what data is cached and under what conditions. For example, a policy may indicate there should be no write-back caching, that only reads should be cached and not writes, or that only writes should be cached and not reads.
  • a policy may indicate that a certain volume should have a cache equal or greater in size than the volume. This may allow, for example, the data in the volume to be completely stored in the cache.
  • a policy may indicate that intelligent data flow manager 430 should not cache data written to a certain LUN.
  • a policy may indicate that when the stress of a cache exceeds a certain threshold, that the cache should be bypassed for certain types of data accesses (e.g., large reads or writes).
  • One or more policies may be related to flushing cache entries.
  • a policy may indicate that a cache entry may only remain in cache for a certain length of time before the cache entry should be written to a non- volatile storage.
  • a policy may indicate that a portion or all of the cache entries should be flushed on a particular schedule.
  • a policy may indicate how aggressively flushing should be performed. For example, in the case of an imminent complete failure (e.g., the system has lost power and is operating using the power generated by a UPS), policies may indicate the degree to which new items are placed (or not placed) in cache, how much bandwidth to storage is reserved for flushing to remote storage (as compared to how much bandwidth may be used to pass data to and from a server), when to flush to a local disk, and the like.
  • a policy may indicate the priority with which flushing should be done (e.g., CPU bandwidth, network bandwidth, and the like).
  • a policy may indicate the amount of flushing that should be done during a relatively idle time.
  • a policy may indicate the level of flushing that should occur when a threshold is exceeded for dirty cache.
  • a policy may indicate when cache should be bypassed (e.g., when dirty lines exceed a threshold, when the rate of write requests begins to degrade performance if the data associated with the write requests is cached, or when flushes are not keeping up with writes).
  • a policy may indicate which paths (e.g., in a multi-path system) may be used to flush. Each policy may be related to one or more caches.
  • a policy may indicate a level of logging. For example, one level of logging may be to log detailed data regarding all traffic. Another level of logging may be to log data regarding traffic to and from a certain volume. Another level of logging may be to log aggregate data collected about traffic.
  • a policy may indicate a sequence for recovering after a complete or partial failure. For example, if a cache was dumped to a local disk, the policy might indicate that the cache should be flushed to storage before any reads or writes from a server are processed. Alternatively, if the cache were dumped to a local disk, the policy might indicate that intelligent data flow manager 430 can service host requests after recovering the cache from the local disk.
  • a policy may indicate how upgrading should be done. For example, when intelligent data flow manager 430 has a redundant counterpart, a policy may indicate which intelligent data flow manager is primary and which is secondary. A policy may indicate how automatically upgrading should be done. In one embodiment, a policy indicates that a user should have more control over the upgrade process. A user may want to upgrade one of a pair of redundant intelligent data flow managers and then wait a while before upgrading the other redundant intelligent data flow manager. In another embodiment, a policy may indicate that after the upgrade an upgraded intelligent data flow manager automatically should automatically obtain configuration data from the un-upgraded intelligent data flow manager.
  • a policy may indicate that cache should be dumped to a local storage periodically. The policy may also indicate what period should be used in dumping the cache to the local storage.
  • One or more policies may affect what happens when a neighbor fails. For example, a policy may indicate that an intelligent data flow manager check more than just a "heart beat" to determine whether its neighbor has failed. For example, a policy may indicate that an intelligent data flow manager should check a special portion on a disk to determine whether its neighbor is still operating.
  • Policies in policies 420 may be added or modified through a user interface, a file, through SNMP (Simple Network Management Protocol), or some other mechanism without departing from the spirit or scope of the invention. Generally, a policy remains in effect until changed. It will be recognized that policies allow a mechanism for customizing an intelligent data flow manager's behavior for a particular product, manufacturer, or customer.
  • SNMP Simple Network Management Protocol
  • Intelligent data flow manager 430 may dynamically switch or override some policies based on cache statistics, data pattern, or other factors. For example, a policy may indicate that dirty data should be flushed periodically. However, upon detecting the system is under stress in handling server requests, intelligent data flow manager 430 may suspend flushing until the system is less busy.
  • intelligent data flow manager 430 determines whether to place the data into data-aware cache 405.
  • Data-aware cache 405 may determine how it replaces cache lines and what caching methodology it uses based on data usage patterns and the state of cache. If data-aware cache 405 determines that it needs to have one or more cache lines flushed, it informs intelligent data flow manager 430. Intelligent data flow manager 430 may then inform advanced flush manager 410 of the need to flush the one or more cache lines. In response to the information, intelligent data flow manager 430 may determine to flush other lines in anticipation of future need. The threshold of when to flush other lines may be set by policy. How aggressively other lines should be flushed may also be set by policy or other factors.
  • Data-aware cache 405 may also send other information to intelligent data flow manager 430.
  • Data-aware cache 405 may indicate 1) that there is not enough space in cache to cache the data; 2) hit/miss information related to the cache; 3) stress condition of the cache; or 4) information related to dirty lines in the cache. If data-aware cache 405 indicates that there is not enough space in the cache to cache the data, intelligent data flow manager 430 may determine to bypass storing the data in data-aware cache 405 and may instead send the data directly to a target or targets of the data (e.g., a server or one or more storage devices).
  • a target or targets of the data e.g., a server or one or more storage devices.
  • Data-aware cache 405 may indicate information regarding hit/miss performance of the cache including whether the request generates a hit, partial hit, or miss.
  • a partial hit occurs when some but not all of the data that is requested to be read or written is contained within the cache. For example, a server may request a number of blocks of data. Part of the data may be found in data-aware cache 405, while another part of the data might not exist in data-aware cache 405.
  • intelligent data flow manager 430 may forward the information (or a pointer thereto) to system stats manager 415 which may then update its statistics. Intelligent data flow manager 430 may also forward other information to system stats manager 415 including size of read or write, associated LUN or LUNs, and the like.
  • Data-aware cache 405 may inform intelligent data flow manager 430 of data- aware cache 405 's stress. Stress may include how much cache is free, if the data- aware cache 405 has enough cache free to service the request, or the extent to which the cache is dirty.
  • Data-aware cache 405 may inform intelligent data flow manager 430 regarding dirty lines including how many dirty lines of cache there are, whether the number of dirty lines has reached a threshold, whether a flush is needed, and the like. Intelligent data flow manager 430 may determine, based on this information, to bypass cache, take flushing measures (e.g., flush a certain number of dirty lines to disk), or take other action. Intelligent data flow manager 430, data-aware cache 405, fail-over manager 425, or some other component may synchronize cache with a redundant intelligent data flow manager (not shown).
  • Advanced flush manager 410 manages the pace and sets up the details of the flush.
  • Intelligent data flow manager 430 informs advanced flush manager 410 when to flush and from which cache flush to which storage device.
  • Advanced flush manager 410 may also store statistics regarding flushes, such as how big a flush is, how many items have been flushed, and the like.
  • Advanced flush manager 410 may communicate with one or more caches. Each cache may be mapped to one or more LUNs.
  • Advanced flush manager 410 may be connected to local storage and can dump cache to the local storage upon command.
  • System stats manager 415 may collect information associated with the traffic flowing through the system or information associated the system upon which intelligent data flow manager 430 operates.
  • Information associated with the data flowing through the system includes caching information (e.g., hits, misses, utilization, clean, dirty, and the like), how much data passes through the cache, how much data bypasses the cache, the size of the reads and the writes, or the sequential or non-sequential nature of the data.
  • Information associated with the system upon which intelligent data flow manager 430 operates includes data associated with the software and hardware.
  • Software includes the operating system or any other software executing on the system.
  • Hardware may include CPU, IOCs, RAM, ROM, buses, mass memory storage, type, speed and utilization of communication links or any other hardware included in the system.
  • the information collected by system stats manager 415 regarding traffic may be grouped by a LUN or a portion thereof. This may be done, for example, to detect a LUN's utilization and migrate data on the LUN to a less busy LUN or LUNs if needed.
  • What data system stats manager 415 collects may be determined by one or more policies. For example, based on a policy, system stats manager 415 may be instructed to monitor the bandwidth utilization of one or more links associated with one or more of the IOCs (not shown). System stats manager 415 may be further instructed to notify intelligent data flow manager 430 when a bandwidth utilized across the link or links exceeds a threshold. When the bandwidth exceeds the threshold, another path may be sought (if available) over which to send data.
  • intelligent data flow manager 430 queries system stats manager 415 to obtain information of interest. In other embodiments of the invention, system stats manager 415 notifies intelligent data flow manager 430 when it detects certain conditions.
  • System stats manager 415 may collect data from (or receive data associated with) data-aware cache 405, such as hits, misses, or any other data data-aware cache 405 generates.
  • System stats manager 415 may collect utilization information regarding hardware associated with intelligent data flow manager 430 (e.g., CPU, network, bus, ports, and memory utilization).
  • System stats manager 415 may keep history and enable intelligent data flow manager 430 to determine whether data accesses to a LUN are sequential in nature or not. Data accesses that are sequential may indicate data that should not be cached
  • Other data that may be collected include the number of each read and write and the sizes of the data read or written.
  • the size of the cache allocated for dirty and clean lines may be dynamically changed based on information collected by system stats manager 415. For example, if data collect indicates an unusual ratio of reads verses writes, the cache allocated for dirty and clean lines may be adjusted accordingly.
  • Auto configuration manager 435 includes a set of system preferences that indicate the defaults for setting up the various components of the system shown in FIGURES 3 and 4. These system preferences may be thought of as "default policies.” A system preference may apply until a user defines an overriding policy or intelligent data flow manager 430 switches the policy on the fly.
  • Auto configuration manager 435 may include predefined policies that are burned into a ROM or some other non- volatile memory. A policy in policies 420, however, will generally take precedence over a policy found in auto configuration manager 435.
  • Auto configuration manager 435 attempts to determine which IOCs are connected to servers and which IOCs are connected to storage. If auto configuration manager 435 detects a server connected to an IOC, auto configuration manager 435 may attempt to initialize a target mode driver to communicate with the server. If auto configuration manager 435 detects a storage device connected to an IOC, auto configuration manager 435 may attempt to initialize a host mode driver to communicate with the storage device.
  • Auto configuration manager 435 may determine how much memory is available for caching and may divide (or cause to be divided) the memory among cache used to mirror a neighbor's cache, cache used to cache reads, and cache used to cache writes accordingly.
  • Auto configuration manager 435 may try to determine whether a redundant intelligent data flow manager exists. If auto configuration manager 435 detects a neighbor, auto configuration manager 435 may then communicate with the neighbor.
  • auto configuration manager 435 may determine, for example, whether the system auto configuration manager 435 is operating on is recovering from a crash. If so, auto configuration manager 435 may obtain configuration information from the neighbor. Auto configuration manager 435 may also query the neighbor for its configuration. The neighbor's configuration may be used, for example, to determine an alternate path to a server or storage or to restore the neighbor's configuration should the neighbor crash.
  • intelligent data flow manager 430 may choose a path depending on the data requested or quality of service expected.
  • FIGURE 5 is a dataflow diagram that generally represents exemplary steps that may occur in an environment that operates in accordance with some aspects of the invention.
  • the process begins at block 505.
  • a server sends a request.
  • the request is received by a data- aware data flow manager.
  • the request may include a command or a request to read data from or write data to storage.
  • the data-aware data flow manager determines whether to cache data associated with the request. A process of determining whether to cache data associated with the request is described in more detail in conjunction with FIGURE 6.
  • the data-aware data flow manager responds to the request. If data was requested, the data is returned. If a request to write data was received, the data may be cached or not cached, written to an external storage device or not written to an external storage device, depending on policies, system preferences, and the state of the DADFM.
  • processing ends.
  • the process described above may be repeated each time a request is sent from a server.
  • FIGURE 6 is a dataflow diagram that generally represents exemplary steps that may occur to determine whether to cache or not cache data. The steps of
  • FIGURE 6 correspond to block 515 of FIGURE 5. The process begins at block 605.
  • the applicable policy or policies are applied. For example, a policy may indicate that there should be no write-back caching of data. If while this policy was under effect a server requested that data be stored, the data would be sent to storage according to the policy. DADFM state in conjunction with the data may indicate that because of cache stress or otherwise that other data should be flushed to the storage with the data that is currently being sent, for example.
  • system preferences are applied to the request sent by the server. For example, system preferences may indicate that non-sequential data should be stored in cache when the cache is not under stress. Provided that this system preference is not overridden by a policy (e.g., that there should be no write- back caching), data for a request for non-sequential data would be cached. The process returns at block 630.
  • FIGURE 7 is a dataflow diagram that generally represents exemplary steps that may occur when a server sends a read request in accordance with some aspects of the invention.
  • the process begins at block 705.
  • the server sends a read request.
  • the IOC that receives the read request forwards the read request to a target mode driver.
  • the target mode driver forwards the request to a SCSI target engine (STE).
  • the STE queues the request.
  • a determination is made as to whether the LUN to which the read request is destined is cached. If not, processing continues at block 750; otherwise, processing continues at block 735.
  • the IDFM forwards the read to a data- aware cache.
  • a data pointer (or a set of data pointers in a scatter gather list) is set to point at the data in the cache.
  • the IDFM further decides whether to use the DAC or not based on data access characteristics, state of cache, or other factors. If the decision is yes, processing branches to block 755; otherwise, processing branches to block 750. The branch to block 750 is useful in certain conditions.
  • a data pointer (or a set of data pointers in a scatter gather list) is set to point to one or more free cache lines that have been assigned to receive the data from the read request.
  • the STE allocates a buffer.
  • the STE forwards the read to the SCSI Mid-Layer (SML).
  • SML SCSI Mid-Layer
  • the IDFM updates the data-aware cache state.
  • the STE sends data to the target mode driver (TMD).
  • TMD target mode driver
  • the TMD sends the data to the IOC.
  • the IOC sends data to the server.
  • the server notifies the IOC that it has received the data.
  • the IOC notifies the TMD that the data was received.
  • the TMD notifies the STE that the data has been received.
  • the STE initiates de-queue and cleanup.
  • the process ends.
  • FIGURE 7 may be used by devices that use SCSI to communicate between a server and the IDFM and between the IDFM and a storage device. It will be recognized that other steps may be used for devices that use another protocol to communicate between the server and the IDFM without departing from the spirit or scope of the invention.
  • FIGURE 8 is a dataflow diagram that generally represents exemplary steps that may occur when a server sends a write request in accordance with some aspects of the invention.
  • the process begins at block 805.
  • the server sends a write request.
  • the IOC that receives the write request forwards the write request to a target mode driver.
  • the target mode driver forwards the request to a SCSI target engine (STE).
  • the STE queues the request.
  • the IDFM forwards the write to a data-aware cache.
  • processing branches to block 855; otherwise, processing branches to block 845.
  • the IDFM further decides whether to use the DAC or not based on data access characteristics, state of cache, or other factors. If the decision is yes, processing branches to block
  • the STE allocates a buffer.
  • the branch to block 850 is useful in certain conditions. For example, if the write data is a large video stream, caching it may force out frequently used data already residing in the cache and negatively impact other applications also using the cache. Furthermore, if the large video stream only remains in the cache temporarily (e.g., data from the video stream are removed from the cache before being requested again), then caching is counterproductive; it adds overhead without gaining any benefit. Typically, caching requested data will improve performance if the cached data is accessed more than once.
  • a data pointer (or a set of data pointers in a scatter gather list) is set to point to one or more cache lines that have been assigned to receive the data from the write request.
  • the STE initiates and forwards a Xfer_Rdy message to a target mode driver (TMD).
  • TMD forwards the Xfer_Rdy message to an IOC.
  • the IOC sends the Xfer Rdy message to the server.
  • the server sends data to the IOC.
  • the IOC notifies the TMD that the write data has arrived.
  • the TMD notifies the STE that the write data has been received.
  • a determination is made as to whether the write has been set up to use cache or a buffer. If the write uses cache, processing branches to block 886; otherwise, processing branches to block 890.
  • the EDFM updates the data-aware cache state.
  • FIG. 888 another decision is made as to whether write back or write through should be used. If write through should be used, processing branches to block 890; otherwise, processing branches to block 894.
  • the STE forwards the write request with data to the SCSI Mid-Layer (SML).
  • SML handles the write request and notifies the STE when the data is written to physical storage.
  • the STE initiates de-queue and cleanup.
  • the process ends.
  • the steps illustrated in FIGURE 8 may be used by devices that use SCSI to communicate between a server and the IDFM and between the IDFM and a storage device.
  • FIGURE 9 is a dataflow diagram that generally represents exemplary steps that may occur when a data-aware data flow manager initiates and manages the flush of dirty lines in the data-aware cache in accordance with some aspects of the invention.
  • the process begins at block 905.
  • the DADFM makes a decision as to whether the system is idle. If not, processing branches to block 925 where the flush process terminates. Otherwise, processing branches to block 920.
  • a determination is made as to whether the data-aware cache (DAC) needs to be flushed. This may be done by an IDFM, for example. If not, processing branches to block 925 where the flush process terminates. Otherwise, the processing branches to block 930.
  • DAC data-aware cache
  • the STE initiates a flush request and queues the request.
  • the IDFM passes a data pointer (or a set of data pointers in a scatter gather list) to an advanced flush manager (AFM).
  • AFM calls the data-aware cache, sets the data pointer to the dirty cache line to be flushed, and returns to the STE. Based on cache state and other factors, the AFM may set up data pointers to multiple dirty cache lines for the flush request. This has the effect of combining several small writes into a larger one.
  • the STE sets up a write for the flush request.
  • the STE forwards the write with dirty data to the SML.
  • the SML handles the write for the flush request and notifies the STE when the data is written to physical storage.
  • a determination is made as to whether the write is for a flush or is initiated from the server. If the write is for flush, processing branches to block 980; otherwise, processing branches to block 985.
  • the IDFM updates the data-aware cache state.
  • the STE initiates de-queue and cleanup. Next, the processing goes back to block 910 and repeats.
  • FIGURE 9 may be used by devices that use SCSI to communicate between a server and the IDFM and between the IDFM and a storage device. It will be recognized that other steps may be used for devices that use another protocol to communicate between the server and the IDFM without departing from the spirit or scope of the invention.

Abstract

A system for reducing the bottleneck to storage by implementing a data-aware data flow manager (120) between a storage device (125) and a process or device (105) requesting access to the storage. The data flow manager determines which data to cache and which data should bypass the cache. Through intelligent management and caching of data, the data flow manager is able to avoid some of the latencies created by the use of cache memory associated with the storage device. The data flow manager may determine caching policies based on the type of data requested, the state of the cache, user policies, or system policies.

Description

DATA-AWARE DATA FLOW MANAGER
This application is being filed as a PCT International Patent Application in the name of inFabric Technologies, Inc., a U.S. national corporation and resident, on 09 December 2003, designating all countries except US, and claiming priority to U.S. Serial No. 60/431,531 filed on 09 December 2002.
Field of the Invention
This application relates generally to computers, and more specifically to data flow management.
Background
The size of mass storage continues to grow at a phenomenal rate. At the same time, the data that is stored on mass storage devices also continues to grow. Many applications are designed to take advantage of this expanded storage and often install files that would have consumed hard drives of only a few years ago. Data centers also have found ways to use the increased storage capacity. Databases on the order of terabytes are common while databases of much larger sizes are also increasing in number. Quickly moving data between storage devices and applications has become a challenge for both personal and enterprise applications.
Hardware developers have responded by developing faster hard drives, larger hard drive caches, and more bandwidth between storage devices and CPUs. Despite the dazzling increase in performance, storing or retrieving data or code from a hard drive remains one of the most significant bottlenecks to increased performance. What is needed is a method and system to speed the transfer of data and code to both local and remote storage.
Summary
Briefly, the present invention provides a method and system directed to reducing the bottleneck to storage. In one aspect of the invention, a data-aware data flow manager (DADFM) is inserted between storage and a process or device requesting access to the storage. In another aspect of the invention, an already- existing data cache is moved out of the direct data paths and supplemented with one or more components of a DADFM. The data-aware data flow manager determines which data to cache and which data to pipe directly through. Through intelligent management and caching of data flow, the data- aware data flow manager is able to avoid some of the latencies associated with caches that front storage devices. The data-aware data flow manager may determine whether to cache data or pipe it directly through based on many factors including type of data requested, state of cache, state of I/O components, and user or system policies.
In an aspect of the invention, the data-aware data flow manager provides a mechanism for flushing the cache to avoid or alleviate cache stress conditions. The mechanism may involve one or more of monitoring clean and dirty lines within the cache, pacing the flush, flushing the cache during relatively idle times or when the stress on the cache exceeds a threshold, avoiding flush during certain read requests, eliminating the need of reads waiting for a flush and read-induced writes, routing data directly through while bypassing the cache, or taking other measures to improve the performance of the system.
In another aspect of the invention, the data- aware data flow manager provides a mechanism for switching cache write policies dynamically in order to alleviate a cache or storage system stress condition. The mechanism may involve one or more of examining data access characteristics, state of cache, state of I/O components or other factors, dynamically choosing write through, write back, write invalidate, routing data directly through while bypassing the cache, or taking other measures to improve the performance of the system.
In another aspect of the invention, the data-aware data flow manager attempts to predict data access patterns. Using these predictions, the data-aware data flow manager attempts to obtain data before it is requested, readjust I/O transfer sizes to accommodate for an unusual pattern of reads or writes, or take other actions.
In another aspect of the invention, the data-aware data flow manager attempts to group writes together. The data-aware data flow manager may cache writes until a predefined amount of data is available to write altogether. Similarly, the data-aware data flow manager may read more data from storage than was requested by a server. The extra data may be cached in a memory of the data-aware data flow manager in anticipation of future read requests from the server. DADFMs may be implemented in one or more places along a data path to increase performance. In some embodiments of the invention, the DADFM is incorporated on a network appliance that sits between a mass storage device and a device that requests access to the data on the storage device. In other embodiments of the invention, the DADFM is implemented on one or more devices that request data. In these other embodiments, components of the DADFM may reside, for example, in an output driver layer of an operating system or an application executing on the device and may use system memory as cache.
In other embodiments of the invention, a DADFM may be implemented using a host bus adapter or RAID card and may use host memory or card memory, respectively, as cache. Traditional RAID cards typically have at least one microprocessor, an operating system, and some access to system resources. Other RAID controllers are implemented on a single chip that includes its own cache and one or more microprocessors. The resources of either type of RAID controller may be used to implement a DADFM to speed throughput to and from storage managed by the RAID controller.
A Network Attached Storage device (NAS) gives Local Area Network (LAN) access to a file server that manages mass storage. A DADFM may be implemented using the components of a NAS product, which is essentially a computer with an operating system and memory, to deliver better performance.
Switches in network fabric may include a microprocessor and memory. A DADFM may be implemented using the components of a switch to increase performance, particularly as the capabilities of fabric switches increases.
In one aspect of the invention, the DADFM may receive input from a content manager module. The input may indicate the type of content contained in a data access and may take the form of XML tags or a type of meta-data or other embedded flags or data. This input may be considered in addition to other information about the data to determine the data flow and caching strategy for the data being accessed. In this manner the DADFM may become a "content aware" data flow manager. Similarly, in another aspect of the invention, the DADFM may receive input from an application manager module. The input may identify an application associated with an access request. The application manager module may use filename extensions, other file attributes, meta-data associate with a file, data tags, or other information about the data access to determine the application requesting the data access. Alternatively, or in addition, the application manager module may interact directly with the application to determine the application requesting the data access. The DADFM may use this input together with other information to determine the data flow and caching strategy to use for the data being accessed. In this manner, the DADFM may become an "application aware" data flow manager. Other aspects of the invention will become apparent from the following detailed description when taken in conjunction with the drawings, in which:
Brief Description of the Drawings
FIGURE 1 is a block diagram representing an exemplary environment in which the invention may be practiced in accordance with some aspects of the invention;
FIGURE 2 is a block diagram illustrating a more detailed view of a data- aware data flow manager in accordance with some aspects of the invention.; FIGURE 3 is a block diagram representing a more detailed view of an exemplary environment in which the invention may be practiced in accordance with some aspects of the invention;
FIGURE 4 is a block diagram representing exemplary components of a data- aware data flow manager in accordance with some aspects of the invention;
FIGURE 5 is a dataflow diagram that generally represents exemplary steps that may occur in an environment that operates in accordance with some aspects of the invention;
FIGURE 6 is a dataflow diagram that generally represents exemplary steps that may occur to determine whether to cache or not cache data; FIGURE 7 is a dataflow diagram that generally represents exemplary steps that may occur when a server sends a read request in accordance with some aspects of the invention.
FIGURE 8 is a dataflow diagram that generally represents exemplary steps that may occur when a server sends a write request in accordance with some aspects of the invention; and
FIGURE 9 is a dataflow diagram that generally represents exemplary steps that may occur when data-aware data flow manager initiates and handles a flush request in accordance with some aspects of the invention. Detailed Description
In the following detailed description of exemplary embodiments of the invention, reference is made to the accompanied drawings, which form a part hereof, and which are shown by way of illustration, specific exemplary embodiments of which the invention may be practiced. These embodiments are described in sufficient detail to enable those skilled in the art to practice the invention, and it is to be understood that other embodiments can be utilized, and other changes can be made, without departing from the spirit or scope of the present invention. The following detailed description is, therefore, not to be taken in a limiting sense, and the scope of the present invention is defined by the appended claims.
Throughout the specification and claims, the following terms take the meanings explicitly associated herein, unless the context clearly dictates otherwise.
The term "or" is an inclusive "or" operator, and is equivalent to the term "and/or", unless the context clearly dictates otherwise. The term "based on" is not exclusive and allows for being based on additional factors not described, unless the context clearly dictates otherwise. The term "network" includes any method or medium for transmitting information from one device to another, unless the context clearly dictates otherwise. A network may interconnect computer devices and storage devices and switches, routers or hubs (sometimes referred to as a storage area network). A network may interconnect devices that are relatively local to each other (sometimes referred to as a local area network), devices that are relatively spread out with respect to each other (sometimes referred to as a wide area network), or some combination thereof. A network may include wired or wireless communication links. A widely recognized network is the Internet which connects millions of devices around the world.
FIGURE 1 is a block diagram representing an exemplary environment in which the invention may be practiced in accordance with some aspects of the invention. The environment includes server 105, fabric 115, data-aware data flow manager 120 and storage 125. The devices shown in the environment are interconnected by a network having communication links. In some embodiments of the invention, data-aware data flow manager 120 is incorporated in server 105, fabric 115, or storage 125. In other embodiments of the invention, data-aware data flow manager 120 and storage 125 are incorporated in server 105. Data-aware data flow manager 120 may be incorporated at multiple places within the environment. For example, data-aware data flow manager 120 may be incorporated on server 105 or storage 125 in addition to, or alternatively from, being inserted between fabric 115 and storage 125.
The communication links shown represent any medium capable of transmitting information. In some embodiments of the invention, one or more communication links are fiber channels — especially those that need a lot of bandwidth. It will be recognized, however, that any type of communication link may be used without departing from the spirit or scope of the invention.
Server 105 comprises a device or process that provides services. In general, server 105 receives requests from one or more clients and performs a service for the requesting client. Server 105 may, for example, provide Web pages, files, database access, audio or video streams, electronic messages, or other services for clients. At times, server 105 may also take on one or more roles of a client in requesting data or services from another wired or wireless device. Server 105 includes one or more host bus adapters 110. Each host bus adapter 110 provides an interface to a communication link for communicating with other devices (e.g., storage 125 via fabric 115 and data-aware data flow manager 120). Server 105 may include an operating system and memory. Server 105 may use part of its memory as a cache. This may be done, for example, in an attempt to avoid the latencies involved with sending data to or requesting data from storage 125. When the cache includes the data requested, a data read may be accomplished much faster than going to storage 125. Fabric 115 represents a network connecting server 105 and data-aware data flow manager 120. It should be understood that fabric 115 may include routers, switches, or other devices (not shown) for routing data between server 105 and data- aware data flow manager 120. Fabric 115 may also be connected to and provide access to other devices (not shown). In some embodiments of the invention, fabric 115 is not included; rather, server 105 either includes the storage or is directly connected to the storage through a communication link.
Data-aware data flow manager 120 is a device or process that intelligently caches or does not cache data, depending on a variety of factors which are described in more detail below. Briefly, when data-aware data flow manager 120 receives data that needs to be written to storage 125 or data that has been retrieved from storage 125, data-aware data flow manager 120 may decide to cache the data or send the data through without caching the data.
Data-aware data flow manager 120 may be constructed to appear as a storage device to server 105 and as a server to storage 125. That is, when server 105 sends a request to store data, data-aware data flow manager 120 may store the data in its own memory or other storage and inform server 105 that the data has been stored. Server 105 will typically not know that the data has not been stored to storage 125; rather, it thinks, based on the reply from data-aware data flow manager 120, that the data has been stored in storage 125. Similarly, in responding to a request there may be little or no different (from storage 125's perspective) between interacting with data-aware data flow manager 120 or server 105. In fact, based on the flow of information, storage 125 might not know that it is interacting with data- aware data flow manager 120 instead of server 105. The feature of being transparent allows data-aware data flow manager 120 to be inserted essentially anywhere between server 105 and storage 125 — even if server 105 and storage 125 reside in the same device, for example.
Storage 125 includes any computer-readable media which stores data. Computer storage media can include volatile and nonvolatile, removable and non- removable media implemented in any method or technology for storage of information, such as computer readable instructions, data structures, program modules or other data. Examples of computer storage media include RAM, ROM, EEPROM, flash memory or other memory technology, CD-ROM, digital versatile disks (DND) or other optical storage, magnetic cassettes, magnetic tape, magnetic disk storage or other magnetic storage devices, or any other medium that can store the information and that can be accessed by a computing device. Most commonly, storage 125 will be some sort of mass storage device, such as one or more hard disk drives.
In data center implementations, storage 125 may be configured, for example, as a redundant array of inexpensive disks (RAID) which include a controller, as just a bunch of disks (JBOD), or in some other configuration. In implementations in which the storage is included in server 105, storage 125 may comprise one or more hard drives. It will be recognized that the type of storage 125 may vary depending on application without departing from the spirit or scope of the present invention. Each computing device mentioned herein (e.g., server 105, data-aware data flow manager 120, and the like) may be implemented on or by any device capable of executing instructions. Such devices may include, for example, computers, network appliances, multiprocessor systems, microprocessor-based or programmable consumer electronics, network PCs, cell phones, smart phones, pagers, radio frequency (RF) devices, infrared (IR) devices, CBs, personal digital assistants (PDAs), POCKET PCs, wearable computers, integrated devices combining one or more of the preceding devices, embedded microprocessors, and the like.
FIGURE 2 is a block diagram representing a more detailed view of a data- aware data flow manager in accordance with some aspects of the invention. Data- aware data flow manager 120 includes target module 205, intelligent data flow manager (IDFM) module 210, host module 215, and data-aware cache 220.
Target module 205 includes logic and protocols needed to make data-aware data flow manager 120 appear as a target device. Thus, a server (not shown) having a host bus adapter can communicate with data-aware data flow manager 120 via target module 205 as if data-aware data flow manager 120 were a storage device. Typically, a target module acts as an interface to a requestor.
Similarly, host module 215 includes logic and protocols needed to make data-aware data flow manager 120 appear as a host device. Thus, data-aware data flow manager 120 can communicate with a storage device (or other downstream device) as if data-aware data flow manager 120 were a host device. Typically, a host module acts as an interface to a storage device (or other downstream device).
IDFM module 210 is used to make various decisions with respect to data passing through data-aware data flow manager 120. Among its tasks, IDFM module 210 determines whether data should be piped directly through data-aware data flow manager 120 (e.g., directly from target module 205 to host module 215), or whether the data should be cached in data-aware cache 220. As this is described in more detail below, this decision making will not be described in more detail here. Data-aware cache 220 stores and retrieves data in accordance with instructions from IDFM module 210. Data-aware cache 220 may be implemented in any type of memory, volatile or non- volatile.
Data-aware data flow manager 120 may contain one or more host modules 215, each handling one or more protocols in communication with one or more storage devices (e.g. one fast storage device and one slow storage device). Data- aware data flow manager 120 may determine whether to pipe the data to the fast or slow storage device based on data patterns, attributes related to content or application, user or system policies, or other factors.
FIGURE 3 is a block diagram representing an exemplary environment in which the invention may be practiced in accordance with some aspects of the invention. The environment includes a data-aware data flow manager 120, data- aware target engine 305, SCSI mid-layer 310, target mode driver 315, host mode driver 320, hardware abstraction layer (HAL) 325, input/output controllers (IOCs) 335-338, server 105, storage controller 345, and disk 350. Data-aware target engine 305 includes a SCSI target engine (STE) (not shown). The STE may bridge data sent to it between target mode driver 315 and host mode driver 320. This may allow, for example, for data to be transferred from server 105, to disk 350. The STE may also be used by data-aware target engine 305 to send or receive data from a device or process external to data-aware target engine 305. Generally, an STE comprises a data pipe engine that transfers data between two devices. The data pipe engine may use SCSI protocols or other common communication protocols.
Data-aware target engine 305 uses SCSI mid-layer 310 to send data and commands to and receive data and responses from disk 350. These data and commands may be relayed through other processes, components, or devices, such as host mode driver 320, one or more of IOCs 335-338, and storage controller 345. Generally, data-aware target engine 305 can communicate data and commands to other processes, components, or devices, such as host mode driver 320, and other downstream devices. HAL 325 provides an interface to send data to and receive data from hardware, such as IOCs 335-338. HAL 325 may be structured to provide a certain set of interfaces to software, regardless of the capabilities of the hardware. HAL 325 may be modified to work with different hardware or different low level communication protocols while maintaining the same set of software interfaces. Thus, a software program interacting with HAL 325 can be ported to other hardware platforms or communication protocols without requiring that the software program be rewritten. Instead, a HAL that presents the same software interface can be constructed for the other hardware platforms or communication protocols. Dotted line 330 shows an exemplary separation between software and hardware within data- aware data flow manager 120 with components below the line being implemented in hardware and components about the line being implemented in software. It will be recognized, however, that any components within data-aware data flow manager 120 may be implemented in hardware, in software, or in some combination thereof without departing from the spirit or scope of the invention. IOCs 335-338 send data or commands to and receive data or commands through communication links attached to IOCs 335-338. The communication links may be implemented in any technology now existing or hereafter invented without departing from the spirit or scope of the present invention. Some current communication link technologies include Ethernet, fiber channel, SCSI, iSCSI, InfiniBand, EIDI, USB, Firewire, and the like.
Target mode driver 315 receives commands and data from server 105. Target mode driver 315 may include what is typically found on a storage controller, such as storage controller 345. As data-aware data flow manager 120 may sit between a server and a storage controller, target mode driver 315 may emulate the behavior of a storage controller when accessed by a server. Data-aware data flow manager 120 may also emulate the behavior or a server (e.g., via host mode driver 320) when communicating with storage controller 345. Thus, server 105 will not typically know that it is communicating with data-aware data flow manager 120; rather, it will think that it is communicating with a storage device. Similarly, storage controller 345 will not typically know that it is communicating with data-aware data flow manager 120; rather, it will think that it is communicating with a server. Generally, a target mode driver, such as target mode driver 315, does not initiate a conversation. Rather, the target mode driver responds to a conversation and then controls and finishes the conversation.
Host mode driver 320 sends data and commands received from SCSI mid- layer 310 to one or more of IOCs 337-338. Host mode driver 320 does this through HAL 325. The HAL selects one or more of the IOCs through which to send the commands or data. The selected IOCs send the commands or data to storage controller 345. Storage controller 345 may then save the data on disk 350 or perform the command. A command may include retrieving data from disk 350, for example. HAL 325 receives data through one of IOCs 337-338. This data is sent from storage controller 345. HAL 325 relays this data to host mode driver 320. Host mode driver 320 may make data-aware data flow manager 120 appear to be a server to storage controller 345. Typically, a host mode driver initiates a conversation to send data or commands.
Storage controller 345 manages, controls, and provides access to disk 350. Storage controller 345 typically includes its own host mode driver and target mode driver (not shown).
Disk 350 includes any computer storage medium readable or writable by a computing device. Computer storage media can include volatile and nonvolatile, removable and non-removable media implemented in any method or technology for storage of information, such as computer readable instructions, data structures, program modules or other data. Examples of computer storage media include RAM, ROM, EEPROM, flash memory or other memory technology, CD-ROM, digital versatile disks (DND) or other optical storage, magnetic cassettes, magnetic tape, magnetic disk storage or other magnetic storage devices, or any other medium that can store the information and that can be accessed by a computing device. Disk 350 may include one or more computer storage medium devices.
FIGURE 4 is a block diagram representing exemplary components of a data- aware data flow manager in accordance with some aspects of the invention. The components include data-aware cache 405, advanced flush manager 410, system stats manager 415, policies 420, fail-over manager 425, auto configuration manager 435, and SCSI target engine 440. It will be recognized, however, that not all of the components described in conjunction with FIGURE 4 are essential to every decision data-aware data flow manager 120 makes. Indeed, data-aware data flow manager 120 may make many of its decisions based on information from zero, one, or more of the components without departing from the spirit or scope of the invention.
Various embodiments of data-aware data flow manager 120 may include fewer than all the components shown in FIGURE 4. In addition, components may be split or merged, or implemented in hardware, in software, or in some combination thereof without departing from the spirit or scope of the invention. Fail-over manager 425 detects certain condition events that indicate a failure.
At least three types of failures may occur. In one type of failure, the device upon which intelligent data flow manager 430 resides may crash, become totally disconnected from servers and storage, or otherwise become incapable of responding to or forwarding data. In a second type of failure, the device upon which intelligent data flow manager 430 resides may lose one or more connections to a server or storage while maintaining at least one other connection to the server or storage. In a third type of failure, the device upon which intelligent data flow manager 430 resides may lose all connections to a server or storage. The first type of failure is known as a complete failure while the other types of failure are known as a partial failure.
Upon detection of a failure, fail-over manager 425, notifies intelligent data flow manager 430 of the failure. Intelligent data flow manager 430 may then reconfigure or otherwise deal with the failure. For example, in response to a complete failure, intelligent data flow manager 430 may inform another redundant intelligent data flow manager (hereinafter sometimes referred to as "neighbor") (not shown) that the other intelligent data flow manager should take over the duties of intelligent data flow manager 430. In case intelligent data flow manager 430 is unable to inform the other redundant intelligent data flow manager to take over the intelligent data flow manager 430' s duties (e.g., if there is a power outage to the device upon which intelligent data flow manager 430 resides), the redundant intelligent data flow manager may deduce that the intelligent data flow manager 430 has suffered a complete failure and may automatically take over the intelligent data flow manager 430' s functions. This may be detected if the intelligent data flow manager 430 ceases sending "I'm alive" or "heartbeat" messages to the other redundant intelligent data flow manager.
If one or more connections to a server or storage fail, intelligent data flow manager 430 may reroute traffic to the server or storage through the one or more remaining connections to the server or storage. For example, fail-over manager 425 may indicate that one of IOCs (e.g., one of IOCs 335-338) has failed. Intelligent data flow manager 430 may then route communications over a non-failing IOC.
If all of the connections to a server or storage fail, intelligent data flow manager 430 may use the paths of a redundant intelligent data flow manager (not shown) to access the server or storage. In addition, intelligent data flow manager 430 may provide a path to a server or storage for a redundant intelligent data flow manager that has lost one or more paths to the server or storage. For example, a neighboring intelligent data flow manager may indicate that it no longer has a path to a server or to storage. Intelligent data flow manager 430 may have a path to the server or the storage. Intelligent data flow manager 430 may pass data or commands to and from the other intelligent data flow manager through intelligent data flow manager 430's path.
Fail-over manager 425 may inform intelligent data flow manager 430 of an impending failure. For example, a power outage may activate an uninterruptible power supply (UPS). The UPS may be able to supply power for a limited amount of time. Fail-over manager 425 may indicate a pending complete failure to intelligent data flow manager 430. In response, intelligent data flow manager 430 may attempt to flush everything from cache (e.g., by informing advanced flush manager 410 of the pending shutdown). If necessary (e.g., if the time left before shutdown has reached a critical threshold), intelligent data flow manager 430 may direct that the cache be dumped into a local non-volatile memory. The local non-volatile memory may then be used to restore the cache when the device upon which the intelligent data flow manager 430 resides is brought back up.
In response to a pending complete failure, intelligent data flow manager 430 may stop assigning data to cache. For example, if a server is still trying to read or write data, intelligent data flow manager 430 may cease caching this data.
Fail-over manager 430 may be in charge of mirroring cache between intelligent data flow manager 430 and a redundant device.
Policies 420 include any user input which intelligent data flow manager 430 uses or may use in its decision-making process. In general, policies 420 take priority over other system preferences. Policies 420 may affect how intelligent data flow manager 430 caches data sent to or retrieved from certain storage volumes. For example, a policy may apply to data written to or retrieved from a storage identified by one logical unit number (LUN), but not to data written to or retrieved from storage identified by another LUN. A LUN identifies a virtual storage device that may span one, less than one, or more than one actual physical storage devices. Policies 420 may be applied on volume-by-volume basis or cache-by-cache basis. Policies 420 may be arranged hierarchically, wherein a policy that applies to a single cache or volume may take precedence over a policy that applies to a group of caches or volumes (or vice-versa).
A policy may indicate whether one or more threads should be used by intelligent data flow manager 430. A policy may indicate how cache should be mirrored on a redundant intelligent data flow manager. A policy may indicate that dynamic multi-pathing should or should not be used. Multi-pathing means that a device has two or more paths by which it can transfer data to or from another device. A policy may indicate a mapping from a volume to a particular cache.
One or more policies may affect the sizes of reads or writes that are sent to disk. For example, a policy may indicate what a preferred size for writing is. Writes may be cached until the preferred size is reached before being sent to disk. A policy may limit the size of a write to disk (e.g., to 128 kilobytes or some other number).
One or more policies may affect prefetching. A policy may indicate that prefetching should or should not be done. A policy may indicate that when a relatively large number of reads are being requested that additional data be prefetched in anticipation of a future read. A policy may indicate that when data reads show a pattern (e.g., sequential), that a selected amount of data is prefetched in anticipation of another sequential read. A policy may indicate that when a read is requested that more data than the read requested be retrieved from storage in the same request that is sent to the storage. One or more policies may affect what data is cached and under what conditions. For example, a policy may indicate there should be no write-back caching, that only reads should be cached and not writes, or that only writes should be cached and not reads. A policy may indicate that a certain volume should have a cache equal or greater in size than the volume. This may allow, for example, the data in the volume to be completely stored in the cache. A policy may indicate that intelligent data flow manager 430 should not cache data written to a certain LUN. A policy may indicate that when the stress of a cache exceeds a certain threshold, that the cache should be bypassed for certain types of data accesses (e.g., large reads or writes). One or more policies may be related to flushing cache entries. A policy may indicate that a cache entry may only remain in cache for a certain length of time before the cache entry should be written to a non- volatile storage. A policy may indicate that a portion or all of the cache entries should be flushed on a particular schedule. A policy may indicate how aggressively flushing should be performed. For example, in the case of an imminent complete failure (e.g., the system has lost power and is operating using the power generated by a UPS), policies may indicate the degree to which new items are placed (or not placed) in cache, how much bandwidth to storage is reserved for flushing to remote storage (as compared to how much bandwidth may be used to pass data to and from a server), when to flush to a local disk, and the like. A policy may indicate the priority with which flushing should be done (e.g., CPU bandwidth, network bandwidth, and the like). A policy may indicate the amount of flushing that should be done during a relatively idle time. A policy may indicate the level of flushing that should occur when a threshold is exceeded for dirty cache. A policy may indicate when cache should be bypassed (e.g., when dirty lines exceed a threshold, when the rate of write requests begins to degrade performance if the data associated with the write requests is cached, or when flushes are not keeping up with writes). A policy may indicate which paths (e.g., in a multi-path system) may be used to flush. Each policy may be related to one or more caches.
A policy may indicate a level of logging. For example, one level of logging may be to log detailed data regarding all traffic. Another level of logging may be to log data regarding traffic to and from a certain volume. Another level of logging may be to log aggregate data collected about traffic. A policy may indicate a sequence for recovering after a complete or partial failure. For example, if a cache was dumped to a local disk, the policy might indicate that the cache should be flushed to storage before any reads or writes from a server are processed. Alternatively, if the cache were dumped to a local disk, the policy might indicate that intelligent data flow manager 430 can service host requests after recovering the cache from the local disk.
A policy may indicate how upgrading should be done. For example, when intelligent data flow manager 430 has a redundant counterpart, a policy may indicate which intelligent data flow manager is primary and which is secondary. A policy may indicate how automatically upgrading should be done. In one embodiment, a policy indicates that a user should have more control over the upgrade process. A user may want to upgrade one of a pair of redundant intelligent data flow managers and then wait a while before upgrading the other redundant intelligent data flow manager. In another embodiment, a policy may indicate that after the upgrade an upgraded intelligent data flow manager automatically should automatically obtain configuration data from the un-upgraded intelligent data flow manager.
A policy may indicate that cache should be dumped to a local storage periodically. The policy may also indicate what period should be used in dumping the cache to the local storage. One or more policies may affect what happens when a neighbor fails. For example, a policy may indicate that an intelligent data flow manager check more than just a "heart beat" to determine whether its neighbor has failed. For example, a policy may indicate that an intelligent data flow manager should check a special portion on a disk to determine whether its neighbor is still operating.
Policies in policies 420 may be added or modified through a user interface, a file, through SNMP (Simple Network Management Protocol), or some other mechanism without departing from the spirit or scope of the invention. Generally, a policy remains in effect until changed. It will be recognized that policies allow a mechanism for customizing an intelligent data flow manager's behavior for a particular product, manufacturer, or customer.
Intelligent data flow manager 430 may dynamically switch or override some policies based on cache statistics, data pattern, or other factors. For example, a policy may indicate that dirty data should be flushed periodically. However, upon detecting the system is under stress in handling server requests, intelligent data flow manager 430 may suspend flushing until the system is less busy.
As data flows into intelligent data flow manager 430, it determines whether to place the data into data-aware cache 405. Data-aware cache 405 may determine how it replaces cache lines and what caching methodology it uses based on data usage patterns and the state of cache. If data-aware cache 405 determines that it needs to have one or more cache lines flushed, it informs intelligent data flow manager 430. Intelligent data flow manager 430 may then inform advanced flush manager 410 of the need to flush the one or more cache lines. In response to the information, intelligent data flow manager 430 may determine to flush other lines in anticipation of future need. The threshold of when to flush other lines may be set by policy. How aggressively other lines should be flushed may also be set by policy or other factors.
Data-aware cache 405 may also send other information to intelligent data flow manager 430. Data-aware cache 405 may indicate 1) that there is not enough space in cache to cache the data; 2) hit/miss information related to the cache; 3) stress condition of the cache; or 4) information related to dirty lines in the cache. If data-aware cache 405 indicates that there is not enough space in the cache to cache the data, intelligent data flow manager 430 may determine to bypass storing the data in data-aware cache 405 and may instead send the data directly to a target or targets of the data (e.g., a server or one or more storage devices).
Data-aware cache 405 may indicate information regarding hit/miss performance of the cache including whether the request generates a hit, partial hit, or miss. A partial hit occurs when some but not all of the data that is requested to be read or written is contained within the cache. For example, a server may request a number of blocks of data. Part of the data may be found in data-aware cache 405, while another part of the data might not exist in data-aware cache 405. Upon receipt of this information, intelligent data flow manager 430 may forward the information (or a pointer thereto) to system stats manager 415 which may then update its statistics. Intelligent data flow manager 430 may also forward other information to system stats manager 415 including size of read or write, associated LUN or LUNs, and the like.
Data-aware cache 405 may inform intelligent data flow manager 430 of data- aware cache 405 's stress. Stress may include how much cache is free, if the data- aware cache 405 has enough cache free to service the request, or the extent to which the cache is dirty.
Data-aware cache 405 may inform intelligent data flow manager 430 regarding dirty lines including how many dirty lines of cache there are, whether the number of dirty lines has reached a threshold, whether a flush is needed, and the like. Intelligent data flow manager 430 may determine, based on this information, to bypass cache, take flushing measures (e.g., flush a certain number of dirty lines to disk), or take other action. Intelligent data flow manager 430, data-aware cache 405, fail-over manager 425, or some other component may synchronize cache with a redundant intelligent data flow manager (not shown).
Advanced flush manager 410 manages the pace and sets up the details of the flush. Intelligent data flow manager 430 informs advanced flush manager 410 when to flush and from which cache flush to which storage device. Advanced flush manager 410 may also store statistics regarding flushes, such as how big a flush is, how many items have been flushed, and the like. Advanced flush manager 410 may communicate with one or more caches. Each cache may be mapped to one or more LUNs. Advanced flush manager 410 may be connected to local storage and can dump cache to the local storage upon command. System stats manager 415 may collect information associated with the traffic flowing through the system or information associated the system upon which intelligent data flow manager 430 operates. Information associated with the data flowing through the system includes caching information (e.g., hits, misses, utilization, clean, dirty, and the like), how much data passes through the cache, how much data bypasses the cache, the size of the reads and the writes, or the sequential or non-sequential nature of the data. Information associated with the system upon which intelligent data flow manager 430 operates includes data associated with the software and hardware. Software includes the operating system or any other software executing on the system. Hardware may include CPU, IOCs, RAM, ROM, buses, mass memory storage, type, speed and utilization of communication links or any other hardware included in the system.
The information collected by system stats manager 415 regarding traffic may be grouped by a LUN or a portion thereof. This may be done, for example, to detect a LUN's utilization and migrate data on the LUN to a less busy LUN or LUNs if needed.
What data system stats manager 415 collects may be determined by one or more policies. For example, based on a policy, system stats manager 415 may be instructed to monitor the bandwidth utilization of one or more links associated with one or more of the IOCs (not shown). System stats manager 415 may be further instructed to notify intelligent data flow manager 430 when a bandwidth utilized across the link or links exceeds a threshold. When the bandwidth exceeds the threshold, another path may be sought (if available) over which to send data.
In some embodiments of the invention, intelligent data flow manager 430 queries system stats manager 415 to obtain information of interest. In other embodiments of the invention, system stats manager 415 notifies intelligent data flow manager 430 when it detects certain conditions.
System stats manager 415 may collect data from (or receive data associated with) data-aware cache 405, such as hits, misses, or any other data data-aware cache 405 generates. System stats manager 415 may collect utilization information regarding hardware associated with intelligent data flow manager 430 (e.g., CPU, network, bus, ports, and memory utilization).
System stats manager 415 may keep history and enable intelligent data flow manager 430 to determine whether data accesses to a LUN are sequential in nature or not. Data accesses that are sequential may indicate data that should not be cached
(e.g., a video stream). Other data that may be collected include the number of each read and write and the sizes of the data read or written.
The size of the cache allocated for dirty and clean lines may be dynamically changed based on information collected by system stats manager 415. For example, if data collect indicates an unusual ratio of reads verses writes, the cache allocated for dirty and clean lines may be adjusted accordingly.
Auto configuration manager 435 includes a set of system preferences that indicate the defaults for setting up the various components of the system shown in FIGURES 3 and 4. These system preferences may be thought of as "default policies." A system preference may apply until a user defines an overriding policy or intelligent data flow manager 430 switches the policy on the fly.
Auto configuration manager 435 may include predefined policies that are burned into a ROM or some other non- volatile memory. A policy in policies 420, however, will generally take precedence over a policy found in auto configuration manager 435.
Auto configuration manager 435 attempts to determine which IOCs are connected to servers and which IOCs are connected to storage. If auto configuration manager 435 detects a server connected to an IOC, auto configuration manager 435 may attempt to initialize a target mode driver to communicate with the server. If auto configuration manager 435 detects a storage device connected to an IOC, auto configuration manager 435 may attempt to initialize a host mode driver to communicate with the storage device.
Auto configuration manager 435 may determine how much memory is available for caching and may divide (or cause to be divided) the memory among cache used to mirror a neighbor's cache, cache used to cache reads, and cache used to cache writes accordingly.
Auto configuration manager 435 may try to determine whether a redundant intelligent data flow manager exists. If auto configuration manager 435 detects a neighbor, auto configuration manager 435 may then communicate with the neighbor.
In this communication, auto configuration manager 435 may determine, for example, whether the system auto configuration manager 435 is operating on is recovering from a crash. If so, auto configuration manager 435 may obtain configuration information from the neighbor. Auto configuration manager 435 may also query the neighbor for its configuration. The neighbor's configuration may be used, for example, to determine an alternate path to a server or storage or to restore the neighbor's configuration should the neighbor crash.
In situations in which intelligent data flow manager 430 has more than one path, intelligent data flow manager 430 may choose a path depending on the data requested or quality of service expected.
FIGURE 5 is a dataflow diagram that generally represents exemplary steps that may occur in an environment that operates in accordance with some aspects of the invention. The process begins at block 505. At block 510, a server sends a request. The request is received by a data- aware data flow manager. The request may include a command or a request to read data from or write data to storage.
At block 515, the data-aware data flow manager determines whether to cache data associated with the request. A process of determining whether to cache data associated with the request is described in more detail in conjunction with FIGURE 6.
At block 520, the data-aware data flow manager responds to the request. If data was requested, the data is returned. If a request to write data was received, the data may be cached or not cached, written to an external storage device or not written to an external storage device, depending on policies, system preferences, and the state of the DADFM.
At block 525, processing ends. The process described above may be repeated each time a request is sent from a server.
FIGURE 6 is a dataflow diagram that generally represents exemplary steps that may occur to determine whether to cache or not cache data. The steps of
FIGURE 6 correspond to block 515 of FIGURE 5. The process begins at block 605.
At block 610, a determination is made as to whether a policy applies to the data or to the DADFM' s state. If a policy applies, processing continues at block 615; otherwise, processing continues at block 625. At block 615, the applicable policy or policies are applied. For example, a policy may indicate that there should be no write-back caching of data. If while this policy was under effect a server requested that data be stored, the data would be sent to storage according to the policy. DADFM state in conjunction with the data may indicate that because of cache stress or otherwise that other data should be flushed to the storage with the data that is currently being sent, for example.
At block 620, a determination is made as to whether any system preferences that have not been overwritten by policy apply to the data or DADFM state. If so, processing continues at block 625; otherwise processing continues at block 630. At block 625, system preferences are applied to the request sent by the server. For example, system preferences may indicate that non-sequential data should be stored in cache when the cache is not under stress. Provided that this system preference is not overridden by a policy (e.g., that there should be no write- back caching), data for a request for non-sequential data would be cached. The process returns at block 630.
FIGURE 7 is a dataflow diagram that generally represents exemplary steps that may occur when a server sends a read request in accordance with some aspects of the invention. The process begins at block 705. At block 710, the server sends a read request. At block 715, the IOC that receives the read request forwards the read request to a target mode driver. At block 720, the target mode driver forwards the request to a SCSI target engine (STE). At block 725, the STE queues the request. At block 730, a determination is made as to whether the LUN to which the read request is destined is cached. If not, processing continues at block 750; otherwise, processing continues at block 735. At block 735, the IDFM forwards the read to a data- aware cache. At block 740, if the data is in the data-aware cache (DAC), processing branches to block 765; otherwise, processing branches to block 745. At block 765, a data pointer (or a set of data pointers in a scatter gather list) is set to point at the data in the cache. At block 745, the IDFM further decides whether to use the DAC or not based on data access characteristics, state of cache, or other factors. If the decision is yes, processing branches to block 755; otherwise, processing branches to block 750. The branch to block 750 is useful in certain conditions. For example, if the cache is under stress and dirty lines have to be flushed before freeing up cache lines for the read request (e.g., read induced write and read wait on write), then bypassing cache may shorten the latency and the response time to the read request. At block 755, a data pointer (or a set of data pointers in a scatter gather list) is set to point to one or more free cache lines that have been assigned to receive the data from the read request. At block 750, the STE allocates a buffer. At block 760, the STE forwards the read to the SCSI Mid-Layer (SML). At block 770, the SML fetches the data to return to the STE. At block 775, a determination is made as to whether the read has been set up to use cache or a buffer. If so, processing branches to block 780; otherwise, processing branches to block 782. At block 780, the IDFM updates the data-aware cache state. At block 782, the STE sends data to the target mode driver (TMD). At block 784 the TMD sends the data to the IOC. At block 786, the IOC sends data to the server. At bock 788, the server notifies the IOC that it has received the data. At block 790, the IOC notifies the TMD that the data was received. At block 792, the TMD notifies the STE that the data has been received. At block 794, the STE initiates de-queue and cleanup. At block 796, the process ends.
The steps illustrated in FIGURE 7 may be used by devices that use SCSI to communicate between a server and the IDFM and between the IDFM and a storage device. It will be recognized that other steps may be used for devices that use another protocol to communicate between the server and the IDFM without departing from the spirit or scope of the invention.
FIGURE 8 is a dataflow diagram that generally represents exemplary steps that may occur when a server sends a write request in accordance with some aspects of the invention. The process begins at block 805. At block 810, the server sends a write request. At block 815, the IOC that receives the write request forwards the write request to a target mode driver. At block 820, the target mode driver forwards the request to a SCSI target engine (STE). At block 825, the STE queues the request.
At block 830, a determination is made as to whether the LUN to which the write request is destined is cached. If not, processing continues at block 850; otherwise, processing continues at block 835. At block 835, the IDFM forwards the write to a data-aware cache. At block 840, if a cache hit results, processing branches to block 855; otherwise, processing branches to block 845. At block 845, the IDFM further decides whether to use the DAC or not based on data access characteristics, state of cache, or other factors. If the decision is yes, processing branches to block
855; otherwise, processing branches to block 850.
At block 850, the STE allocates a buffer. The branch to block 850 is useful in certain conditions. For example, if the write data is a large video stream, caching it may force out frequently used data already residing in the cache and negatively impact other applications also using the cache. Furthermore, if the large video stream only remains in the cache temporarily (e.g., data from the video stream are removed from the cache before being requested again), then caching is counterproductive; it adds overhead without gaining any benefit. Typically, caching requested data will improve performance if the cached data is accessed more than once. At block 855, a data pointer (or a set of data pointers in a scatter gather list) is set to point to one or more cache lines that have been assigned to receive the data from the write request.
At block 860, the STE initiates and forwards a Xfer_Rdy message to a target mode driver (TMD). At block 865, the TMD forwards the Xfer_Rdy message to an IOC. At block 870, the IOC sends the Xfer Rdy message to the server. At block 875, the server sends data to the IOC. At block 880, the IOC notifies the TMD that the write data has arrived. At block 882, the TMD notifies the STE that the write data has been received. At block 884, a determination is made as to whether the write has been set up to use cache or a buffer. If the write uses cache, processing branches to block 886; otherwise, processing branches to block 890. At block 886, the EDFM updates the data-aware cache state.
At block 888, another decision is made as to whether write back or write through should be used. If write through should be used, processing branches to block 890; otherwise, processing branches to block 894. At block 890, the STE forwards the write request with data to the SCSI Mid-Layer (SML). At block 892, the SML handles the write request and notifies the STE when the data is written to physical storage. At block 894, the STE initiates de-queue and cleanup. At block 896, the process ends. The steps illustrated in FIGURE 8 may be used by devices that use SCSI to communicate between a server and the IDFM and between the IDFM and a storage device. It will be recognized that other steps may be used for devices that use another protocol to communicate between the server and the IDFM without departing from the spirit or scope of the invention. FIGURE 9 is a dataflow diagram that generally represents exemplary steps that may occur when a data-aware data flow manager initiates and manages the flush of dirty lines in the data-aware cache in accordance with some aspects of the invention. The process begins at block 905. At block 910, the DADFM makes a decision as to whether the system is idle. If not, processing branches to block 925 where the flush process terminates. Otherwise, processing branches to block 920. At block 920, a determination is made as to whether the data-aware cache (DAC) needs to be flushed. This may be done by an IDFM, for example. If not, processing branches to block 925 where the flush process terminates. Otherwise, the processing branches to block 930.
At block 930, the STE initiates a flush request and queues the request. At block 940, the IDFM passes a data pointer (or a set of data pointers in a scatter gather list) to an advanced flush manager (AFM). At block 950, the AFM calls the data-aware cache, sets the data pointer to the dirty cache line to be flushed, and returns to the STE. Based on cache state and other factors, the AFM may set up data pointers to multiple dirty cache lines for the flush request. This has the effect of combining several small writes into a larger one. At block 960, the STE sets up a write for the flush request. At block 965, the STE forwards the write with dirty data to the SML. At block 970, the SML handles the write for the flush request and notifies the STE when the data is written to physical storage. At block 975, a determination is made as to whether the write is for a flush or is initiated from the server. If the write is for flush, processing branches to block 980; otherwise, processing branches to block 985. At block 980, the IDFM updates the data-aware cache state. At block 985, the STE initiates de-queue and cleanup. Next, the processing goes back to block 910 and repeats.
The steps illustrated in FIGURE 9 may be used by devices that use SCSI to communicate between a server and the IDFM and between the IDFM and a storage device. It will be recognized that other steps may be used for devices that use another protocol to communicate between the server and the IDFM without departing from the spirit or scope of the invention.
As can be seen from the foregoing detailed description, there is provided an improved method and system for intelligently directing and caching data flow. While the invention is susceptible to various modifications and alternative constructions, certain illustrated embodiments thereof are shown in the drawings and have been described above in detail. It should be understood, however, that there is no intention to limit the invention to the specific forms disclosed, but on the contrary, the intention is to cover all modifications, alternative constructions, and equivalent falling within the spirit and scope of the invention.

Claims

WHAT IS CLAIMED IS:
1. An apparatus, comprising: a target module arranged to communicate with a client requesting access to a storage; a host module arranged to communicate with the storage; a cache arranged to selectively store data flowing through the apparatus; and a control module arranged to determine whether to store data flowing between the client and the storage in the cache and to pipe the data directly between the host module and the target module if the data is not to be cached.
2. The apparatus of claim 1, wherein at least one of the modules comprises a software component.
3. The apparatus of claim 1, wherein at least one of the modules comprises a hardware module.
4. The apparatus of claim 1, wherein the client is a process or component residing on the apparatus.
5. The apparatus of claim 1, wherein the client is a process or component residing on another apparatus.
6. The apparatus of claim 1, wherein the storage spans a portion or all of one or more physical storage media.
7. The apparatus of claim 6, wherein the physical storage media resides on the apparatus.
8. The apparatus of claim 6, wherein the physical storage media resides on one or more devices other than the apparatus.
9. The apparatus of claim 1, wherein the control module uses cache statistics to determine whether to store the data in the cache, the cache statistics including hit/miss ratio, clean/dirty ratio, remaining clean lines, rate of cache fill, and data access frequency.
10. The apparatus of claim 1, wherein the cache mirrors at least a portion of a cache on a redundant apparatus.
11. The apparatus of claim 1, wherein the control module is further arranged to access policies including preferred data transfer sizes, mappings of caches to storage or storages, time data can remain in a cache before being flushed, cache line sizes, and cache sizes.
12. The apparatus of claim 1 , wherein the control module is further arranged to determine a pattern of the data and wherein determining whether to store the data is based on the pattern, a state of the cache, and a policy.
13. The apparatus of claim 1, wherein the control module comprises: a flush manager arranged to manage the pace and details of flushing the cache; a system statistics manager arranged to collect information associated with the data flowing between the client and the storage, the information including cache hits, misses, and utilization, how much of the data is stored in the cache, how much of the data is piped directly between the host module and the target module, sizes of reads and writes associated with the data, and how sequential the data is.
14. The apparatus of claim 13, wherein the control module further comprises: a fail-over manager arranged to communicate with a redundant apparatus to find a path between the client and the storage when the apparatus loses one or more paths to the storage or client or to have the redundant apparatus take over duties of the apparatus should the fail-over manager partially or completely fail; and an auto-configuration manager arranged to configure the cache, determine whether a redundant apparatus exists, and configure connections to the client and storage including configuring the target and host modules.
15. A computer-readable medium having computer-executable instructions, comprising: receiving a request to access a storage, the request associated with data to be stored on or retrieved from the storage; determining whether to cache the data in a cache; if the data is to be cached, caching the data in the cache; and if the data is not to be cached, bypassing the cache.
16. The computer-readable medium of claim 15, wherein determining whether to cache the data in a cache comprises determining whether a failure is pending and if so, bypassing the cache.
17. The computer-readable medium of claim 15, wherein the storage is associated with a policy that indicates that data associated with the storage should not be cached and wherein determining whether to cache the data in the cache applies the policy.
18. The computer-readable medium of claim 15, wherein determining whether to cache the data in a cache comprises determining that the request is a request to store data on the storage and further comprising caching the data together with other data associated with other requests until a selectable size of accumulated data has been cached and then writing the accumulated data to the storage.
19. The computer-readable medium of claim 15, wherein determining whether to cache the data comprises applying a policy that has different effects depending on whether the request is to store data on or retrieve data from the storage.
20. The computer-readable medium of claim 15, wherein a policy indicates that there should be no write-back caching and wherein determining whether to cache the data in a cache applies the policy, such that the cache is bypassed on requests to write to the storage.
21. The computer-readable medium of claim 15 , wherein determining whether to cache the data comprises applying a policy that indicates that the cache should be bypassed for reads or writes exceeding a certain size.
22. The computer-readable medium of claim 15, wherein determining whether to cache the data is based on a stress associated with the cache.
23. The computer-readable medium of claim 22, wherein the cache includes a number of dirty lines and the stress is calculated based on whether the number of dirty lines in the cache exceeds a threshold, whether a flush is required to cache the data, and whether flushes from the cache are keeping up with writes to the cache.
24. The computer-readable medium of claim 15, wherein determining whether to cache the data is based on whether the cache is recovering after a failure.
25. The computer-readable medium of claim 15, further comprising storage the cache on a local non- volatile memory in anticipation of a system failure.
26. The computer-readable medium of claim 15, further comprising collecting information including hit/miss performance, dirty lines in the cache, stress conditions of the cache, space available in the cache to store any data, utilization of the cache, sizes of reads and writes, how sequential or non-sequential requested data is, information associated with an operating system on a system upon which the cache resides, information associated with hardware of the system upon which the cache resides.
27. The computer-readable medium of claim 26, wherein the cache has an allocated number of clean and dirty lines and further comprising dynamically adjusting the number of clean and dirty lines based on a ratio of reads verses writes to the storage.
28. The computer-readable medium of claim 15, further comprising flushing the cache when a bandwidth utilized to the storage is below a threshold.
29. A computer-readable medium having computer-executable components, comprising: a target component arranged to receive a request to access a storage; a host component arranged to communicate with the storage; a control component arranged to determine whether to store data associated with the request in a cache and to pipe the data directly between the host component and the target component if the data is not to be cached.
30. An apparatus, comprising: a target module arranged to communicate with a client requesting access to a storage; a host module arranged to communicate with the storage; a cache arranged to selectively store data flowing through the apparatus; and means for determining whether to store data flowing between the client and the storage in the cache and to pipe the data directly between the host module and the target module if the data is not to be cached.
PCT/US2003/039223 2002-12-09 2003-12-09 Data-aware data flow manager WO2004053650A2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
AU2003297816A AU2003297816A1 (en) 2002-12-09 2003-12-09 Data-aware data flow manager

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US43153102P 2002-12-09 2002-12-09
US60/431,531 2002-12-09

Publications (2)

Publication Number Publication Date
WO2004053650A2 true WO2004053650A2 (en) 2004-06-24
WO2004053650A3 WO2004053650A3 (en) 2004-07-29

Family

ID=32507750

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US2003/039223 WO2004053650A2 (en) 2002-12-09 2003-12-09 Data-aware data flow manager

Country Status (3)

Country Link
US (1) US6922754B2 (en)
AU (1) AU2003297816A1 (en)
WO (1) WO2004053650A2 (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2006113087A2 (en) * 2005-04-13 2006-10-26 Emc Corporation Data storage system having memory controller with embedded cpu
WO2009025684A1 (en) * 2007-08-21 2009-02-26 Thomson Licensing Method and system for preventing corruption of hard disk drive file system

Families Citing this family (174)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7565509B2 (en) 2002-04-17 2009-07-21 Microsoft Corporation Using limits on address translation to control access to an addressable entity
US7194576B1 (en) * 2003-07-31 2007-03-20 Western Digital Technologies, Inc. Fetch operations in a disk drive control system
US7213036B2 (en) 2003-08-12 2007-05-01 Aol Llc System for incorporating information about a source and usage of a media asset into the asset itself
US7085895B2 (en) * 2003-09-05 2006-08-01 International Business Machines Corporation Apparatus, system, and method flushing data from a cache to secondary storage
JP4508608B2 (en) * 2003-11-13 2010-07-21 株式会社日立製作所 Storage adapter with integrated cache
US20050120134A1 (en) * 2003-11-14 2005-06-02 Walter Hubis Methods and structures for a caching to router in iSCSI storage systems
JP4012498B2 (en) * 2003-11-18 2007-11-21 株式会社日立製作所 Information processing system, information processing apparatus, information processing apparatus control method, and program
US7356651B2 (en) * 2004-01-30 2008-04-08 Piurata Technologies, Llc Data-aware cache state machine
US7433892B2 (en) * 2004-03-05 2008-10-07 International Business Machines Corporation Method, system and program product for imposing policy modification constraints
US7165144B2 (en) * 2004-03-19 2007-01-16 Intel Corporation Managing input/output (I/O) requests in a cache memory system
JP2005267497A (en) * 2004-03-22 2005-09-29 Hitachi Global Storage Technologies Netherlands Bv Data storage device, its control method and magnetic disk storage device
US20080140921A1 (en) * 2004-06-10 2008-06-12 Sehat Sutardja Externally removable non-volatile semiconductor memory module for hard disk drives
US8019937B2 (en) * 2004-07-21 2011-09-13 Infortrend Technology, Inc. Applying storage device commit-cached-data-to-media functionality to improve data security in systems that allow storage devices to cache writes
US7418560B2 (en) 2004-09-23 2008-08-26 Sap Ag Centralized cache storage for runtime systems
US7590803B2 (en) * 2004-09-23 2009-09-15 Sap Ag Cache eviction
US7580915B2 (en) * 2004-12-14 2009-08-25 Sap Ag Socket-like communication API for C
US7600217B2 (en) * 2004-12-14 2009-10-06 Sap Ag Socket-like communication API for Java
US7246205B2 (en) * 2004-12-22 2007-07-17 Intel Corporation Software controlled dynamic push cache
US20060143398A1 (en) * 2004-12-23 2006-06-29 Stefan Rau Method and apparatus for least recently used (LRU) software cache
US7971001B2 (en) * 2004-12-28 2011-06-28 Sap Ag Least recently used eviction implementation
US7694065B2 (en) * 2004-12-28 2010-04-06 Sap Ag Distributed cache architecture
US7523263B2 (en) * 2004-12-28 2009-04-21 Michael Wintergerst Storage plug-in based on shared closures
US7539821B2 (en) * 2004-12-28 2009-05-26 Sap Ag First in first out eviction implementation
US7552284B2 (en) * 2004-12-28 2009-06-23 Sap Ag Least frequently used eviction implementation
US7451275B2 (en) * 2004-12-28 2008-11-11 Sap Ag Programming models for storage plug-ins
US7437516B2 (en) * 2004-12-28 2008-10-14 Sap Ag Programming models for eviction policies
US8204931B2 (en) 2004-12-28 2012-06-19 Sap Ag Session management within a multi-tiered enterprise network
US20060143256A1 (en) 2004-12-28 2006-06-29 Galin Galchev Cache region concept
US20060143389A1 (en) * 2004-12-28 2006-06-29 Frank Kilian Main concept for common cache management
US7512737B2 (en) 2004-12-28 2009-03-31 Sap Ag Size based eviction implementation
US20060179240A1 (en) * 2005-02-09 2006-08-10 International Business Machines Corporation System and method for algorithmic cache-bypass
US20060236033A1 (en) * 2005-04-18 2006-10-19 Dell Products L.P. System and method for the implementation of an adaptive cache policy in a storage controller
US7581066B2 (en) * 2005-04-29 2009-08-25 Sap Ag Cache isolation model
US8589562B2 (en) 2005-04-29 2013-11-19 Sap Ag Flexible failover configuration
US7831634B2 (en) 2005-04-29 2010-11-09 Sap Ag Initializing a cache region using a generated cache region configuration structure
US7802019B2 (en) * 2005-06-14 2010-09-21 Microsoft Corporation Hard disk drive condition reporting and error correction
US7966412B2 (en) * 2005-07-19 2011-06-21 Sap Ag System and method for a pluggable protocol handler
JP4903415B2 (en) * 2005-10-18 2012-03-28 株式会社日立製作所 Storage control system and storage control method
JP4910360B2 (en) * 2005-10-20 2012-04-04 ソニー株式会社 Storage device, computer system, and data writing method
US7752391B2 (en) * 2006-01-20 2010-07-06 Apple Inc. Variable caching policy system and method
US8356079B2 (en) * 2006-01-27 2013-01-15 Oracle International Corporation Schema annotations for cache management
US7756922B2 (en) * 2006-01-27 2010-07-13 Oracle International Corporation Schema annotations for managing cached document fragments
US7865471B1 (en) * 2006-06-30 2011-01-04 Symantec Operating Corporation Apparatus and method for accelerating database recovery
US20080263324A1 (en) 2006-08-10 2008-10-23 Sehat Sutardja Dynamic core switching
US7500070B2 (en) * 2006-08-23 2009-03-03 Lsi Corporation Methods and apparatus for improved RAID 1 mirror re-synchronization
FR2906624A1 (en) * 2006-10-03 2008-04-04 Bull S A S Soc Par Actions Sim Generated data storing system, has management module utilizing calculation result for managing priorities in accessing time by system for copying data of new volumes of virtual bookshop to virtual volumes of physical bookshop
US8489817B2 (en) 2007-12-06 2013-07-16 Fusion-Io, Inc. Apparatus, system, and method for caching data
US8706968B2 (en) 2007-12-06 2014-04-22 Fusion-Io, Inc. Apparatus, system, and method for redundant write caching
US9104599B2 (en) 2007-12-06 2015-08-11 Intelligent Intellectual Property Holdings 2 Llc Apparatus, system, and method for destaging cached data
CN101622594B (en) 2006-12-06 2013-03-13 弗森-艾奥公司 Apparatus, system, and method for managing data in a request device with an empty data token directive
US8443134B2 (en) 2006-12-06 2013-05-14 Fusion-Io, Inc. Apparatus, system, and method for graceful cache device degradation
US20080147985A1 (en) * 2006-12-13 2008-06-19 International Business Machines Corporation Method and System for Purging Data from a Controller Cache
US7930481B1 (en) * 2006-12-18 2011-04-19 Symantec Operating Corporation Controlling cached write operations to storage arrays
US8527711B2 (en) * 2006-12-27 2013-09-03 International Business Machines Corporation Method and system to preview new cacheable content
US7694188B2 (en) * 2007-02-05 2010-04-06 Microsoft Corporation Disk failure prevention and error correction
JP5026102B2 (en) * 2007-02-07 2012-09-12 株式会社日立製作所 Storage control device and data management method
US9519540B2 (en) 2007-12-06 2016-12-13 Sandisk Technologies Llc Apparatus, system, and method for destaging cached data
US7836226B2 (en) 2007-12-06 2010-11-16 Fusion-Io, Inc. Apparatus, system, and method for coordinating storage requests in a multi-processor/multi-thread environment
KR101038167B1 (en) * 2008-09-09 2011-05-31 가부시끼가이샤 도시바 Information processing device including memory management device managing access from processor to memory and memory management method
US8868831B2 (en) 2009-09-14 2014-10-21 Oracle International Corporation Caching data between a database server and a storage system
US10430338B2 (en) * 2008-09-19 2019-10-01 Oracle International Corporation Selectively reading data from cache and primary storage based on whether cache is overloaded
EP2350875A1 (en) 2008-09-19 2011-08-03 Oracle International Corporation Storage-side storage request management
US8601213B2 (en) * 2008-11-03 2013-12-03 Teradata Us, Inc. System, method, and computer-readable medium for spool cache management
US8244984B1 (en) * 2008-12-08 2012-08-14 Nvidia Corporation System and method for cleaning dirty data in an intermediate cache using a data class dependent eviction policy
US8060700B1 (en) * 2008-12-08 2011-11-15 Nvidia Corporation System, method and frame buffer logic for evicting dirty data from a cache using counters and data types
US8949541B2 (en) * 2008-12-08 2015-02-03 Nvidia Corporation Techniques for evicting dirty data from a cache using a notification sorter and count thresholds
US8464001B1 (en) * 2008-12-09 2013-06-11 Nvidia Corporation Cache and associated method with frame buffer managed dirty data pull and high-priority clean mechanism
US8103822B2 (en) 2009-04-26 2012-01-24 Sandisk Il Ltd. Method and apparatus for implementing a caching policy for non-volatile memory
US20110082983A1 (en) * 2009-10-06 2011-04-07 Alcatel-Lucent Canada, Inc. Cpu instruction and data cache corruption prevention system
US20110314226A1 (en) * 2010-06-16 2011-12-22 Byungcheol Cho Semiconductor storage device based cache manager
US8402226B1 (en) * 2010-06-18 2013-03-19 Emc Corporation Rate proportional cache write-back in a storage server
US8639887B2 (en) * 2010-06-23 2014-01-28 International Business Machines Corporation Dynamically altering a pipeline controller mode based on resource availability
US8635409B2 (en) 2010-06-23 2014-01-21 International Business Machines Corporation Dynamic mode transitions for cache instructions
US8732426B2 (en) 2010-09-15 2014-05-20 Pure Storage, Inc. Scheduling of reactive I/O operations in a storage environment
US11614893B2 (en) 2010-09-15 2023-03-28 Pure Storage, Inc. Optimizing storage device access based on latency
US11275509B1 (en) 2010-09-15 2022-03-15 Pure Storage, Inc. Intelligently sizing high latency I/O requests in a storage environment
US8589655B2 (en) 2010-09-15 2013-11-19 Pure Storage, Inc. Scheduling of I/O in an SSD environment
US8458511B2 (en) 2010-09-17 2013-06-04 Oracle International Corporation Fault isolation using code paths
US8966184B2 (en) 2011-01-31 2015-02-24 Intelligent Intellectual Property Holdings 2, LLC. Apparatus, system, and method for managing eviction of data
WO2012116369A2 (en) 2011-02-25 2012-08-30 Fusion-Io, Inc. Apparatus, system, and method for managing contents of a cache
US20120254502A1 (en) * 2011-03-28 2012-10-04 Byungcheol Cho Adaptive cache for a semiconductor storage device-based system
US8868830B2 (en) * 2011-08-02 2014-10-21 Sap Ag Practical code list cache for value help
US10592416B2 (en) 2011-09-30 2020-03-17 Oracle International Corporation Write-back storage cache based on fast persistent memory
US9098423B2 (en) 2011-10-05 2015-08-04 Taejin Info Tech Co., Ltd. Cross-boundary hybrid and dynamic storage and memory context-aware cache system
US8578111B2 (en) * 2011-10-11 2013-11-05 Hewlett-Packard Development Company, L.P. Backup optimization policy table for controlling buffered/un-buffered input/output
US8930947B1 (en) 2011-12-30 2015-01-06 Emc Corporation System and method for live migration of a virtual machine with dedicated cache
US8627012B1 (en) * 2011-12-30 2014-01-07 Emc Corporation System and method for improving cache performance
US9009416B1 (en) 2011-12-30 2015-04-14 Emc Corporation System and method for managing cache system content directories
US9235524B1 (en) 2011-12-30 2016-01-12 Emc Corporation System and method for improving cache performance
US9158578B1 (en) 2011-12-30 2015-10-13 Emc Corporation System and method for migrating virtual machines
US9104529B1 (en) 2011-12-30 2015-08-11 Emc Corporation System and method for copying a cache system
US9053033B1 (en) 2011-12-30 2015-06-09 Emc Corporation System and method for cache content sharing
US9767032B2 (en) 2012-01-12 2017-09-19 Sandisk Technologies Llc Systems and methods for cache endurance
US9251086B2 (en) 2012-01-24 2016-02-02 SanDisk Technologies, Inc. Apparatus, system, and method for managing a cache
US8935227B2 (en) 2012-04-17 2015-01-13 Oracle International Corporation Redistributing computation work between data producers and data consumers
US9218257B2 (en) * 2012-05-24 2015-12-22 Stec, Inc. Methods for managing failure of a solid state device in a caching storage
US9063908B2 (en) 2012-05-31 2015-06-23 Oracle International Corporation Rapid recovery from loss of storage device cache
US9336150B2 (en) * 2012-06-08 2016-05-10 International Business Machines Corporation Performing asynchronous discard scans with staging and destaging operations
US9195598B2 (en) 2012-06-08 2015-11-24 International Business Machines Corporation Synchronous and asynchronous discard scans based on the type of cache memory
US9350807B2 (en) 2012-06-15 2016-05-24 Qlogic, Corporation Intelligent adapter for providing storage area network access and access to a local storage device
WO2014015409A1 (en) * 2012-07-24 2014-01-30 Institute Of Computer Science Of The Foundation For Research And Technology - Hellas (Ics-Forth) System and method for implementing ssd-based i/o caches
US9208099B2 (en) 2012-08-08 2015-12-08 International Business Machines Corporation Adjustment of the number of task control blocks allocated for discard scans
US8972645B2 (en) * 2012-09-19 2015-03-03 Hewlett-Packard Development Company, L.P. Request sent to storage device based on moving average
US9678882B2 (en) 2012-10-11 2017-06-13 Intel Corporation Systems and methods for non-blocking implementation of cache flush instructions
US9892126B2 (en) * 2013-01-17 2018-02-13 International Business Machines Corporation Optimized caching based on historical production patterns for catalogs
US9176892B2 (en) 2013-01-22 2015-11-03 International Business Machines Corporation Performing staging or destaging based on the number of waiting discard scans
US10380021B2 (en) 2013-03-13 2019-08-13 Oracle International Corporation Rapid recovery from downtime of mirrored storage device
US10642837B2 (en) 2013-03-15 2020-05-05 Oracle International Corporation Relocating derived cache during data rebalance to maintain application performance
US9772793B2 (en) 2013-09-20 2017-09-26 Oracle International Corporation Data block movement offload to storage systems
US9342438B2 (en) * 2013-03-15 2016-05-17 Yahoo! Inc. Method and system for data-triggered dynamic log level control
US10528590B2 (en) 2014-09-26 2020-01-07 Oracle International Corporation Optimizing a query with extrema function using in-memory data summaries on the storage server
US9176895B2 (en) * 2013-03-16 2015-11-03 Intel Corporation Increased error correction for cache memories through adaptive replacement policies
US9626126B2 (en) 2013-04-24 2017-04-18 Microsoft Technology Licensing, Llc Power saving mode hybrid drive access management
US9946495B2 (en) * 2013-04-25 2018-04-17 Microsoft Technology Licensing, Llc Dirty data management for hybrid drives
US9235517B2 (en) * 2013-08-12 2016-01-12 Globalfoundries Inc. Implementing dynamic cache enabling and disabling based upon workload
US9170943B2 (en) * 2013-08-29 2015-10-27 Globalfoundries U.S. 2 Llc Selectively enabling write caching in a storage system based on performance metrics
CN105453061B (en) * 2013-09-04 2018-09-18 英特尔公司 Convenient for the mechanism of the dynamic memory management to mobile computing device
US9798655B2 (en) 2013-09-20 2017-10-24 Oracle International Corporation Managing a cache on storage devices supporting compression
US9430383B2 (en) 2013-09-20 2016-08-30 Oracle International Corporation Fast data initialization
US10229161B2 (en) 2013-09-20 2019-03-12 Oracle International Corporation Automatic caching of scan and random access data in computing systems
KR102086778B1 (en) * 2013-09-30 2020-04-14 삼성전자 주식회사 Computing System including Storage System and Writing Method of the same
CN105683930B (en) * 2013-10-29 2019-05-31 上海宝存信息科技有限公司 Method for dynamically caching and system for data-storage system
US9454305B1 (en) 2014-01-27 2016-09-27 Qlogic, Corporation Method and system for managing storage reservation
US9274713B2 (en) 2014-04-03 2016-03-01 Avago Technologies General Ip (Singapore) Pte. Ltd. Device driver, method and computer-readable medium for dynamically configuring a storage controller based on RAID type, data alignment with a characteristic of storage elements and queue depth in a cache
US9423980B1 (en) 2014-06-12 2016-08-23 Qlogic, Corporation Methods and systems for automatically adding intelligent storage adapters to a cluster
US9436654B1 (en) 2014-06-23 2016-09-06 Qlogic, Corporation Methods and systems for processing task management functions in a cluster having an intelligent storage adapter
US9652415B2 (en) 2014-07-09 2017-05-16 Sandisk Technologies Llc Atomic non-volatile memory data transfer
US9904621B2 (en) 2014-07-15 2018-02-27 Sandisk Technologies Llc Methods and systems for flash buffer sizing
US9645744B2 (en) 2014-07-22 2017-05-09 Sandisk Technologies Llc Suspending and resuming non-volatile memory operations
US9477424B1 (en) 2014-07-23 2016-10-25 Qlogic, Corporation Methods and systems for using an intelligent storage adapter for replication in a clustered environment
US10313427B2 (en) 2014-09-24 2019-06-04 Intel Corporation Contextual application management
US9460017B1 (en) 2014-09-26 2016-10-04 Qlogic, Corporation Methods and systems for efficient cache mirroring
US9952978B2 (en) * 2014-10-27 2018-04-24 Sandisk Technologies, Llc Method for improving mixed random performance in low queue depth workloads
US9753649B2 (en) 2014-10-27 2017-09-05 Sandisk Technologies Llc Tracking intermix of writes and un-map commands across power cycles
US9558125B2 (en) 2014-10-27 2017-01-31 Sandisk Technologies Llc Processing of un-map commands to enhance performance and endurance of a storage device
US9824007B2 (en) 2014-11-21 2017-11-21 Sandisk Technologies Llc Data integrity enhancement to protect against returning old versions of data
US9817752B2 (en) 2014-11-21 2017-11-14 Sandisk Technologies Llc Data integrity enhancement to protect against returning old versions of data
US9483207B1 (en) 2015-01-09 2016-11-01 Qlogic, Corporation Methods and systems for efficient caching using an intelligent storage adapter
US9971686B2 (en) * 2015-02-23 2018-05-15 Intel Corporation Vector cache line write back processors, methods, systems, and instructions
US9647697B2 (en) 2015-03-16 2017-05-09 Sandisk Technologies Llc Method and system for determining soft information offsets
US9772796B2 (en) 2015-04-09 2017-09-26 Sandisk Technologies Llc Multi-package segmented data transfer protocol for sending sub-request to multiple memory portions of solid-state drive using a single relative memory address
US9753653B2 (en) 2015-04-14 2017-09-05 Sandisk Technologies Llc High-priority NAND operations management
US9864545B2 (en) 2015-04-14 2018-01-09 Sandisk Technologies Llc Open erase block read automation
US10372529B2 (en) 2015-04-20 2019-08-06 Sandisk Technologies Llc Iterative soft information correction and decoding
US9778878B2 (en) 2015-04-22 2017-10-03 Sandisk Technologies Llc Method and system for limiting write command execution
US9870149B2 (en) 2015-07-08 2018-01-16 Sandisk Technologies Llc Scheduling operations in non-volatile memory devices using preference values
US9715939B2 (en) 2015-08-10 2017-07-25 Sandisk Technologies Llc Low read data storage management
US10353592B2 (en) * 2015-09-15 2019-07-16 Hitachi, Ltd. Storage system, computer system, and control method for storage system
US10228990B2 (en) 2015-11-12 2019-03-12 Sandisk Technologies Llc Variable-term error metrics adjustment
US10126970B2 (en) 2015-12-11 2018-11-13 Sandisk Technologies Llc Paired metablocks in non-volatile storage device
US10019372B2 (en) * 2015-12-16 2018-07-10 Western Digital Technologies, Inc. Caching sensing device data in data storage device
US9837146B2 (en) 2016-01-08 2017-12-05 Sandisk Technologies Llc Memory system temperature management
US9779026B2 (en) 2016-01-14 2017-10-03 Seagate Technology Llc Cache bypass utilizing a binary tree
US9841906B2 (en) 2016-02-01 2017-12-12 Seagate Technology Llc Zone forward drive management
US10732856B2 (en) 2016-03-03 2020-08-04 Sandisk Technologies Llc Erase health metric to rank memory portions
US10481830B2 (en) 2016-07-25 2019-11-19 Sandisk Technologies Llc Selectively throttling host reads for read disturbs in non-volatile memory system
CN107797756B (en) * 2016-09-05 2021-01-12 上海宝存信息科技有限公司 Priority writing method of solid state disk system and device using same
US10133667B2 (en) 2016-09-06 2018-11-20 Orcle International Corporation Efficient data storage and retrieval using a heterogeneous main memory
US10331573B2 (en) 2016-11-04 2019-06-25 Oracle International Corporation Detection of avoidable cache thrashing for OLTP and DW workloads
US10803039B2 (en) 2017-05-26 2020-10-13 Oracle International Corporation Method for efficient primary key based queries using atomic RDMA reads on cache friendly in-memory hash index
US10380034B2 (en) * 2017-07-14 2019-08-13 International Business Machines Corporation Cache return order optimization
US10282116B2 (en) * 2017-07-19 2019-05-07 Avago Technologies International Sales Pte. Limited Method and system for hardware accelerated cache flush
JP6873001B2 (en) * 2017-07-28 2021-05-19 富士通セミコンダクターメモリソリューション株式会社 Semiconductor storage device with wireless communication function and write control method
US10673686B2 (en) * 2017-08-11 2020-06-02 Quanta Computer Inc. High availability storage pool compose mechanism
US10719446B2 (en) 2017-08-31 2020-07-21 Oracle International Corporation Directly mapped buffer cache on non-volatile memory
US10732836B2 (en) 2017-09-29 2020-08-04 Oracle International Corporation Remote one-sided persistent writes
US10956335B2 (en) 2017-09-29 2021-03-23 Oracle International Corporation Non-volatile cache access using RDMA
US11086876B2 (en) 2017-09-29 2021-08-10 Oracle International Corporation Storing derived summaries on persistent memory of a storage device
US10802766B2 (en) 2017-09-29 2020-10-13 Oracle International Corporation Database with NVDIMM as persistent storage
US10909040B2 (en) * 2018-04-19 2021-02-02 Intel Corporation Adaptive calibration of nonvolatile memory channel based on platform power management state
US10963381B2 (en) 2018-11-26 2021-03-30 Verizon Digital Media Services Inc. Dynamic caching and eviction
US10776276B2 (en) 2018-11-30 2020-09-15 Hewlett Packard Enterprise Development Lp Bypass storage class memory read cache based on a queue depth threshold
US11347647B2 (en) * 2018-12-18 2022-05-31 Western Digital Technologies, Inc. Adaptive cache commit delay for write aggregation
US11030107B2 (en) 2019-04-19 2021-06-08 Hewlett Packard Enterprise Development Lp Storage class memory queue depth threshold adjustment

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP0675436A1 (en) * 1994-03-31 1995-10-04 STMicroelectronics, Inc. Recoverable set associative cache
US5623630A (en) * 1993-12-06 1997-04-22 Mitsubishi Denki Kabushiki Kaisha Data processor with application program buffer to cache buffer copy capability to prevent mismatches
US6701415B1 (en) * 1999-03-31 2004-03-02 America Online, Inc. Selecting a cache for a request for information

Family Cites Families (52)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP0348616B1 (en) 1988-06-28 1995-10-11 International Business Machines Corporation Storage subsystem including an error correcting cache
EP0348628A3 (en) 1988-06-28 1991-01-02 International Business Machines Corporation Cache storage system
US5590349A (en) 1988-07-11 1996-12-31 Logic Devices, Inc. Real time programmable signal processor architecture
US5394531A (en) * 1989-04-03 1995-02-28 International Business Machines Corporation Dynamic storage allocation system for a prioritized cache
US5432919A (en) * 1989-07-06 1995-07-11 Digital Equipment Corporation Sequential reference management for cache memories
EP0530310A4 (en) 1990-05-18 1993-07-21 Star Semiconductor Corporation Programmable signal processor architecture
US5625793A (en) * 1991-04-15 1997-04-29 International Business Machines Corporation Automatic cache bypass for instructions exhibiting poor cache hit ratio
JPH0683712A (en) * 1992-09-03 1994-03-25 Nec Ic Microcomput Syst Ltd Microprocessor
US5809533A (en) 1993-02-18 1998-09-15 Unisys Corporation Dual bus system with multiple processors having data coherency maintenance
US5483640A (en) 1993-02-26 1996-01-09 3Com Corporation System for managing data flow among devices by storing data and structures needed by the devices and transferring configuration information from processor to the devices
US5664106A (en) * 1993-06-04 1997-09-02 Digital Equipment Corporation Phase-space surface representation of server computer performance in a computer network
US5619642A (en) 1994-12-23 1997-04-08 Emc Corporation Fault tolerant memory system which utilizes data from a shadow memory device upon the detection of erroneous data in a main memory device
US5729713A (en) * 1995-03-27 1998-03-17 Texas Instruments Incorporated Data processing with first level cache bypassing after a data transfer becomes excessively long
US5615392A (en) 1995-05-05 1997-03-25 Apple Computer, Inc. Method and apparatus for consolidated buffer handling for computer device input/output
US5860105A (en) 1995-11-13 1999-01-12 National Semiconductor Corporation NDIRTY cache line lookahead
US5724501A (en) 1996-03-29 1998-03-03 Emc Corporation Quick recovery of write cache in a fault tolerant I/O system
US5864607A (en) 1996-08-23 1999-01-26 Compaq Computer Corp. Communication with a computer using telephones
US5787431A (en) 1996-12-16 1998-07-28 Borland International, Inc. Database development system with methods for java-string reference lookups of column names
US5895488A (en) 1997-02-24 1999-04-20 Eccs, Inc. Cache flushing methods and apparatus
US5895485A (en) * 1997-02-24 1999-04-20 Eccs, Inc. Method and device using a redundant cache for preventing the loss of dirty data
US6275866B1 (en) 1997-03-14 2001-08-14 Mathsoft Engineering & Education, Inc. Manipulation and coupling of object oriented components
US5958068A (en) * 1997-04-14 1999-09-28 International Business Machines Corporation Cache array defect functional bypassing using repair mask
US6018763A (en) 1997-05-28 2000-01-25 3Com Corporation High performance shared memory for a bridge router supporting cache coherency
US5898863A (en) 1997-06-03 1999-04-27 Emc Corporation Method and apparatus for determining I/O size distribution of an input/output system and its use for load simulation
US6003114A (en) 1997-06-17 1999-12-14 Emc Corporation Caching system and method providing aggressive prefetch
US6266666B1 (en) 1997-09-08 2001-07-24 Sybase, Inc. Component transaction server for developing and deploying transaction- intensive business applications
US6141728A (en) 1997-09-29 2000-10-31 Quantum Corporation Embedded cache manager
US6098114A (en) 1997-11-14 2000-08-01 3Ware Disk array system for processing and tracking the completion of I/O requests
US5968149A (en) 1998-01-07 1999-10-19 International Business Machines Corporation Tandem operation of input/output data compression modules
US6408369B1 (en) 1998-03-12 2002-06-18 Emc Corporation Internal copy for a storage controller
US6233611B1 (en) 1998-05-08 2001-05-15 Sony Corporation Media manager for controlling autonomous media devices within a network environment and managing the flow and format of data between the devices
US6260158B1 (en) 1998-05-11 2001-07-10 Compaq Computer Corporation System and method for fail-over data transport
EP1095373A2 (en) * 1998-05-15 2001-05-02 Storage Technology Corporation Caching method for data blocks of variable size
US6484234B1 (en) 1998-06-30 2002-11-19 Emc Corporation Method and apparatus for efficiently destaging data from a cache to two or more non-contiguous storage locations
JP2000047912A (en) 1998-07-30 2000-02-18 Nippon Telegr & Teleph Corp <Ntt> Method and device for monitorning network service and storage medium having recorded network service monitor program thereon
US6243795B1 (en) * 1998-08-04 2001-06-05 The Board Of Governors For Higher Education, State Of Rhode Island And Providence Plantations Redundant, asymmetrically parallel disk cache for a data storage system
US6279050B1 (en) 1998-12-18 2001-08-21 Emc Corporation Data transfer apparatus having upper, lower, middle state machines, with middle state machine arbitrating among lower state machine side requesters including selective assembly/disassembly requests
US6317805B1 (en) 1998-12-18 2001-11-13 Emc Corporation Data transfer interface having protocol conversion device and upper, lower, middle machines: with middle machine arbitrating among lower machine side requesters including selective assembly/disassembly requests
US6397273B2 (en) 1998-12-18 2002-05-28 Emc Corporation System having an enhanced parity mechanism in a data assembler/disassembler for use in a pipeline of a host-storage system interface to global memory
JP2000307593A (en) 1999-04-19 2000-11-02 Fujitsu Ltd Device and method for managing mpoa cache
US6341331B1 (en) * 1999-10-01 2002-01-22 International Business Machines Corporation Method and system for managing a raid storage system with cache
US6457102B1 (en) 1999-11-05 2002-09-24 Emc Corporation Cache using multiple LRU's
US6567975B1 (en) 1999-11-08 2003-05-20 Sun Microsystems, Inc. Method and apparatus for inserting data prefetch operations using data flow analysis
US6609177B1 (en) * 1999-11-12 2003-08-19 Maxtor Corporation Method and apparatus for extending cache history
US6574682B1 (en) 1999-11-23 2003-06-03 Zilog, Inc. Data flow enhancement for processor architectures with cache
US6487562B1 (en) 1999-12-20 2002-11-26 Emc Corporation Dynamically modifying system parameters in data storage system
US6748492B1 (en) * 2000-08-07 2004-06-08 Broadcom Corporation Deterministic setting of replacement policy in a cache through way selection
US6516390B1 (en) * 2000-10-26 2003-02-04 Emc Corporation Methods and apparatus for accessing data within a data storage system
US6529998B1 (en) 2000-11-03 2003-03-04 Emc Corporation Adaptive prefetching of data from a disk
US6629211B2 (en) * 2001-04-20 2003-09-30 International Business Machines Corporation Method and system for improving raid controller performance through adaptive write back/write through caching
US6594742B1 (en) 2001-05-07 2003-07-15 Emc Corporation Cache management via statistically adjusted slot aging
US6496908B1 (en) 2001-05-18 2002-12-17 Emc Corporation Remote mirroring

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5623630A (en) * 1993-12-06 1997-04-22 Mitsubishi Denki Kabushiki Kaisha Data processor with application program buffer to cache buffer copy capability to prevent mismatches
EP0675436A1 (en) * 1994-03-31 1995-10-04 STMicroelectronics, Inc. Recoverable set associative cache
US6701415B1 (en) * 1999-03-31 2004-03-02 America Online, Inc. Selecting a cache for a request for information

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2006113087A2 (en) * 2005-04-13 2006-10-26 Emc Corporation Data storage system having memory controller with embedded cpu
WO2006113087A3 (en) * 2005-04-13 2006-12-14 Emc Corp Data storage system having memory controller with embedded cpu
WO2009025684A1 (en) * 2007-08-21 2009-02-26 Thomson Licensing Method and system for preventing corruption of hard disk drive file system

Also Published As

Publication number Publication date
AU2003297816A8 (en) 2004-06-30
US20040117441A1 (en) 2004-06-17
AU2003297816A1 (en) 2004-06-30
US6922754B2 (en) 2005-07-26
WO2004053650A3 (en) 2004-07-29

Similar Documents

Publication Publication Date Title
US6922754B2 (en) Data-aware data flow manager
US10860213B2 (en) Methods and systems for data storage using solid state drives
US7725661B2 (en) Data-aware cache state machine
US8291094B2 (en) Method and apparatus for implementing high-performance, scaleable data processing and storage systems
US7386662B1 (en) Coordination of caching and I/O management in a multi-layer virtualized storage environment
US7636801B1 (en) Coordination of quality of service in a multi-layer virtualized storage environment
EP1965304B1 (en) Storage system
US9612967B1 (en) Cache load balancing by reclaimable block migration
EP2019354B1 (en) Power saving method in NAS and computer system using the method
US6950914B2 (en) Storage system
US20140310373A1 (en) System and method for populating a cache using behavioral adaptive policies
US20050267929A1 (en) Method of dynamically balancing workload of a storage system
US20080034076A1 (en) Load distribution method in NAS migration, and, computer system and NAS server using the method
US9906596B2 (en) Resource node interface protocol
CN101673283A (en) Management terminal and computer system
CN1723434A (en) Apparatus and method for a scalable network attach storage system
US7062608B2 (en) Storage device adapter equipped with integrated cache
JP2007510978A (en) Storage server bottom-up cache structure
WO2006057790A9 (en) System and method for managing quality of service for a storage system
US7694166B1 (en) Integrating control of service during cluster failover
US20160212198A1 (en) System of host caches managed in a unified manner
JP6942163B2 (en) Drive box, storage system and data transfer method
JP2006228188A (en) Method of dynamically balancing workload of storage system
EP3926455A1 (en) Information processing apparatus and method
JP5055252B2 (en) Data processing method and system

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A2

Designated state(s): AE AG AL AM AT AU AZ BA BB BG BR BW BY BZ CA CH CN CO CR CU CZ DE DK DM DZ EC EE EG ES FI GB GD GE GH GM HR HU ID IL IN IS JP KE KG KP KR KZ LC LK LR LS LT LU LV MA MD MG MK MN MW MX MZ NI NO NZ OM PG PH PL PT RO RU SC SD SE SG SK SL SY TJ TM TN TR TT TZ UA UG UZ VC VN YU ZA ZM ZW

AL Designated countries for regional patents

Kind code of ref document: A2

Designated state(s): BW GH GM KE LS MW MZ SD SL SZ TZ UG ZM ZW AM AZ BY KG KZ MD RU TJ TM AT BE BG CH CY CZ DE DK EE ES FI FR GB GR HU IE IT LU MC NL PT RO SE SI SK TR BF BJ CF CG CI CM GA GN GQ GW ML MR NE SN TD TG

121 Ep: the epo has been informed by wipo that ep was designated in this application
122 Ep: pct application non-entry in european phase
NENP Non-entry into the national phase

Ref country code: JP

WWW Wipo information: withdrawn in national office

Country of ref document: JP