This disclosure relates to computer cluster data management, and more particularly to techniques for managing incremental key-value snapshots for fast leader node bring-up.
In recent years, computing systems have grown to become large-scale distributed systems that use thousands of servers to process millions of data requests in a continuous and “always-up” fashion. In addition to being faster than past computing systems, these new distributed systems are also more robust because data items are replicated and stored at multiple physical locations, thus ensuring data is never lost, even in the event of a disaster.
In such distributed systems, it is necessary to ensure that data stored in multiple physical locations agree on the values corresponding to the data requests. For example, if an individual's bank account balance is stored as a data item at three geographically separate data centers and the individual deposits $100,000 into their account, then ensuring that all three data centers reflect the updated value is of paramount importance. If the data message to “increase the bank account balance by $100,000” is received at only one of the three data centers and is lost in transmission to the other two data centers, a data conflict occurs and it may be unclear which data center contains the correct value for the bank account data.
Various consensus-based algorithms and protocols have been implemented in an attempt to solve data conflict problems. Generally, consensus algorithms (e.g., Paxos), work by requiring nodes (e.g., servers) to vote or arbitrate amongst themselves to form a consensus as to what the correct value is for a given piece of data. For example, in a five-node (e.g., five server) system, if three out of five nodes reflect a deposit update of $100,000, those three out of five nodes constitute a majority and the remaining two out of five nodes will agree to also reflect the $100,000 update—whether or not a message to update the account by $100,000 was received directly by the two remaining nodes.
Even though consensus algorithms may ensure higher data accuracy, they are computationally expensive because every data value that needs to be processed must be arbitrated and/or voted on multiple times, which creates an enormous amount of network traffic. The computing expenses increase unboundedly as more and more data is being managed over more and more computing nodes. One approach to reducing the aforementioned network traffic is to establish a leader-follower relationship between the nodes, and then to process all data READ requests at the leader. Once the leader has a data value that has been agreed to by all of the followers, the leader can service all data READs without having to repeat the consensus algorithm.
While using a leader node in such a mode greatly improves overall system performance, it has undesirable characteristics that result from having a single point of failure. Some of the undesirable characteristics that result from having a single point of failure can be ameliorated by having backups of data that can be used to bring up a replacement leader node in the event of the failure of a leader. Use of backups, however leads to the scenario where the backup is out of date. An out-of-date backup can be used to bring up a new leader, however all of the data in the out-of-date back up would need to be checked (“scanned”) such that value by value, a voting or consensus algorithm arrives at an up-to-date value that is in agreement by all nodes that hold a copy of the subject data. A value by value consensus or quorum must be reached before the replacement leader can assume the responsibilities of a fully-functioning leader node.
Unfortunately, this checking (“scanning”) of the data on a value by value basis becomes enormously expensive, especially as the size of the data grows and/or as the number of participating nodes increases. What is needed is an approach or approaches that provide uncompromised data accuracy while still providing fast replacement node bring-up in the event of a leader node's failure or disconnection from the network.
This summary is provided to introduce a selection of concepts that are further described elsewhere in the written description and in the figures. This summary is not intended to identify key features or essential features of the claimed subject matter, nor is it intended to limit the scope of the claimed subject matter. Moreover, the individual embodiments of this disclosure each have several innovative aspects, no single one of which is solely responsible for any particular desirable attribute or end result.
The present disclosure describes techniques used in systems, methods, and in computer program products the manage incremental snapshots for fast leader node bring-up, which techniques advance the relevant technologies to address technological issues with legacy approaches. Certain embodiments are directed to technological solutions for managing incremental snapshots to accomplish fast leader node bring-up into a leader mode.
The disclosed embodiments modify and improve over legacy approaches. In particular, the herein-disclosed techniques provide technical solutions that address the technical problem of how avoid extensive key-value scan operations when bringing up a replacement leader node. Such technical solutions involve specific implementations (i.e., data organization, data communication paths, module-to-module interrelationships, etc.) that relate to the software arts for improving computer functionality. Various applications of the herein-disclosed improvements in computer functionality serve to reduce demands for computer memory, reduce demands for computer processing power, reduce network bandwidth usage, and reduce demands for intercomponent communication. Specifically, by avoiding extensive key-value scan operations when bringing up a replacement leader node, both memory usage and CPU cycles demanded are significantly reduced as compared to the memory usage and CPU cycles that would be needed but for practice of the herein-disclosed techniques. This is because, since key-value scan operations are computationally expensive, any technique that avoids unnecessary key-value scan operations also avoids unnecessary consumption of computing resources.
Many of the herein-disclosed embodiments for bringing up a new leader node by applying incremental snapshots are technological solutions pertaining to technological problems that arise in the hardware and software arts that underlie clustered computing systems. Aspects of the present disclosure achieve performance and other improvements in peripheral technical fields including, but not limited to deployment and management of hyperconverged computing platforms.
Some embodiments include a sequence of instructions that are stored on a non-transitory computer readable medium. Such a sequence of instructions, when stored in memory and executed by one or more processors cause the one or more processors to perform a set of acts for bringing up a new leader node by applying incremental snapshots.
Some embodiments include the aforementioned sequence of instructions that are stored in a memory, which memory is interfaced to one or more processors such that the one or more processors can execute the sequence of instructions to cause the one or more processors to implement acts for bringing up a new leader node by applying incremental snapshots.
In various embodiments, any combinations of any of the above can be combined to perform any variations of acts for managing incremental snapshots for fast leader node bring-up into a leader mode, and many such combinations of aspects of the above elements are contemplated.
Further details of aspects, objectives and advantages of the technological embodiments are described herein, and in the figures and claims.
The drawings described below are for illustration purposes only. The drawings are not intended to limit the scope of the present disclosure.
FIG. 6B1, FIG. 6B2, FIG. 6B3, and FIG. 6B4 depict a leader bring-up technique as used in systems that employ incremental snapshots for fast leader node bring-up into a leader mode, according to an embodiment.
Aspects of the present disclosure solve problems associated with using computer systems for avoiding extensive key-value scan operations when bringing up a replacement leader node. These problems are unique to, and may have been created by, various computer-implemented methods for performing scan/consensus operations when bringing up a replacement leader node in the context of clustered computing systems. Some embodiments are directed to approaches for bringing up a new leader node by applying incremental snapshots. The accompanying figures and discussions herein present example environments, systems, methods, and computer program products for managing incremental snapshots for fast leader node bring-up into a leader mode.
Overview
Computing clusters formed of many computing nodes that share a common storage pool often employ many distributed metadata maintenance agents to manage ongoing changes to the storage pool. Often, many such distributed metadata maintenance nodes can be deployed where each metadata maintenance node is assigned responsibility for a range (e.g., shard) of keys. For example, a first metadata maintenance node might be assigned to handle keys in the range (A-H], whereas a second metadata maintenance node might be assigned to handle keys in the range (H-P], and a third metadata maintenance node might be assigned to handle keys in the range (P-A]. As such, the nodes collectively share the load attendant to handling key (e.g., READs and WRITEs of a value corresponding to a key). In many computing cluster topologies, these metadata maintenance nodes are organized into a logical ring structure where each metadata maintenance node is in network communication with both a successor node as well as a predecessor node.
In many situations, some of which are described in detail hereunder, one of the metadata maintenance nodes can be assigned as a leader node that is configured to take on the duties of handling all READ requests for any key range. Handling of READ requests often does not require storage I/O (input/output or IO) and, as such, there are many deployments where a designated leader node can handle all READ requests for any key range without incurring storage I/O at all. This is especially true in situations where the value corresponding to a key is relatively small. Indeed, in such situations, it often happens that handling a READ request can be performed by accessing node-local memory to retrieve the value of a requested key.
In some embodiments, specifically when implementing a leader READ-all mode, the leader is able to service read requests from its local data store without having to run a consensus algorithm to determine the validity of the data. This is possible because, before getting into the leader READ-all mode, the leader ensures that the leader's own local copy of the data is not only up-to-date, but is also in agreement with the other nodes of the ring. In this mode the leader is configured to service all READ requests for any metadata corresponding to any range or shard. The other nodes of the ring take on the responsibilities of a follower node (e.g., to service WRITES to their particular assigned range or shard).
In other embodiments, specifically when implementing a leader in a leader-only READ mode for a particular range or shard of metadata, the leader is able to service read requests for its particular range of metadata using data from its local data store, without having to run a consensus algorithm to determine the validity of the data. This is possible because, before getting into the leader-only READ mode, the leader ensures that the leader's own local copy of the data for particular range of metadata is not only up-to-date, but is also in agreement with its replicas that are assigned to the same particular range or shard of metadata. When a designated leader node actually takes-on the leader responsibility to handle a leader-only READ mode to service READ requests corresponding to particular range of metadata, other nodes of the ring may take on the responsibilities of a leader-only READ mode to service READS from their particular range or shard of metadata.
Solution Overview
The herein-disclosed solutions include schemes where each of many distributed metadata maintenance agents can take snapshots of their own current metadata (e.g., metadata for a distributed file system), which snapshots can be retrieved by any other metadata maintenance agent running on any distributed metadata maintenance node. Specifically, each distributed metadata maintenance agent periodically invokes a snapshot operation on itself to create incremental snapshots of its data that comprise only data that had changed during a “delta” period. These snapshot IDs (and access to the data underlying a particular snapshot) are made available to all clients.
A distributed metadata maintenance node in a leader READ-all mode can confirm that its full set of metadata are up to date by first retrieving snapshots from the follower nodes, and then by performing “delta scans” over the follower nodes to retrieve only the data that was new or had changed since the latest snapshot was formed. In this case, the distributed metadata maintenance node in a leader READ-all mode need only scan (e.g., achieve consensus over) the data that was new or had changed since the latest snapshot was formed. Application of this technique results in extremely fast bring-up of a new distributed metadata maintenance node in a leader READ-all mode.
This technique can be employed in systems that are configured for high availability, even if the node that is designated to perform in a leader READ-all mode goes “down” or is disconnected from the ring. Specifically, fast recovery from the loss of a leader can be accomplished by bringing up a new leader node into a verified, then-current data state by (1) retrieving the most recent incremental snapshots, then (2) retrieving any more recent metadata, and then (3) performing scan consensus operations over just the more recent metadata.
As used herein, the term “snapshot” refers to a collection of metadata entries that were captured at a particular point in time. Multiple snapshots taken at different times result in incremental snapshots that may contain metadata entries that have different metadata values for the same key. As used herein a snapshot contains metadata in the form of keys and respective values. Each metadata entry is associated with a relative time (e.g., a first time, a second time, etc.).
Definitions and Use of Figures
Some of the terms used in this description are defined below for easy reference. The presented terms and their respective definitions are not rigidly restricted to these definitions—a term may be further defined by the term's use within this disclosure. The term “exemplary” is used herein to mean serving as an example, instance, or illustration. Any aspect or design described herein as “exemplary” is not necessarily to be construed as preferred or advantageous over other aspects or designs. Rather, use of the word exemplary is intended to present concepts in a concrete fashion. As used in this application and the appended claims, the term “or” is intended to mean an inclusive “or” rather than an exclusive “or”. That is, unless specified otherwise, or is clear from the context, “X employs A or B” is intended to mean any of the natural inclusive permutations. That is, if X employs A, X employs B, or X employs both A and B, then “X employs A or B” is satisfied under any of the foregoing instances. As used herein, at least one of A or B means at least one of A, or at least one of B, or at least one of both A and B. In other words, this phrase is disjunctive. The articles “a” and “an” as used in this application and the appended claims should generally be construed to mean “one or more” unless specified otherwise or is clear from the context to be directed to a singular form.
Various embodiments are described herein with reference to the figures. It should be noted that the figures are not necessarily drawn to scale, and that elements of similar structures or functions are sometimes represented by like reference characters throughout the figures. It should also be noted that the figures are only intended to facilitate the description of the disclosed embodiments—they are not representative of an exhaustive treatment of all possible embodiments, and they are not intended to impute any limitation as to the scope of the claims. In addition, an illustrated embodiment need not portray all aspects or advantages of usage in any particular environment.
An aspect or an advantage described in conjunction with a particular embodiment is not necessarily limited to that embodiment and can be practiced in any other embodiments even if not so illustrated. References throughout this specification to “some embodiments” or “other embodiments” refer to a particular feature, structure, material or characteristic described in connection with the embodiments as being included in at least one embodiment. Thus, the appearance of the phrases “in some embodiments” or “in other embodiments” in various places throughout this specification are not necessarily referring to the same embodiment or embodiments. The disclosed embodiments are not intended to be limiting of the claims.
The foregoing mechanism to designate a replacement computing node to perform in a leader mode in event of a loss of a previously-designated leader can be accomplished by first, identifying a replacement node, and then bringing up the replacement node into a verified, then-current data state suited for performance in a leader mode. Once the verified data state suited for performance in a leader mode has been established, then the newly designated and newly configured node operates in a leader mode while the other nodes of the ring operate as followers.
As shown, computing nodes are arranged in a ring topology formed of interconnected computing nodes, where each interconnected computing node is in network communication through a node-specific network interconnection to the ring (e.g., network interconnection 1050, network interconnection 1051, network interconnection 1052, network interconnection 1053). As earlier indicated, it can happen that a computing node that had been designated to perform in a leader mode goes “down” or is disconnected from the ring such that the non-leader nodes can detect loss occurrence or a disconnection occurrence of the ring's leader. This is shown by the presence of lost leader node 101LOST, which had been assigned a shard corresponding to metadata range1. The loss of this ring's leader means that, in order to restore the former set of interconnections between nodes, and to cover all metadata ranges, a new leader would need to be brought into the ring. As an illustrative example, such a new leader is shown as replacement leader node 101REPLACE. Using the techniques discussed herein, this replacement computing node is configured to replace the downed or disconnected node, and is further configured to manage a verified, then-current data state by retrieving incremental snapshots (incremental snapshot 1041, incremental snapshot 1042) from the non-leader nodes (e.g., follower node 1021, follower node 1022).
It takes a non-zero amount of time between detection of a downed leader node and the establishment of a replacement leader node. As such, it can happen that new keys and/or new values corresponding to previously seen keys are received by follower node 1021 and/or by follower node 1022. As such, to bring the replacement leader node up to date, the replacement leader node retrieves any of the most recent snapshots from the followers. Specifically, and as shown, the replacement leader node 101REPLACE receives a most recent snapshot 1071 from follower node 1021 and a most recent snapshot 1072 from follower node 1022, from which snapshots the replacement leader node can build a verified, then-current, most up-to-date snapshot metadata state for the entire range of the metadata.
In the specific embodiment of
As depicted by the cache flush operation, data in a cache of a particular node (e.g., node <N>) is flushed (e.g., moved) from the cache area into a metadata snapshot area. In the specific example shown, cache contents (e.g., as denoted by contents in braces, as in {KR=ValueR}) is moved into the metadata snapshot area, leaving the cache area empty after the cache flush (e.g., as denoted by no contents in braces, as in { }). Also as depicted, the contents of the metadata snapshot area before cache flush includes an entry that associates a key and a corresponding snapshot ID (e.g., {Kp, SID1}), whereas after cache flush, the contents of the metadata snapshot area cache includes a further entry (e.g., {KR, SID2}) that associates a key and a corresponding snapshot ID pertaining to the data just flushed from cache.
Ongoing operation of the foregoing cache flush technique serves several purposes, in that it (1) provides for high performance for key-value operations on keys that are related to then-current operations by any of the nodes of the computing cluster; (2) provides for periodic saving of keys and respective values to durable, persistent storage in the form of metadata snapshots; and (3) provides for association of a key to a durably-stored snapshot that has the latest value.
The periodic saving of keys and respective values to durable, persistent storage in the form of metadata snapshots means that to bring the replacement leader node up to date with the last saved metadata snapshots (e.g., the last saved metadata snapshots from each of the follower nodes), the replacement leader node can request to receive the most recent snapshot from each of the followers.
Any known technique may be employed to identify a computing node that is suitable for deployment as a leader node. Once such a computing node that is suitable for deployment as a leader node has been identified and connected to a network, then signaling can be carried-out to deploy the identified computing node as a leader node in a leader/follower relationship with a follower node of the ring (step 120). The nodes of this ring, whether operating singly or in combination serve to manage metadata across a range of keys. The range of keys may be subdivided into partitions or shards, each of which partition or shard is assigned to a particular node. Any particular node that is assigned to cover a particular partition or shard can be backed by a replica. Such a replica may be configured as a fully-operational node that can be brought into service for covering its corresponding particular partition or shard, or such a replica may be configured as a storage area that can be accessed to retrieve stored data corresponding to a particular partition or shard of keys.
Further, any known techniques including polling and/or health pulse timeouts can be employed to detect a loss of operation or disconnection of the leader node (step 130). For example, in some embodiments a health pulse serves as a heartbeat for the leader node. Logic implemented in the nodes of the ring can be used to detect if the leader node fails or is disconnected or terminated for any reason. In some embodiments, the health pulse may include and/or correspond to information such as whether any nodes have been added or deleted from the ring.
Once a loss of operation or disconnection of the leader node is detected, then responsive to the detected loss of operation or disconnection of the leader node, signaling can be carried out to bring up a new leader node by applying one or more incremental snapshots (step 140).
As previously indicated, it takes a non-zero amount of time between detection of a downed leader node (step 130) and establishment of a new leader node (step 140); as such, it can happen that new keys and/or new values corresponding to previously seen keys are received by follower nodes. To bring the new leader node up to date, the new leader node retrieves any key-value data that had changed since retrieval of the most recent snapshots from the follower nodes (step 150).
As shown, each of a leader node and any number of follower nodes (e.g., follower1 through followerN) carry out steps embodied in steps of respective monitoring code (monitorL, monitorF1, . . . , monitorFN) that are being executed by each of a leader node and any number of follower nodes. The leader and followers are aware of their designation as a leader or follower. The leader and followers operate in a leader/follower relationship (step 120). More particularly, each of the leader and followers each periodically take a snapshot of their own data and maintain their own up-to-date inventory of their own snapshots (algorithm instance 2200, algorithm instance 2201, algorithm instance 220N). Furthermore, each of the followers are independently able to detect a failure event, such as the loss of a leader. In the event of a loss of the leader of the ring, the followers elect a new leader. As shown in this embodiment, the followers elect a new leader by caucusing among themselves to identify a replacement leader. This is shown as algorithm instance 2221 and algorithm instance 222N. Algorithm instance 2220 does not complete since it is at a downed node. That is, as a result of the event that caused the loss of the leader, the leader running code corresponding to algorithm instance 2220 cannot caucus with the followers, so only the followers are able to caucus among themselves to identify a replacement leader. This is depicted by dotted lines into and out of algorithm instance 2220. On the other hand, the followers can use any known technique to identify and elect a new, replacement leader.
According to some embodiments, a leader node is elected from a group of nodes that are candidates to become a new leader to perform leader-only reads. In some situations, each node in the group of nodes may be assigned an index number, and according to some embodiments, the node with the highest index number is elected to be the leader node. Once a node has been elected as a leader node, all non-leader nodes are informed of the leader node's identity.
Further details regarding general approaches to leadership election are described in U.S. Pat. No. 10,642,507 titled “PULSED LEADER CONSENSUS MANAGEMENT”, issued on May 5, 2020, which is hereby incorporated by reference in its entirety.
Continuing the discussion of the embodiment of
Once a new leader has been elected, the newly-elected leader designate 225 carries out steps to collect and apply the most up to date snapshot data. Specifically, the newly-elected leader designate 225 carries out step 226 to collect and apply the most up-to-date snapshot data, and step 227 to collect and apply the most up-to-date cache data from the followers. Step 228 serves to perform scans over key-value pairs so as to gain consensus from among followers that the leader has correct values for the corresponding keys.
In some cases, the leader collects and receives one or more previously verified snapshots that contain the most up to date snapshotted keys and values (step 226). In such a case, since the particular values of the keys that are in the snapshot have already been verified—at least as of the time the snapshot was taken—then step 228 does not need to be performed over the collected snapshots.
In another case, the leader does not collect and receive incremental snapshot files themselves but rather, the leader sends a key range request to a follower, to which request the follower sends back keys and values corresponding to the particular requested key range.
As heretofore indicated, the leader and followers are aware of their designation as a leader and follower. Moreover the leader node of the ring is aware of every follower node in the ring. As such, node-specific snapshotting operations can be carried out as shown and described as pertains to
The figure is being presented to illustrate one particular set of ongoing snapshotting operations that can be individually and independently performed using multiple instances of a single algorithm (e.g., algorithm instance 2200, algorithm instance 2201, . . . , algorithm instance 220N). The multiple instances are individually and independently executed by all nodes of a metadata management ring to locally manage node-local cache and snapshot areas.
Specifically, the node-specific, independently operating monitoring operations (e.g., algorithm instance 2200, algorithm instance 2201, . . . , algorithm instance 220N) can operate on their own data as follows: At step 340, a test is performed to determine if the node that is executing that step is a designated leader. If not, the “No” branch of decision 3421 is taken. Otherwise, the “Yes” branch of decision 3421 is taken. If it's the case that the “Yes” branch of decision 3421 is taken, then the leader enters a FOR EACH loop to take a then-current inventory of all current snapshots in the nodes of the ring. Specifically, and as shown, step 343 serves to identify a most current snapshot for a next node, and step 344 serves to store the identity of the most current snapshot into the snapshot inventory. Such a snapshot inventory is stored in a durable location such that even if the leader node goes down, or for any reason becomes disconnected from the network, the snapshot inventory at all nodes of the ring can be known by a replacement leader.
Once the designation (e.g., snapshot ID) of all of the most current snapshots are stored in the aforementioned durable location, then the then-current cache is flushed (step 346) and a new snapshot ID is determined (step 348), possibly from the aforementioned arbiter.
Processing advances to decision 3422 whereupon, if the node that is executing this instance of the monitor is the leader, then the “Yes” branch is taken and, at step 350, the leader may optionally advise all other nodes of the ring as to the last successful snapshot as determined by the leader. The acts of step 350 can be performed in addition to the acts of step 344.
The foregoing algorithm is invoked repeatedly in a loop. Specifically, loop 311 includes a wait state. As shown, the wait state is incurred once per loop 311 and as such, the algorithm is invoked repeatedly upon entry into step 340.
Returning to the discussion of
As shown, the key-value data retrieval technique commences at decision 402, which includes a test as to whether or not the node that is about to execute the key-value data retrieval is indeed the leader designate. If not, then the “No” branch of decision 402 is taken and processing ends. Otherwise, the “Yes” branch of decision 402 is taken and a FOR EACH loop is entered. Each iteration of the FOR EACH loop seeks to retrieve the latest key-value data from a particular follower node (step 404). Once the latest key-value data from a particular follower has been successfully retrieved, then the retrieved key-value data is added to a local storage area (e.g., an in-memory cache). Once all iterations through the FOR EACH loop have completed, meaning that the latest key-value data from all followers have been successfully retrieved, then the retrieved key-value data is added to a local set of key-value pairs 407. Furthermore, once all iterations through the FOR EACH loop have completed, meaning that the latest key-value data from all followers has been successfully retrieved, then the leader-designate takes on an actual leadership role (step 408) and a snapshot of the local set of key-value pairs 407 is made (step 410).
Returning to the discussion of step 404, there are various techniques that can be used to retrieve the latest key-value data. One such technique is shown and described as pertains to
The shown flow is one example implementation of step 404 of
The second FORK/JOIN block is then entered, wherein a request for further metadata (e.g., cache data) from each follower is issued (e.g., request 4151, request 4152, . . . , request 415N). When the requests for further metadata are satisfied, the FORK/JOIN block is joined and processing continues. When step 416 executes, it adds all of the newly-received key-value pairs to a node-local storage area.
The shown flow is one example implementation of step 228 of
These options for consensus level can coexist in one computing cluster. Strictly as pertaining to this one illustrative embodiment, the flow commences at decision 502, which determines whether to comport consistency using all involved nodes or whether to comport consistency using a quorum level. In some cases, and as shown, a first option to comport consistency using all involved nodes can be down-leveled to consistency using a quorum level.
To explain, step 504 identifies a start point (e.g., the first pair) and a last point (e.g., the last pair) of the set of key-value pairs. Then a FOR EACH loop is entered to begin scan processing of the set of key-value pairs. Specifically, step 506 serves to collect values from all nodes for the key being processed in the current iteration. If decision 508 determines that there is consensus from all of the involved nodes, then the “Yes” branch of decision 508 is taken and processing moves on to the next key-value pair. On the other hand, if the key being processed in the current iteration is subject to a rerun of the consensus check, then processing loops back to reenter step 506. However, there are certain situations where the key being processed in the current iteration cannot be verified by all nodes, and where the key being processed in the current iteration is not subject to a rerun of the consensus check, in which case the “No” branch of decision 508 is taken.
For some systems, and/or for some keys, it is reasonable that a check is made (decision 510) to determine if a down-level of the consensus checking is permitted. If not, and error is raised. If “Yes”, then a quorum value for this key is used (step 512).
When the operations within the foregoing FOR EACH loop have been carried out over all entries in the set of key-value pairs, and the FOR EACH loop exits, then the set of key-value pairs is deemed to have been verified and the set of verified key-value pairs 513 is used by the leader-only read mode.
On an ongoing basis, a snapshot inventory is kept in durable storage. As shown, node1, node2, and node3 are sharded over respective key ranges, namely (K3,K1] for Node1, (K1,K2] for Node2, and (K2,K3] for Node3. Further, and as shown, node1, node2, and node3 correspond to snapshots S1, S2, and S3, respectively and cache contents of K3 (with a new value), cache contents of K1 (with a new value), and cache contents of K2 (with a new value), respectively. This is the data state at time=T1. The snapshot inventory data structure for time=T1 shows that node1 is tracking that node2 has snapshot S2 and that node3 has snapshot S3. Also, the snapshot inventory data structure for time=T1 shows that node2 is tracking that node1 has snapshot S1 and that node3 has snapshot S3. Still further, the snapshot inventory data structure for time=T1shows that node3 is tracking that node1 has snapshot S1 and that node2 has snapshot S2.
As some moment in time, each node will secure a new snapshot index and flush its cache to a snapshot named by the newly-secured index, after which each node will begin adding newly-seen values into their caches. Strictly as an example,
The foregoing snapshot inventory can be used by any node of the ring so as to verify what snapshot is the latest snapshot from any node. An illustrative scenario is shown and described as pertains to FIG. 6B1, FIG. 6B2, 6B3, and FIG. 6B4.
FIG. 6B1, FIG. 6B2, FIG. 6B3, and FIG. 6B4 depict a leader bring-up technique as used in systems that employ incremental snapshots for fast leader node bring-up into a leader mode. As an option, one or more variations of leader bring-up technique or any aspect thereof may be implemented in the context of the architecture and functionality of the embodiments described herein and/or in any in any environment.
FIG. 6B1 shows a data state 6B100 of a three node ring that is undergoing leader bring-up. As shown, node1R covers the key range (K3,K1], and its cache is empty. Its last saved snapshot before failure of the lost leader node 639 is shown as SID=S4. With this data state, node1R accesses the snapshot inventory (operation 1) to discover that the last saved snapshot of node2 is S5 and the last saved snapshot of node3 is S6. Accordingly, node1R needs to retrieve (at least) snapshot S5 and snapshot S6.
FIG. 6B2 shows a scenario 6B200 where node1R (e.g., designated leader nodeT3 638) requests snapshots from the other nodes of the ring, namely node2 (operation 2) and node3 (operation 4) and retrieves snapshots from the other nodes of the ring, namely from node2 (operation 3) and from node3 (operation 5). These operations occur before node1R assumes the leadership role. This is because node1R will still need to scan key-value pairs to gain consensus. After node1R retrieves snapshots from node2 and node3, node1R updates its local snapshot storage area to record that it has snapshot S4 and a copy of snapshot S5. After node1R retrieves snapshots from node 2 and node3 (operation 3 and operation 5, respectively), node1R updates its local snapshot storage area to record that it has snapshot S4, a copy of snapshot S5, and a copy of snapshot S6.
FIG. 6B3 shows a scenario 6B300 where node1R (e.g., designated leader nodeT3 638) requests cache data from the other nodes of the ring, namely from node2 and node3 (operation 6 and operation 8, respectively) and then receives cache data from the other nodes of the ring, namely from node2 and node3 (operation 7 and operation 9, respectively). These operations occur before node1R assumes leadership role. This is because node1R will still need to scan key-value pairs to gain consensus. After node1R retrieves cache data from node2, node1R updates its local cache storage area to record that it has cached key-values for key KN1. After node1R retrieves cache data from node3 (operation 7 and operation 9), node1R updates its local cache storage area to record that it has cached key-values for key KN1 and also for key KN2.
FIG. 6B4 shows a scenario 6B400 where, after retrieval of snapshots and cache data from the follower nodes of the ring, the leader-designate node1R perform scans of only the newly incoming keys from cache (operation 10), thus achieving a fast bring-up. Once consensus is achieved over the newly incoming keys, then the leader-designate node1R is able to perform as the ringleader in leader READ-all mode (operation 11). In some scenarios (not shown), the leader is merely a leader of a particular range or one single shard of metadata rather than a leader over all ranges or shards. In such topologies involving replica nodes that handle replicas a particular range or shard, after the leader-designate retrieves range- or shard-specific snapshots and cache data from the replica nodes, the leader-designate node perform scans of only the newly incoming keys from cache, thus achieving a fast bring-up. Once consensus is achieved over the newly incoming keys, then the leader-designate node is able to perform in a leader-only READ mode for the particular range or shard.
Token Leadership
Since snapshots for a key range are local to the leader, if the leadership of a key range changes permanently (e.g., due to an unrecoverable crash), then it can happen that at least some of the snapshots are no longer valid. In some cases, the most current snapshots that had belonged to a former leader node can be retrieved from a replica.
In some embodiments, responses to requests for cache data might returning more data than the true delta. This can happen, for example, if a previous snapshot gets combined with its subsequent snapshot due to compaction. In such cases, the compaction process may form a snapshot that contains data from an older snapshot. In these cases, a follower node might return more than the expected data, but never returns less than expected.
Consistency Level of the Scans:
In most cases, a leader's key-value scans have to be performed with all node consensus level, however there are circumstances when a quorum level is permitted. Strictly as one example, in the situation when a node in the replica group of the leader does down, then achieving all node consensus is at least temporarily not possible. In such a situation, when the leader is performing tests pertaining to decision 510, the leader will determine that a down-level is permitted, and the leader will down-level to quorum level consistency and perform quorum level consistency operations. In the degenerate case when both consensus cannot be achieved (the “No” branch of decision 508) and also, when the conditions do not permit down-leveling, (the “No” branch of decision 510), then processing moves to an error handling state.
Add Node/Remove Node
In case of an add-node or remove-node event, a key range is either split (i.e., in the add node case) or merged (i.e., in the remove node case). In both cases, the node assignment to the key ranges change. Since the leader keep track of nodes and snapshots, it happens that such events would cause the snapshot inventory to become at least partially invalid. The snapshot inventory can be temporarily marked as invalid until such time as the snapshot inventory is brought up to date so as to show all nodes in the ring accurately, and so as to show the node-by-node snapshot inventory accurately.
Missing Snapshots
It can happen that a snapshot is deemed to be missing. In such cases the snapshot inventory entry is assigned a value of −1 (i.e., to mean invalid or missing snapshot id). When encountering an entry with snapshot id=−1 the leader can be brought up using full scans.
Upgrade Case
In case of upgrades, it can happen that a new node is the first node to enables snapshot based delta scans. In such a case, the snapshot inventory (if any) can be temporarily marked as invalid until such time as the snapshot inventory is brought up to date so as to show all nodes in the ring accurately, and so as to show the node-by-node snapshot inventory accurately. In this case, in event of a leader failure, the leader can be brought up using full scans.
Choices for Functional Partitioning
Some or all or portions of some or all of the foregoing techniques can be implemented in a virtual computing system. In some cases, portions of the foregoing techniques can be implemented in a virtualized controller or other agent of the virtual computing system. Some functional partitioning options are shown and discussed as pertains to
As used in these embodiments, a virtualized controller is a collection of software instructions that serve to abstract details of underlying hardware or software components from one or more higher-level processing entities. A virtualized controller can be implemented as a virtual machine, as an executable container, or within a layer (e.g., such as a layer in a hypervisor). Furthermore, as used in these embodiments, distributed systems are collections of interconnected components that are designed for, or dedicated to, storage operations as well as being designed for, or dedicated to, computing and/or networking operations.
Interconnected components in a distributed system can operate cooperatively to achieve a particular objective such as to provide high-performance computing, high-performance networking capabilities, and/or high-performance storage and/or high-capacity storage capabilities. For example, a first set of components of a distributed computing system can coordinate to efficiently use a set of computational or compute resources, while a second set of components of the same distributed computing system can coordinate to efficiently use the same or a different set of data storage facilities.
A hyperconverged system coordinates the efficient use of compute and storage resources by and between the components of the distributed system. Adding a hyperconverged unit to a hyperconverged system expands the system in multiple dimensions. As an example, adding a hyperconverged unit to a hyperconverged system can expand the system in the dimension of storage capacity while concurrently expanding the system in the dimension of computing capacity and also in the dimension of networking bandwidth. Components of any of the foregoing distributed systems can comprise physically and/or logically distributed autonomous entities.
Physical and/or logical collections of such autonomous entities can sometimes be referred to as nodes. In some hyperconverged systems, compute and storage resources can be integrated into a unit of a node. Multiple nodes can be interrelated into an array of nodes, which nodes can be grouped into physical groupings (e.g., arrays) and/or into logical groupings or topologies of nodes (e.g., spoke-and-wheel topologies, rings, etc.). Some hyperconverged systems implement certain aspects of virtualization. For example, in a hypervisor-assisted virtualization environment, certain of the autonomous entities of a distributed system can be implemented as virtual machines. As another example, in some virtualization environments, autonomous entities of a distributed system can be implemented as executable containers. In some systems and/or environments, hypervisor-assisted virtualization techniques and operating system virtualization techniques are combined.
As shown, virtual machine architecture 7A00 comprises a collection of interconnected components suitable for implementing embodiments of the present disclosure and/or for use in the herein-described environments. Moreover, virtual machine architecture 7A00 includes a virtual machine instance in configuration 751 that is further described as pertaining to controller virtual machine instance 730. Configuration 751 supports virtual machine instances that are deployed as user virtual machines, or controller virtual machines or both. Such virtual machines interface with a hypervisor (as shown). Some virtual machines include processing of storage I/O (input/output or IO) as received from any or every source within the computing platform. An example implementation of such a virtual machine that processes storage I/O is depicted as 730.
In this and other configurations, a controller virtual machine instance receives block I/O storage requests as network file system (NFS) requests in the form of NFS requests 702, and/or internet small computer storage interface (iSCSI) block IO requests in the form of iSCSI requests 703, and/or Samba file system (SMB) requests in the form of SMB requests 704. The controller virtual machine (CVM) instance publishes and responds to an internet protocol (IP) address (e.g., CVM IP address 710). Various forms of input and output can be handled by one or more IO control handler functions (e.g., IOCTL handler functions 708) that interface to other functions such as data IO manager functions 714 and/or metadata manager functions 722. As shown, the data IO manager functions can include communication with virtual disk configuration manager 712 and/or can include direct or indirect communication with any of various block IO functions (e.g., NFS IO, iSCSI IO, SMB IO, etc.).
In addition to block IO functions, configuration 751 supports IO of any form (e.g., block IO, streaming IO, packet-based IO, HTTP traffic, etc.) through either or both of a user interface (UI) handler such as UI IO handler 740 and/or through any of a range of application programming interfaces (APIs), possibly through API IO manager 745.
Communications link 715 can be configured to transmit (e.g., send, receive, signal, etc.) any type of communications packets comprising any organization of data items. The data items can comprise a payload data, a destination address (e.g., a destination IP address) and a source address (e.g., a source IP address), and can include various packet processing techniques (e.g., tunneling), encodings (e.g., encryption), and/or formatting of bit fields into fixed-length blocks or into variable length fields used to populate the payload. In some cases, packet characteristics include a version identifier, a packet or payload length, a traffic class, a flow label, etc. In some cases, the payload comprises a data structure that is encoded and/or formatted to fit into byte or word boundaries of the packet.
In some embodiments, hard-wired circuitry may be used in place of, or in combination with, software instructions to implement aspects of the disclosure. Thus, embodiments of the disclosure are not limited to any specific combination of hardware circuitry and/or software. In embodiments, the term “logic” shall mean any combination of software or hardware that is used to implement all or part of the disclosure.
The term “computer readable medium” or “computer usable medium” as used herein refers to any medium that participates in providing instructions to a data processor for execution. Such a medium may take many forms including, but not limited to, non-volatile media and volatile media. Non-volatile media includes any non-volatile storage medium, for example, solid state storage devices (SSDs) or optical or magnetic disks such as hard disk drives (HDDs) or hybrid disk drives, or random access persistent memories (RAPMs) or optical or magnetic media drives such as paper tape or magnetic tape drives. Volatile media includes dynamic memory such as random access memory. As shown, controller virtual machine instance 730 includes content cache manager facility 716 that accesses storage locations, possibly including local dynamic random access memory (DRAM) (e.g., through local memory device access block 718) and/or possibly including accesses to local solid state storage (e.g., through local SSD device access block 720).
Common forms of computer readable media include any non-transitory computer readable medium, for example, floppy disk, flexible disk, hard disk, magnetic tape, or any other magnetic medium; CD-ROM or any other optical medium; punch cards, paper tape, or any other physical medium with patterns of holes; or any RAM, PROM, EPROM, FLASH-EPROM, or any other memory chip or cartridge. Any data can be stored, for example, in any form of data repository 731, which in turn can be formatted into any one or more storage areas, and which can comprise parameterized storage accessible by a key (e.g., a filename, a table name, a block address, an offset address, etc.). Data repository 731 can store any forms of data, and may comprise a storage area dedicated to storage of metadata pertaining to the stored forms of data. In some cases, metadata can be divided into portions. Such portions and/or cache copies can be stored in the storage data repository and/or in a local storage area (e.g., in local DRAM areas and/or in local SSD areas). Such local storage can be accessed using functions provided by local metadata storage access block 724. The data repository 731 can be configured using CVM virtual disk controller 726, which can in turn manage any number or any configuration of virtual disks.
Execution of a sequence of instructions to practice certain embodiments of the disclosure are performed by one or more instances of a software instruction processor, or a processing element such as a data processor, or such as a central processing unit (e.g., CPU1, CPU2, . . . , CPUN). According to certain embodiments of the disclosure, two or more instances of configuration 751 can be coupled by communications link 715 (e.g., backplane, LAN, PSTN, wired or wireless network, etc.) and each instance may perform respective portions of sequences of instructions as may be required to practice embodiments of the disclosure.
The shown computing platform 706 is interconnected to the Internet 748 through one or more network interface ports (e.g., network interface port 7231 and network interface port 7232). Configuration 751 can be addressed through one or more network interface ports using an IP address. Any operational element within computing platform 706 can perform sending and receiving operations using any of a range of network protocols, possibly including network protocols that send and receive packets (e.g., network protocol packet 7211 and network protocol packet 7212).
Computing platform 706 may transmit and receive messages that can be composed of configuration data and/or any other forms of data and/or instructions organized into a data structure (e.g., communications packets). In some cases, the data structure includes program instructions (e.g., application code) communicated through the Internet 748 and/or through any one or more instances of communications link 715. Received program instructions may be processed and/or executed by a CPU as it is received and/or program instructions may be stored in any volatile or non-volatile storage for later execution. Program instructions can be transmitted via an upload (e.g., an upload from an access device over the Internet 748 to computing platform 706). Further, program instructions and/or the results of executing program instructions can be delivered to a particular user via a download (e.g., a download from computing platform 706 over the Internet 748 to an access device).
Configuration 751 is merely one sample configuration. Other configurations or partitions can include further data processors, and/or multiple communications interfaces, and/or multiple storage devices, etc. within a partition. For example, a partition can bound a multi-core processor (e.g., possibly including embedded or collocated memory), or a partition can bound a computing cluster having a plurality of computing elements, any of which computing elements are connected directly or indirectly to a communications link. A first partition can be configured to communicate to a second partition. A particular first partition and a particular second partition can be congruent (e.g., in a processing element array) or can be different (e.g., comprising disjoint sets of components).
A cluster is often embodied as a collection of computing nodes that can communicate between each other through a local area network (e.g., LAN or virtual LAN (VLAN)) or a backplane. Some clusters are characterized by assignment of a particular set of the aforementioned computing nodes to access a shared storage facility that is also configured to communicate over the local area network or backplane. In many cases, the physical bounds of a cluster are defined by a mechanical structure such as a cabinet or such as a chassis or rack that hosts a finite number of mounted-in computing units. A computing unit in a rack can take on a role as a server, or as a storage unit, or as a networking unit, or any combination therefrom. In some cases, a unit in a rack is dedicated to provisioning of power to other units. In some cases, a unit in a rack is dedicated to environmental conditioning functions such as filtering and movement of air through the rack and/or temperature control for the rack. Racks can be combined to form larger clusters. For example, the LAN of a first rack having a quantity of 32 computing nodes can be interfaced with the LAN of a second rack having 16 nodes to form a two-rack cluster of 48 nodes. The former two LANs can be configured as subnets, or can be configured as one VLAN. Multiple clusters can communicate between one module to another over a WAN (e.g., when geographically distal) or a LAN (e.g., when geographically proximal).
As used herein, a module can be implemented using any mix of any portions of memory and any extent of hard-wired circuitry including hard-wired circuitry embodied as a data processor. Some embodiments of a module include one or more special-purpose hardware components (e.g., power control, logic, sensors, transducers, etc.). A data processor can be organized to execute a processing entity that is configured to execute as a single process or configured to execute using multiple concurrent processes to perform work. A processing entity can be hardware-based (e.g., involving one or more cores) or software-based, and/or can be formed using a combination of hardware and software that implements logic, and/or can carry out computations and/or processing steps using one or more processes and/or one or more tasks and/or one or more threads or any combination thereof.
Some embodiments of a module include instructions that are stored in a memory for execution so as to facilitate operational and/or performance characteristics pertaining to managing incremental snapshots for fast leader node bring-up into a leader mode. In some embodiments, a module may include one or more state machines and/or combinational logic used to implement or facilitate the operational and/or performance characteristics pertaining to managing incremental snapshots for fast leader node bring-up into a leader mode.
Various implementations of the data repository comprise storage media organized to hold a series of records or files such that individual records or files are accessed using a name or key (e.g., a primary key or a combination of keys and/or query clauses). Such files or records can be organized into one or more data structures (e.g., data structures used to implement or facilitate aspects of managing incremental snapshots for fast leader node bring-up into a leader mode). Such files or records can be brought into and/or stored in volatile or non-volatile memory. More specifically, the occurrence and organization of the foregoing files, records, and data structures improve the way that the computer stores and retrieves data in memory, for example, to improve the way data is accessed when the computer managing incremental snapshots for fast leader node bring-up into a leader mode, and/or for improving the way data is manipulated when performing computerized operations pertaining to bringing up a new leader node by applying incremental snapshots.
Further details regarding general approaches to managing data repositories are described in U.S. Pat. No. 8,601,473 titled “ARCHITECTURE FOR MANAGING I/O AND STORAGE FOR A VIRTUALIZATION ENVIRONMENT”, issued on Dec. 3, 2013, which is hereby incorporated by reference in its entirety.
Further details regarding general approaches to managing and maintaining data in data repositories are described in U.S. Pat. No. 8,549,518 titled “METHOD AND SYSTEM FOR IMPLEMENTING A MAINTENANCE SERVICE FOR MANAGING I/O AND STORAGE FOR A VIRTUALIZATION ENVIRONMENT”, issued on Oct. 1, 2013, which is hereby incorporated by reference in its entirety.
The operating system layer can perform port forwarding to any executable container (e.g., executable container instance 750). An executable container instance can be executed by a processor. Runnable portions of an executable container instance sometimes derive from an executable container image, which in turn might include all, or portions of any of, a Java archive repository (JAR) and/or its contents, and/or a script or scripts and/or a directory of scripts, and/or a virtual machine configuration, and may include any dependencies therefrom. In some cases, a configuration within an executable container might include an image comprising a minimum set of runnable code. Contents of larger libraries and/or code or data that would not be accessed during runtime of the executable container instance can be omitted from the larger library to form a smaller library composed of only the code or data that would be accessed during runtime of the executable container instance. In some cases, start-up time for an executable container instance can be much faster than start-up time for a virtual machine instance, at least inasmuch as the executable container image might be much smaller than a respective virtual machine instance. Furthermore, start-up time for an executable container instance can be much faster than start-up time for a virtual machine instance, at least inasmuch as the executable container image might have many fewer code and/or data initialization steps to perform than a respective virtual machine instance.
An executable container instance can serve as an instance of an application container or as a controller executable container. Any executable container of any sort can be rooted in a directory system and can be configured to be accessed by file system commands (e.g., “1s” or “1s—a”, etc.). The executable container might optionally include operating system components 778, however such a separate set of operating system components need not be provided. As an alternative, an executable container can include runnable instance 758, which is built (e.g., through compilation and linking, or just-in-time compilation, etc.) to include all of the library and OS-like functions needed for execution of the runnable instance. In some cases, a runnable instance can be built with a virtual disk configuration manager, any of a variety of data IO management functions, etc. In some cases, a runnable instance includes code for, and access to, container virtual disk controller 776. Such a container virtual disk controller can perform any of the functions that the aforementioned CVM virtual disk controller 726 can perform, yet such a container virtual disk controller does not rely on a hypervisor or any particular operating system so as to perform its range of functions.
In some environments, multiple executable containers can be collocated and/or can share one or more contexts. For example, multiple executable containers that share access to a virtual disk can be assembled into a pod (e.g., a Kubernetes pod). Pods provide sharing mechanisms (e.g., when multiple executable containers are amalgamated into the scope of a pod) as well as isolation mechanisms (e.g., such that the namespace scope of one pod does not share the namespace scope of another pod).
User executable container instance 770 comprises any number of user containerized functions (e.g., user containerized function1, user containerized function2, . . . , user containerized functionN). Such user containerized functions can execute autonomously or can be interfaced with or wrapped in a runnable object to create a runnable instance (e.g., runnable instance 758). In some cases, the shown operating system components 778 comprise portions of an operating system, which portions are interfaced with or included in the runnable instance and/or any user containerized functions. In this embodiment of a daemon-assisted containerized architecture, the computing platform 706 might or might not host operating system components other than operating system components 778. More specifically, the shown daemon might or might not host operating system components other than operating system components 778 of user executable container instance 770.
The virtual machine architecture 7A00 of
Significant performance advantages can be gained by allowing the virtualization system to access and utilize local (e.g., node-internal) storage. This is because I/O performance is typically much faster when performing access to local storage as compared to performing access to networked storage or cloud storage. This faster performance for locally attached storage can be increased even further by using certain types of optimized local storage devices such as SSDs or RAPMs, or hybrid HDDs, or other types of high-performance storage devices.
In example embodiments, each storage controller exports one or more block devices or NFS or iSCSI targets that appear as disks to user virtual machines or user executable containers. These disks are virtual since they are implemented by the software running inside the storage controllers. Thus, to the user virtual machines or user executable containers, the storage controllers appear to be exporting a clustered storage appliance that contains some disks. User data (including operating system components) in the user virtual machines resides on these virtual disks.
Any one or more of the aforementioned virtual disks (or “vDisks”) can be structured from any one or more of the storage devices in the storage pool. As used herein, the term “vDisk” refers to a storage abstraction that is exposed by a controller virtual machine or container to be used by another virtual machine or container. In some embodiments, the vDisk is exposed by operation of a storage protocol such as iSCSI or NFS or SMB. In some embodiments, a vDisk is mountable. In some embodiments, a vDisk is mounted as a virtual storage device.
In example embodiments, some or all of the servers or nodes run virtualization software. Such virtualization software might include a hypervisor (e.g., as shown in configuration 751 of
Distinct from user virtual machines or user executable containers, a special controller virtual machine (e.g., as depicted by controller virtual machine instance 730) or as a special controller executable container is used to manage certain storage and I/O activities. Such a special controller virtual machine is referred to as a “CVM”, or as a controller executable container, or as a service virtual machine (SVM), or as a service executable container, or as a storage controller. In some embodiments, multiple storage controllers are hosted by multiple nodes. Such storage controllers coordinate within a computing system to form a computing cluster.
The storage controllers are not formed as part of specific implementations of hypervisors. Instead, the storage controllers run above hypervisors on the various nodes and work together to form a distributed system that manages all of the storage resources, including the locally attached storage, the networked storage, and the cloud storage. In example embodiments, the storage controllers run as special virtual machines—above the hypervisors—thus, the approach of using such special virtual machines can be used and implemented within any virtual machine architecture. Furthermore, the storage controllers can be used in conjunction with any hypervisor from any virtualization vendor and/or implemented using any combinations or variations of the aforementioned executable containers in conjunction with any host operating system components.
As shown, any of the nodes of the distributed virtualization system can implement one or more user virtualized entities (e.g., VE 788111, . . . , VE 78811K, . . . , VE 7881M1, . . . , VE 7881MK), such as virtual machines (VMs) and/or executable containers. The VMs can be characterized as software-based computing “machines” implemented in a container-based or hypervisor-assisted virtualization environment that emulates the underlying hardware resources (e.g., CPU, memory, etc.) of the nodes. For example, multiple VMs can operate on one physical machine (e.g., node host computer) running a single host operating system (e.g., host operating system 78711, . . . , host operating system 7871M), while the VMs run multiple applications on various respective guest operating systems. Such flexibility can be facilitated at least in part by a hypervisor (e.g., hypervisor 78511, hypervisor 7851M), which hypervisor is logically located between the various guest operating systems of the VMs and the host operating system of the physical infrastructure (e.g., node).
As an alternative, executable containers may be implemented at the nodes in an operating system-based virtualization environment or in a containerized virtualization environment. The executable containers are implemented at the nodes in an operating system virtualization environment or container virtualization environment. The executable containers comprise groups of processes and/or resources (e.g., memory, CPU, disk, etc.) that are isolated from the node host computer and other containers. Such executable containers directly interface with the kernel of the host operating system (e.g., host operating system 78711, . . . , host operating system 7871M) without, in most cases, a hypervisor layer. This lightweight implementation can facilitate efficient distribution of certain software components, such as applications or services (e.g., micro-services). Any node of a distributed virtualization system can implement both a hypervisor-assisted virtualization environment and a container virtualization environment for various purposes. Also, any node of a distributed virtualization system can implement any one or more types of the foregoing virtualized controllers so as to facilitate access to storage pool 790 by the VMs and/or the executable containers.
Multiple instances of such virtualized controllers can coordinate within a cluster to form the distributed storage system 792 which can, among other operations, manage the storage pool 790. This architecture further facilitates efficient scaling in multiple dimensions (e.g., in a dimension of computing power, in a dimension of storage space, in a dimension of network bandwidth, etc.).
A particularly-configured instance of a virtual machine at a given node can be used as a virtualized controller in a hypervisor-assisted virtualization environment to manage storage and I/O (input/output or IO) activities of any number or form of virtualized entities. For example, the virtualized entities at node 78111 can interface with a controller virtual machine (e.g., virtualized controller 78211) through hypervisor 78511 to access data of storage pool 790. In such cases, the controller virtual machine is not formed as part of specific implementations of a given hypervisor. Instead, the controller virtual machine can run as a virtual machine above the hypervisor at the various node host computers. When the controller virtual machines run above the hypervisors, varying virtual machine architectures and/or hypervisors can operate with the distributed storage system 792. For example, a hypervisor at one node in the distributed storage system 792 might correspond to software from a first vendor, and a hypervisor at another node in the distributed storage system 792 might correspond to a second software vendor. As another virtualized controller implementation example, executable containers can be used to implement a virtualized controller (e.g., virtualized controller 7821M) in an operating system virtualization environment at a given node. In this case, for example, the virtualized entities at node 7811M can access the storage pool 790 by interfacing with a controller container (e.g., virtualized controller 7821M) through hypervisor 7851M and/or the kernel of host operating system 7871M.
In certain embodiments, one or more instances of an agent can be implemented in the distributed storage system 792 to facilitate the herein disclosed techniques. Specifically, agent 78411 can be implemented in the virtualized controller 78211, and agent 7841M can be implemented in the virtualized controller 7821M. Such instances of the virtualized controller can be implemented in any node in any cluster. Actions taken by one or more instances of the virtualized controller can apply to a node (or between nodes), and/or to a cluster (or between clusters), and/or between any resources or subsystems accessible by the virtualized controller or their agents.
Solutions attendant to bringing up a new leader node by applying incremental snapshots can be brought to bear by implementation of one or more of the foregoing embodiments. Moreover, any aspect or aspects of avoiding extensive key-value scan operations when bringing up a new leader node can be implemented in the context of the foregoing environments.
In the foregoing specification, the disclosure has been described with reference to specific embodiments thereof. It will, however, be evident that various modifications and changes may be made thereto without departing from the broader spirit and scope of the disclosure. For example, the above-described process flows are described with reference to a particular ordering of process actions. However, the ordering of many of the described process actions may be changed without affecting the scope or operation of the disclosure. The specification and drawings are to be regarded in an illustrative sense rather than in a restrictive sense.
The present application claims the benefit of priority to U.S. patent application Ser. No. 63/022,315 titled “DELTA SCANS FOR ACHIEVING LEADER-ONLY READ MODE”, filed on May 8, 2020, which is hereby incorporated by reference in its entirety.
Number | Name | Date | Kind |
---|---|---|---|
5253252 | Tobol | Oct 1993 | A |
5276867 | Kenley et al. | Jan 1994 | A |
5664144 | Yanai et al. | Sep 1997 | A |
5870555 | Pruett et al. | Feb 1999 | A |
5873085 | Enoki | Feb 1999 | A |
5884308 | Foulston | Mar 1999 | A |
5924096 | Draper | Jul 1999 | A |
6055543 | Christensen et al. | Apr 2000 | A |
6085234 | Pitts et al. | Jul 2000 | A |
6101508 | Wolff | Aug 2000 | A |
6212531 | Blea et al. | Apr 2001 | B1 |
6289356 | Hitz et al. | Sep 2001 | B1 |
6341340 | Tsukerman et al. | Jan 2002 | B1 |
6363416 | Naeimi et al. | Mar 2002 | B1 |
6442602 | Choudhry | Aug 2002 | B1 |
6539381 | Prasad | Mar 2003 | B1 |
1062581 | Kleiman | Oct 2003 | A1 |
6684397 | Byer et al. | Jan 2004 | B1 |
6738801 | Kawaguchi et al. | May 2004 | B1 |
6928589 | Pomaranski et al. | Aug 2005 | B1 |
6963914 | Breitbart et al. | Nov 2005 | B1 |
6968345 | Muhlestein | Nov 2005 | B1 |
7120631 | Vahalia et al. | Oct 2006 | B1 |
7159056 | Goldick | Jan 2007 | B2 |
7162467 | Eshleman | Jan 2007 | B2 |
7356679 | Le et al. | Apr 2008 | B1 |
7366738 | Yorke | Apr 2008 | B2 |
7379419 | Collins | May 2008 | B2 |
7409511 | Edwards et al. | Aug 2008 | B2 |
7421578 | Huang et al. | Sep 2008 | B1 |
7461374 | Balint et al. | Dec 2008 | B1 |
7606868 | Le et al. | Oct 2009 | B1 |
7647427 | Devarapalli | Jan 2010 | B1 |
7702843 | Chen et al. | Apr 2010 | B1 |
7707618 | Cox | Apr 2010 | B1 |
7720864 | Muth et al. | May 2010 | B1 |
7725671 | Prahlad et al. | May 2010 | B2 |
7752492 | Armangau et al. | Jul 2010 | B1 |
7774391 | Le et al. | Aug 2010 | B1 |
7805469 | Nagaralu et al. | Sep 2010 | B1 |
7805511 | Panicker et al. | Sep 2010 | B1 |
7840533 | Prahlad et al. | Nov 2010 | B2 |
7890529 | Srinivasan et al. | Feb 2011 | B1 |
7934117 | Kakivaya et al. | Apr 2011 | B2 |
7937453 | Hayden et al. | May 2011 | B1 |
7937455 | Saha et al. | May 2011 | B2 |
7941470 | Le et al. | May 2011 | B2 |
7990962 | Chang et al. | Aug 2011 | B2 |
8051252 | Williams | Nov 2011 | B2 |
8051262 | Ichikawa et al. | Nov 2011 | B2 |
8095810 | Matsuzawa et al. | Jan 2012 | B2 |
8095931 | Chen et al. | Jan 2012 | B1 |
8190588 | Gupta et al. | May 2012 | B1 |
8219769 | Wilk | Jul 2012 | B1 |
8352482 | Hansen | Jan 2013 | B2 |
8352608 | Keagy et al. | Jan 2013 | B1 |
8359594 | Davidson | Jan 2013 | B1 |
8365167 | Beaty et al. | Jan 2013 | B2 |
8392680 | Natanzon et al. | Mar 2013 | B1 |
8407448 | Hayden et al. | Mar 2013 | B1 |
8424003 | Degenaro et al. | Apr 2013 | B2 |
8447728 | Prahlad et al. | May 2013 | B2 |
8473462 | Banerjee | Jun 2013 | B1 |
8473775 | Helmick | Jun 2013 | B1 |
8484163 | Yucel et al. | Jul 2013 | B1 |
8484356 | Douglis et al. | Jul 2013 | B1 |
8539076 | Nakano et al. | Sep 2013 | B2 |
8543790 | Chen et al. | Sep 2013 | B2 |
8549518 | Aron | Oct 2013 | B1 |
8601471 | Beaty | Dec 2013 | B2 |
8601473 | Aron et al. | Dec 2013 | B1 |
8635351 | Astete et al. | Jan 2014 | B2 |
8646089 | Jayanthi et al. | Feb 2014 | B2 |
8655851 | Patwardhan et al. | Feb 2014 | B2 |
8688660 | Sivasubramanian et al. | Apr 2014 | B1 |
8725679 | Nair | May 2014 | B2 |
8751515 | Xing et al. | Jun 2014 | B1 |
8762335 | Prahlad et al. | Jun 2014 | B2 |
8805951 | Faibish et al. | Aug 2014 | B1 |
8838923 | Prahlad et al. | Sep 2014 | B2 |
8850130 | Aron et al. | Sep 2014 | B1 |
8863124 | Aron | Oct 2014 | B1 |
8898668 | Costea | Nov 2014 | B1 |
8914429 | Pitts | Dec 2014 | B2 |
8935563 | Rajaa et al. | Jan 2015 | B1 |
8949557 | Kamei et al. | Feb 2015 | B2 |
8966188 | Bardale | Feb 2015 | B1 |
8983952 | Zhang et al. | Mar 2015 | B1 |
8996783 | Huang et al. | Mar 2015 | B2 |
9009106 | Aron et al. | Apr 2015 | B1 |
9032248 | Petty | May 2015 | B1 |
9043567 | Modukuri et al. | May 2015 | B1 |
9060014 | Crowley | Jun 2015 | B2 |
9069708 | Gill et al. | Jun 2015 | B2 |
9152628 | Stacey et al. | Oct 2015 | B1 |
9154535 | Harris | Oct 2015 | B1 |
9165003 | Tummala | Oct 2015 | B1 |
9201698 | Ashok et al. | Dec 2015 | B2 |
9201704 | Chang et al. | Dec 2015 | B2 |
9201887 | Earl et al. | Dec 2015 | B1 |
9213513 | Hartz et al. | Dec 2015 | B2 |
9244674 | Waterman et al. | Jan 2016 | B2 |
9244969 | Love et al. | Jan 2016 | B1 |
9256475 | Aron et al. | Feb 2016 | B1 |
9256612 | Bhatt et al. | Feb 2016 | B1 |
9268586 | Voccio et al. | Feb 2016 | B2 |
9274817 | Fan et al. | Mar 2016 | B1 |
9286298 | Gillett, Jr. | Mar 2016 | B1 |
9286344 | Bhardwaj | Mar 2016 | B1 |
9292327 | Von Thenen et al. | Mar 2016 | B1 |
9336132 | Aron et al. | May 2016 | B1 |
9348702 | Hsu et al. | May 2016 | B2 |
9389887 | Aron et al. | Jul 2016 | B1 |
9405566 | Chawla et al. | Aug 2016 | B2 |
9411628 | Bezbaruah et al. | Aug 2016 | B2 |
9448887 | Ben Dayan et al. | Sep 2016 | B1 |
9497257 | Love et al. | Nov 2016 | B1 |
9513946 | Sevigny et al. | Dec 2016 | B2 |
9519596 | Coppola et al. | Dec 2016 | B2 |
9535907 | Stringham | Jan 2017 | B1 |
9563555 | Flynn et al. | Feb 2017 | B2 |
9571561 | Jang | Feb 2017 | B2 |
9590843 | Cui | Mar 2017 | B2 |
9619257 | Aron et al. | Apr 2017 | B1 |
9634990 | Lee | Apr 2017 | B2 |
9639428 | Boda | May 2017 | B1 |
9639588 | Cheng | May 2017 | B2 |
9652265 | Narayanasamy et al. | May 2017 | B1 |
9658899 | Jenkins | May 2017 | B2 |
9690670 | Paulzagade et al. | Jun 2017 | B1 |
9733958 | Cui | Aug 2017 | B2 |
9740436 | Fiebrich-Kandler et al. | Aug 2017 | B2 |
9740472 | Sohi | Aug 2017 | B1 |
9740723 | Prahlad et al. | Aug 2017 | B2 |
9747287 | Bhardwaj et al. | Aug 2017 | B1 |
9772284 | Quan | Sep 2017 | B2 |
9772866 | Aron et al. | Sep 2017 | B1 |
9779015 | Oikarinen | Oct 2017 | B1 |
9817703 | Ryland et al. | Nov 2017 | B1 |
9832136 | Gibson | Nov 2017 | B1 |
9846706 | Basov et al. | Dec 2017 | B1 |
9853978 | Tellvik et al. | Dec 2017 | B2 |
9870291 | Bezbaruah et al. | Jan 2018 | B2 |
9893988 | Agarwal et al. | Feb 2018 | B2 |
9898522 | Cole et al. | Feb 2018 | B2 |
9940154 | Ramani et al. | Apr 2018 | B2 |
9946573 | Mcdermott | Apr 2018 | B2 |
10009215 | Shorey | Jun 2018 | B1 |
10050862 | Nambiar et al. | Aug 2018 | B2 |
10083022 | Fukui et al. | Sep 2018 | B2 |
10084873 | Dornemann | Sep 2018 | B2 |
10095506 | Gopalapura Venkatesh et al. | Oct 2018 | B2 |
10101989 | Sinha et al. | Oct 2018 | B2 |
10114706 | Chougala et al. | Oct 2018 | B1 |
10127059 | Astete et al. | Nov 2018 | B2 |
10140115 | Fukui et al. | Nov 2018 | B2 |
10152233 | Xu et al. | Dec 2018 | B2 |
10210048 | Sancheti | Feb 2019 | B2 |
10210172 | Konig et al. | Feb 2019 | B1 |
10248657 | Prahlad et al. | Apr 2019 | B2 |
10311153 | Mason | Jun 2019 | B2 |
10362092 | Parthasarathy | Jul 2019 | B1 |
10367753 | Schultze et al. | Jul 2019 | B2 |
10379759 | Bhardwaj | Aug 2019 | B2 |
10394547 | Fukui et al. | Aug 2019 | B2 |
10419426 | Bakshan et al. | Sep 2019 | B2 |
10523592 | Byers et al. | Dec 2019 | B2 |
10530742 | Shah et al. | Jan 2020 | B2 |
10534634 | Yang et al. | Jan 2020 | B2 |
10540164 | Bafna et al. | Jan 2020 | B2 |
10540165 | Bafna et al. | Jan 2020 | B2 |
10540166 | Arikatla et al. | Jan 2020 | B2 |
10542049 | Cui | Jan 2020 | B2 |
10594730 | Summers | Mar 2020 | B1 |
10599459 | Livshits | Mar 2020 | B2 |
10642507 | Gupta | May 2020 | B2 |
10642518 | Bezbaruah et al. | May 2020 | B1 |
10719305 | Sinha et al. | Jul 2020 | B2 |
10719306 | Deshmukh et al. | Jul 2020 | B2 |
10719307 | Kanada et al. | Jul 2020 | B2 |
10728090 | Deshmukh et al. | Jul 2020 | B2 |
10728255 | Jindal et al. | Jul 2020 | B2 |
10809998 | Gopalapura Venkatesh et al. | Oct 2020 | B2 |
10824455 | Arikatla et al. | Nov 2020 | B2 |
10831465 | Sharpe et al. | Nov 2020 | B2 |
10838708 | Sinha et al. | Nov 2020 | B2 |
10949192 | Gopalapura Venkatesh | Mar 2021 | B2 |
10963182 | Blau et al. | Mar 2021 | B2 |
11025626 | Todd | Jun 2021 | B1 |
11086826 | Thummala | Aug 2021 | B2 |
11106447 | Gupta | Aug 2021 | B2 |
11194680 | Konka | Dec 2021 | B2 |
11218418 | Gupta | Jan 2022 | B2 |
11281484 | Bafna et al. | Mar 2022 | B2 |
11288239 | Bafna et al. | Mar 2022 | B2 |
11294777 | Venkatesh et al. | Apr 2022 | B2 |
11310286 | Cui | Apr 2022 | B2 |
20010047400 | Coates | Nov 2001 | A1 |
20020069196 | Betros | Jun 2002 | A1 |
20020120763 | Miloushev et al. | Aug 2002 | A1 |
20020133491 | Sim et al. | Sep 2002 | A1 |
20030014442 | Shiigi | Jan 2003 | A1 |
20030115218 | Bobbitt et al. | Jun 2003 | A1 |
20030163597 | Hellman et al. | Aug 2003 | A1 |
20030195942 | Muhlestein et al. | Oct 2003 | A1 |
20040054777 | Ackaouy et al. | Mar 2004 | A1 |
20040199734 | Rajamani | Oct 2004 | A1 |
20040210591 | Hirschfeld et al. | Oct 2004 | A1 |
20040225742 | Loaiza | Nov 2004 | A1 |
20040267832 | Wong et al. | Dec 2004 | A1 |
20050094574 | Han et al. | May 2005 | A1 |
20050120160 | Plouffe et al. | Jun 2005 | A1 |
20050120180 | Schornbach et al. | Jun 2005 | A1 |
20050125503 | Iyengar et al. | Jun 2005 | A1 |
20050193221 | Yoneyama | Sep 2005 | A1 |
20050193245 | Hayden et al. | Sep 2005 | A1 |
20050201272 | Wang et al. | Sep 2005 | A1 |
20050210461 | Srivastava et al. | Sep 2005 | A1 |
20050226059 | Kavuri et al. | Oct 2005 | A1 |
20050228798 | Shepard et al. | Oct 2005 | A1 |
20050268298 | Hunt et al. | Dec 2005 | A1 |
20060010227 | Atluri | Jan 2006 | A1 |
20060047685 | Dearing et al. | Mar 2006 | A1 |
20060069912 | Zheng et al. | Mar 2006 | A1 |
20060080445 | Chang | Apr 2006 | A1 |
20060080657 | Goodman | Apr 2006 | A1 |
20060136781 | Lamport | Jun 2006 | A1 |
20060167921 | Grebus | Jul 2006 | A1 |
20060206901 | Chan | Sep 2006 | A1 |
20060224918 | Koike | Oct 2006 | A1 |
20060225065 | Chandhok et al. | Oct 2006 | A1 |
20060271510 | Harward | Nov 2006 | A1 |
20060271931 | Harris | Nov 2006 | A1 |
20070022129 | Bahar et al. | Jan 2007 | A1 |
20070038913 | Allen et al. | Feb 2007 | A1 |
20070100905 | Masters et al. | May 2007 | A1 |
20070171921 | Wookey et al. | Jul 2007 | A1 |
20070179995 | Prahlad | Aug 2007 | A1 |
20070271561 | Winner et al. | Nov 2007 | A1 |
20070300220 | Seliger et al. | Dec 2007 | A1 |
20080040483 | Nakatani | Feb 2008 | A1 |
20080071997 | Loaiza | Mar 2008 | A1 |
20080098194 | Hashimoto et al. | Apr 2008 | A1 |
20080104349 | Maruyama | May 2008 | A1 |
20080104589 | Mccrory et al. | May 2008 | A1 |
20080133486 | Fitzgerald et al. | Jun 2008 | A1 |
20080134178 | Fitzgerald et al. | Jun 2008 | A1 |
20080189468 | Schmidt et al. | Aug 2008 | A1 |
20080201414 | Amir et al. | Aug 2008 | A1 |
20080201457 | London | Aug 2008 | A1 |
20080208938 | Lin et al. | Aug 2008 | A1 |
20080263113 | Krishnaiyer | Oct 2008 | A1 |
20080270677 | Kolakowski | Oct 2008 | A1 |
20080320499 | Suit | Dec 2008 | A1 |
20080320583 | Sharma et al. | Dec 2008 | A1 |
20090006801 | Shultz et al. | Jan 2009 | A1 |
20090100248 | Kami | Apr 2009 | A1 |
20090113034 | Krishnappa et al. | Apr 2009 | A1 |
20090144720 | Roush et al. | Jun 2009 | A1 |
20090150885 | Safari | Jun 2009 | A1 |
20090158082 | Jain et al. | Jun 2009 | A1 |
20090171971 | Goddard et al. | Jul 2009 | A1 |
20090193272 | Matsuzawa et al. | Jul 2009 | A1 |
20090216975 | Halperin et al. | Aug 2009 | A1 |
20090248870 | Kamei et al. | Oct 2009 | A1 |
20090249470 | Litvin et al. | Oct 2009 | A1 |
20090254572 | Redlich | Oct 2009 | A1 |
20090271412 | Lacapra et al. | Oct 2009 | A1 |
20090287887 | Matsuki et al. | Nov 2009 | A1 |
20090288084 | Astete et al. | Nov 2009 | A1 |
20090290572 | Gonia et al. | Nov 2009 | A1 |
20100023521 | Arcese | Jan 2010 | A1 |
20100042869 | Szabo et al. | Feb 2010 | A1 |
20100070725 | Prahlad et al. | Mar 2010 | A1 |
20100082716 | Agetsuma et al. | Apr 2010 | A1 |
20100082774 | Pitts | Apr 2010 | A1 |
20100095289 | Nguyen et al. | Apr 2010 | A1 |
20100110150 | Xu et al. | May 2010 | A1 |
20100138921 | Na et al. | Jun 2010 | A1 |
20100162226 | Borissov et al. | Jun 2010 | A1 |
20100174745 | Ryan et al. | Jul 2010 | A1 |
20100214908 | Ralev | Aug 2010 | A1 |
20100241785 | Chen et al. | Sep 2010 | A1 |
20100250824 | Belay | Sep 2010 | A1 |
20100262717 | Critchley | Oct 2010 | A1 |
20100275205 | Nakajima | Oct 2010 | A1 |
20100306256 | Blackman | Dec 2010 | A1 |
20110022694 | Dalal et al. | Jan 2011 | A1 |
20110022695 | Dalal et al. | Jan 2011 | A1 |
20110022812 | Van et al. | Jan 2011 | A1 |
20110022883 | Hansen | Jan 2011 | A1 |
20110047340 | Olson et al. | Feb 2011 | A1 |
20110078318 | Desai et al. | Mar 2011 | A1 |
20110107135 | Andrews et al. | May 2011 | A1 |
20110119668 | Calder | May 2011 | A1 |
20110119763 | Wade et al. | May 2011 | A1 |
20110125835 | Soltis | May 2011 | A1 |
20110137879 | Dubey | Jun 2011 | A1 |
20110145627 | Huras et al. | Jun 2011 | A1 |
20110161299 | Prahlad et al. | Jun 2011 | A1 |
20110173493 | Armstrong et al. | Jul 2011 | A1 |
20110179414 | Goggin et al. | Jul 2011 | A1 |
20110184993 | Chawla | Jul 2011 | A1 |
20110185292 | Chawla et al. | Jul 2011 | A1 |
20110225574 | Khalidi et al. | Sep 2011 | A1 |
20110239213 | Aswani et al. | Sep 2011 | A1 |
20110251992 | Bethlehem | Oct 2011 | A1 |
20110252208 | Ali et al. | Oct 2011 | A1 |
20110255538 | Srinivasan et al. | Oct 2011 | A1 |
20110265076 | Thorat et al. | Oct 2011 | A1 |
20110271279 | Pate | Nov 2011 | A1 |
20110276578 | Allalouf et al. | Nov 2011 | A1 |
20110276963 | Wu et al. | Nov 2011 | A1 |
20110283277 | Castillo et al. | Nov 2011 | A1 |
20110289561 | Ivanov et al. | Nov 2011 | A1 |
20110307729 | Matsuzawa et al. | Dec 2011 | A1 |
20110320690 | Petersen et al. | Dec 2011 | A1 |
20120017114 | Timashev et al. | Jan 2012 | A1 |
20120023495 | Machida | Jan 2012 | A1 |
20120030456 | Wu et al. | Feb 2012 | A1 |
20120054736 | Arcese et al. | Mar 2012 | A1 |
20120078948 | Darcy | Mar 2012 | A1 |
20120081395 | Adi et al. | Apr 2012 | A1 |
20120084381 | Alladi et al. | Apr 2012 | A1 |
20120117555 | Banerjee et al. | May 2012 | A1 |
20120126177 | Meissner et al. | May 2012 | A1 |
20120166866 | Rao et al. | Jun 2012 | A1 |
20120209983 | Bronner | Aug 2012 | A1 |
20120222089 | Whelan et al. | Aug 2012 | A1 |
20120233463 | Holt et al. | Sep 2012 | A1 |
20120233608 | Toeroe | Sep 2012 | A1 |
20120243795 | Head et al. | Sep 2012 | A1 |
20120254342 | Evans | Oct 2012 | A1 |
20120254445 | Kawamoto et al. | Oct 2012 | A1 |
20120254567 | Umbehocker | Oct 2012 | A1 |
20120266162 | Baron | Oct 2012 | A1 |
20120266231 | Spiers et al. | Oct 2012 | A1 |
20120272237 | Baron | Oct 2012 | A1 |
20120290630 | Aizman et al. | Nov 2012 | A1 |
20120304247 | Badger | Nov 2012 | A1 |
20120310881 | Shadmon | Dec 2012 | A1 |
20120310892 | Dam et al. | Dec 2012 | A1 |
20120317142 | Broecheler et al. | Dec 2012 | A1 |
20120324183 | Chiruvolu et al. | Dec 2012 | A1 |
20130007741 | Britsch et al. | Jan 2013 | A1 |
20130036323 | Goose et al. | Feb 2013 | A1 |
20130046740 | Li et al. | Feb 2013 | A1 |
20130047160 | Conover | Feb 2013 | A1 |
20130054973 | Fok et al. | Feb 2013 | A1 |
20130055018 | Joshi et al. | Feb 2013 | A1 |
20130061110 | Zvibel | Mar 2013 | A1 |
20130061167 | Rhodes et al. | Mar 2013 | A1 |
20130066930 | Kamei et al. | Mar 2013 | A1 |
20130117744 | Klein et al. | May 2013 | A1 |
20130132674 | Sundrani | May 2013 | A1 |
20130138995 | Sivaramakrishnan et al. | May 2013 | A1 |
20130151888 | Bhattiprolu et al. | Jun 2013 | A1 |
20130152077 | Leitman et al. | Jun 2013 | A1 |
20130152085 | Amore et al. | Jun 2013 | A1 |
20130174246 | Schrecker et al. | Jul 2013 | A1 |
20130185716 | Yin et al. | Jul 2013 | A1 |
20130198738 | Reddin et al. | Aug 2013 | A1 |
20130212345 | Nakajima | Aug 2013 | A1 |
20130219030 | Szabo | Aug 2013 | A1 |
20130227379 | Gupta et al. | Aug 2013 | A1 |
20130227550 | Weinstein et al. | Aug 2013 | A1 |
20130227552 | Reddin et al. | Aug 2013 | A1 |
20130227566 | Higuchi et al. | Aug 2013 | A1 |
20130232491 | Radhakrishnan et al. | Sep 2013 | A1 |
20130235774 | Jo et al. | Sep 2013 | A1 |
20130246705 | Diare | Sep 2013 | A1 |
20130247036 | Fujiwara | Sep 2013 | A1 |
20130262396 | Kripalani et al. | Oct 2013 | A1 |
20130283267 | Cooper et al. | Oct 2013 | A1 |
20130297869 | Mills et al. | Nov 2013 | A1 |
20130304694 | Cronic et al. | Nov 2013 | A1 |
20130332771 | Salapura et al. | Dec 2013 | A1 |
20140006708 | Huynh et al. | Jan 2014 | A1 |
20140025796 | Vibhor et al. | Jan 2014 | A1 |
20140052877 | Mao | Feb 2014 | A1 |
20140059392 | Ren et al. | Feb 2014 | A1 |
20140068612 | Torrey | Mar 2014 | A1 |
20140068711 | Schweitzer, III et al. | Mar 2014 | A1 |
20140075029 | Lipchuk et al. | Mar 2014 | A1 |
20140089259 | Cheng | Mar 2014 | A1 |
20140095544 | Eshel et al. | Apr 2014 | A1 |
20140095555 | Kim et al. | Apr 2014 | A1 |
20140095816 | Hsu et al. | Apr 2014 | A1 |
20140101649 | Kamble | Apr 2014 | A1 |
20140108587 | Goldberg | Apr 2014 | A1 |
20140109172 | Barton et al. | Apr 2014 | A1 |
20140115182 | Sabaa et al. | Apr 2014 | A1 |
20140123138 | Lee et al. | May 2014 | A1 |
20140143831 | Fieweger | May 2014 | A1 |
20140146055 | Bala et al. | May 2014 | A1 |
20140149794 | Shetty et al. | May 2014 | A1 |
20140149983 | Bonilla et al. | May 2014 | A1 |
20140164831 | Merriman et al. | Jun 2014 | A1 |
20140173199 | Gupta et al. | Jun 2014 | A1 |
20140181116 | Wang | Jun 2014 | A1 |
20140188808 | Wolf et al. | Jul 2014 | A1 |
20140189429 | Gill | Jul 2014 | A1 |
20140189677 | Curzi | Jul 2014 | A1 |
20140189685 | Kripalani | Jul 2014 | A1 |
20140189686 | Masters et al. | Jul 2014 | A1 |
20140196038 | Kottomtharayil et al. | Jul 2014 | A1 |
20140201725 | Tian et al. | Jul 2014 | A1 |
20140207824 | Brandwine et al. | Jul 2014 | A1 |
20140222953 | Karve et al. | Aug 2014 | A1 |
20140230024 | Uehara et al. | Aug 2014 | A1 |
20140237464 | Waterman et al. | Aug 2014 | A1 |
20140245387 | Colpo et al. | Aug 2014 | A1 |
20140250300 | Runkis et al. | Sep 2014 | A1 |
20140279909 | Sudarsanam et al. | Sep 2014 | A1 |
20140298185 | Chen | Oct 2014 | A1 |
20140310710 | Lubsey et al. | Oct 2014 | A1 |
20140359612 | D'Amato et al. | Dec 2014 | A1 |
20150006788 | Liu et al. | Jan 2015 | A1 |
20150007180 | Sharp et al. | Jan 2015 | A1 |
20150026682 | Singh et al. | Jan 2015 | A1 |
20150032653 | Iyer et al. | Jan 2015 | A1 |
20150032690 | Hoque et al. | Jan 2015 | A1 |
20150039735 | Zeyliger | Feb 2015 | A1 |
20150039763 | Chaudhary et al. | Feb 2015 | A1 |
20150039837 | Quan et al. | Feb 2015 | A1 |
20150058298 | Earl et al. | Feb 2015 | A1 |
20150081644 | Pitts | Mar 2015 | A1 |
20150095788 | Thiele et al. | Apr 2015 | A1 |
20150106325 | Cole et al. | Apr 2015 | A1 |
20150106802 | Ivanov et al. | Apr 2015 | A1 |
20150142745 | Tekade et al. | May 2015 | A1 |
20150142747 | Zou | May 2015 | A1 |
20150143164 | Veerla | May 2015 | A1 |
20150172412 | Escriva | Jun 2015 | A1 |
20150178019 | Hegdal et al. | Jun 2015 | A1 |
20150205618 | Bailey et al. | Jul 2015 | A1 |
20150205639 | Matsumoto et al. | Jul 2015 | A1 |
20150213032 | Powell et al. | Jul 2015 | A1 |
20150220324 | Arcese et al. | Aug 2015 | A1 |
20150242291 | Chang et al. | Aug 2015 | A1 |
20150244802 | Simoncelli | Aug 2015 | A1 |
20150278046 | Zellermayer et al. | Oct 2015 | A1 |
20150293830 | Bhide et al. | Oct 2015 | A1 |
20150293896 | Runkis et al. | Oct 2015 | A1 |
20150301903 | Mutha et al. | Oct 2015 | A1 |
20150324217 | Shilmover et al. | Nov 2015 | A1 |
20150326531 | Cui et al. | Nov 2015 | A1 |
20150331757 | Durge et al. | Nov 2015 | A1 |
20150347775 | Bie et al. | Dec 2015 | A1 |
20150355862 | Hayes | Dec 2015 | A1 |
20150378761 | Sevigny | Dec 2015 | A1 |
20150378853 | Sevigny | Dec 2015 | A1 |
20160011898 | Lee | Jan 2016 | A1 |
20160034555 | Rahut et al. | Feb 2016 | A1 |
20160050118 | Blanco et al. | Feb 2016 | A1 |
20160057009 | Kadayam et al. | Feb 2016 | A1 |
20160070492 | Cherubini et al. | Mar 2016 | A1 |
20160077936 | Tang et al. | Mar 2016 | A1 |
20160077988 | Tipton | Mar 2016 | A1 |
20160078068 | Agrawal et al. | Mar 2016 | A1 |
20160085480 | Chiu et al. | Mar 2016 | A1 |
20160085574 | Dornemann et al. | Mar 2016 | A1 |
20160087861 | Kuan et al. | Mar 2016 | A1 |
20160110214 | Vincent et al. | Apr 2016 | A1 |
20160110267 | Earl et al. | Apr 2016 | A1 |
20160124665 | Jain et al. | May 2016 | A1 |
20160162371 | Prabhu et al. | Jun 2016 | A1 |
20160171241 | Yun | Jun 2016 | A1 |
20160179416 | Mutha | Jun 2016 | A1 |
20160179419 | Yamaguchi et al. | Jun 2016 | A1 |
20160188232 | Ramachandran et al. | Jun 2016 | A1 |
20160188407 | Bronnikov et al. | Jun 2016 | A1 |
20160202916 | Cui et al. | Jul 2016 | A1 |
20160203008 | Cui et al. | Jul 2016 | A1 |
20160204977 | Cui et al. | Jul 2016 | A1 |
20160216993 | Beckwith et al. | Jul 2016 | A1 |
20160224363 | Joy | Aug 2016 | A1 |
20160274926 | Narasimhamurthy | Sep 2016 | A1 |
20160301766 | Ionescu et al. | Oct 2016 | A1 |
20160316003 | Snider | Oct 2016 | A1 |
20160328226 | Arya et al. | Nov 2016 | A1 |
20160335134 | Gupta et al. | Nov 2016 | A1 |
20160359697 | Scheib et al. | Dec 2016 | A1 |
20160359955 | Gill et al. | Dec 2016 | A1 |
20160378528 | Zamir | Dec 2016 | A1 |
20160378616 | Wigmore et al. | Dec 2016 | A1 |
20170004131 | Ben Dayan et al. | Jan 2017 | A1 |
20170005990 | Birger et al. | Jan 2017 | A1 |
20170012904 | Matzek et al. | Jan 2017 | A1 |
20170024152 | Bhagi et al. | Jan 2017 | A1 |
20170024224 | Bakke et al. | Jan 2017 | A1 |
20170039078 | Chen et al. | Feb 2017 | A1 |
20170039218 | Prahlad et al. | Feb 2017 | A1 |
20170048223 | Anantha Padmanaban et al. | Feb 2017 | A1 |
20170068469 | Shankar et al. | Mar 2017 | A1 |
20170075921 | Benton et al. | Mar 2017 | A1 |
20170090776 | Kowles | Mar 2017 | A1 |
20170091047 | Bangalore et al. | Mar 2017 | A1 |
20170094002 | Kumar et al. | Mar 2017 | A1 |
20170109184 | Ramani et al. | Apr 2017 | A1 |
20170160983 | Fiske et al. | Jun 2017 | A1 |
20170177638 | Bhosale et al. | Jun 2017 | A1 |
20170193021 | Deng | Jul 2017 | A1 |
20170206074 | Arcese et al. | Jul 2017 | A1 |
20170206207 | Bondurant et al. | Jul 2017 | A1 |
20170214738 | Agarwal et al. | Jul 2017 | A1 |
20170220661 | Cao et al. | Aug 2017 | A1 |
20170228300 | Thomas | Aug 2017 | A1 |
20170235507 | Sinha et al. | Aug 2017 | A1 |
20170235562 | Bafna et al. | Aug 2017 | A1 |
20170235563 | Bafna et al. | Aug 2017 | A1 |
20170235589 | Gopalapura Venkatesh et al. | Aug 2017 | A1 |
20170235590 | Sinha et al. | Aug 2017 | A1 |
20170235591 | Kanada et al. | Aug 2017 | A1 |
20170235653 | Arikatla et al. | Aug 2017 | A1 |
20170235654 | Deshmukh et al. | Aug 2017 | A1 |
20170235751 | Gupta et al. | Aug 2017 | A1 |
20170235758 | Gopalapura Venkatesh et al. | Aug 2017 | A1 |
20170235760 | Sharpe et al. | Aug 2017 | A1 |
20170235761 | Bafna et al. | Aug 2017 | A1 |
20170235762 | Sharpe et al. | Aug 2017 | A1 |
20170235763 | Gopalapura Venkatesh et al. | Aug 2017 | A1 |
20170235764 | Sharpe et al. | Aug 2017 | A1 |
20170235950 | Gopalapura Venkatesh et al. | Aug 2017 | A1 |
20170242599 | Patnaik et al. | Aug 2017 | A1 |
20170262346 | Pradhan et al. | Sep 2017 | A1 |
20170264684 | Spillane | Sep 2017 | A1 |
20170277556 | Ishii et al. | Sep 2017 | A1 |
20170277903 | Christodorescu et al. | Sep 2017 | A1 |
20170279674 | Zhu | Sep 2017 | A1 |
20170286228 | Redko et al. | Oct 2017 | A1 |
20170302589 | Leafe et al. | Oct 2017 | A1 |
20170302731 | Cui | Oct 2017 | A1 |
20180004766 | Darling | Jan 2018 | A1 |
20180014650 | Tao | Jan 2018 | A1 |
20180062993 | Wu et al. | Mar 2018 | A1 |
20180129426 | Aron et al. | May 2018 | A1 |
20180143845 | Chawla et al. | May 2018 | A1 |
20180145960 | Bakshan | May 2018 | A1 |
20180157521 | Arikatla et al. | Jun 2018 | A1 |
20180157522 | Bafna et al. | Jun 2018 | A1 |
20180157561 | Venkatesh et al. | Jun 2018 | A1 |
20180157677 | Bafna et al. | Jun 2018 | A1 |
20180157752 | Arikatla et al. | Jun 2018 | A1 |
20180157860 | Nair et al. | Jun 2018 | A1 |
20180159729 | Deshmukh et al. | Jun 2018 | A1 |
20180159826 | Yisan et al. | Jun 2018 | A1 |
20180173731 | Nazari et al. | Jun 2018 | A1 |
20180196719 | Glass | Jul 2018 | A1 |
20180205787 | Ben Dayan et al. | Jul 2018 | A1 |
20180278602 | Koushik et al. | Sep 2018 | A1 |
20180332105 | Huang et al. | Nov 2018 | A1 |
20180357251 | Kumarasamy et al. | Dec 2018 | A1 |
20190026101 | Gopalapura Venkatesh et al. | Jan 2019 | A1 |
20190034240 | Nabi | Jan 2019 | A1 |
20190079747 | Sinha et al. | Mar 2019 | A1 |
20190129808 | Acharya et al. | May 2019 | A1 |
20190196718 | Pai et al. | Jun 2019 | A1 |
20190207925 | Anantha Padmanaban et al. | Jul 2019 | A1 |
20190286832 | Szeto et al. | Sep 2019 | A1 |
20190332683 | Thummala et al. | Oct 2019 | A1 |
20190339883 | Aron | Nov 2019 | A1 |
20200007530 | Mohamad Abdul et al. | Jan 2020 | A1 |
20200012637 | Strauss | Jan 2020 | A1 |
20200034069 | Batra | Jan 2020 | A1 |
20200036647 | Gupta et al. | Jan 2020 | A1 |
20200081704 | Bafna et al. | Mar 2020 | A1 |
20200081733 | Buck | Mar 2020 | A1 |
20200106669 | Dhillon et al. | Apr 2020 | A1 |
20200125580 | Shao | Apr 2020 | A1 |
20200137157 | Joseph | Apr 2020 | A1 |
20200274869 | Tahenakos et al. | Aug 2020 | A1 |
20210081432 | Grunwald | Mar 2021 | A1 |
20210141630 | Sharpe | May 2021 | A1 |
20210165759 | Bar-nissan et al. | Jun 2021 | A1 |
20210200641 | Bafna | Jul 2021 | A1 |
20210224233 | Bafna | Jul 2021 | A1 |
20210247973 | Gupta | Aug 2021 | A1 |
20210334178 | Yang | Oct 2021 | A1 |
20210344772 | Arikatla | Nov 2021 | A1 |
20210349859 | Bafna | Nov 2021 | A1 |
20210365257 | Gopalapura Venkatesh | Nov 2021 | A1 |
20210390080 | Tripathi | Dec 2021 | A1 |
20210397587 | Thummala | Dec 2021 | A1 |
20210406136 | Venkatesh | Dec 2021 | A1 |
20220004377 | Sharpe | Jan 2022 | A1 |
20220147342 | Sharpe et al. | May 2022 | A1 |
20220147495 | Sharpe et al. | May 2022 | A1 |
20220156107 | Bafna et al. | May 2022 | A1 |
Number | Date | Country |
---|---|---|
103746997 | Apr 2014 | CN |
103746997 | Apr 2014 | CN |
105100210 | Nov 2015 | CN |
110516005 | Nov 2018 | CN |
110516005 | Nov 2019 | CN |
110519112 | Nov 2019 | CN |
110519112 | Nov 2019 | CN |
110569269 | Dec 2019 | CN |
1214663 | Jun 2002 | EP |
1 229 443 | Aug 2002 | EP |
1062581 | Oct 2003 | EP |
1214663 | Jun 2006 | EP |
1979814 | Oct 2008 | EP |
1979814 | Oct 2008 | EP |
WO 2010050944 | May 2010 | WO |
WO-2010050944 | May 2010 | WO |
WO 2011078646 | Jun 2011 | WO |
WO 2012126177 | Sep 2012 | WO |
WO-2012126177 | Sep 2012 | WO |
WO 2014200564 | Dec 2014 | WO |
WO 2016018446 | Feb 2016 | WO |
WO-2016018446 | Feb 2016 | WO |
WO 2018014650 | Jan 2018 | WO |
WO 2020180291 | Sep 2020 | WO |
Entry |
---|
US 11,048,595 B2, 06/2021, Venkatesh et al. (withdrawn) |
U.S. Appl. No. 16/177,126, “Managing High-Availability File Servers,” filed Oct. 31, 2018, Joseph et al. (Year: 2018). |
Notice of Allowance dated Dec. 8, 2021 for related U.S. Appl. No. 16/747,272. |
Notice of Allowance for U.S. Appl. No. 16/177,126 dated May 26, 2022. |
Citrix XenDesktop 7.1 on Microsoft Hyper-V Server 2012 R2 on Nutanix Virtual Computing Platform, dated Jun. 25, 2014. |
U.S. Appl. No. 17/866,225 titled Virtualized File Server Disaster Recovery filed Jul. 15, 2022. |
U.S. Appl. No. 17/865,907 titled “Virtualized File Server Deployment” filed Jul. 15, 2022, Attorney Docket No. 0076796-00701. |
Hemmes, J., et al., “Cacheable Decentralized Groups for Grid Resource Access Control,” Technical Report Jun. 2006, Department of Computer Science and Engineering, University of Notre Dame, dated 2006. |
Lye, B., “Implementing Windows Server 2008 File System Quotas,” Redgate, dated Nov. 19, 2009. |
“VSAN File Services,” VMwareStorage, VMWare, dated May 2020. |
“Virtual Disk Manager User's Guide,” Virtual Disk Development Kit, VMWare, copyright 2008. |
Non-Final Office Action for U.S. Appl. No. 16/177,126 dated Sep. 16, 2022. |
“Setting up and Using Acropolis File Services (AFS) on Nutanix AOS 5.0”; Virtual Dennis—Sharing Technical Tips Learned the Hard Way; Posted Dec. 30, 2016; pp. all. |
Bas van Kaam “New in AOS 5.0: Nutanix Acropolis File Services”; basvankaam.com; Jan. 5, 2017; pp. all. |
Ruth, Paul “Autonomic Live Adaptation of Virtual Computational Environments in a Multi-Domain Infrastructure”; 2006 IEEE International Conference on Autonomic Computing, 2006, pp. 5-14. |
Illingworth, T., “Enable or disable SMB automatic node referrals,” dated Dec. 9, 2021, URL: https://docs.netapp.com/ontap-9/index.jsp?topic=%2Fcom.netapp.doc.cdot-famg-cifs%2FGUID-AC7E8515-3A4C-4BB5-A8C8-38B565C952E0.html. |
Administering VMware Virtual SAN; VMware vSphere 6.5; vSAN 6.6; https://docs.vmware.com/en/VMware-vSphere/6.5/virtual-san-66-administration-guide.pdf, captured Aug. 20, 2021. |
Illingworth, T, “Guarantee throughput with QoS overview,” dated Dec. 9, 2021, NetApp, URL: https://docs.netapp.com/ontap-9/index.jsp?topic=%2Fcom.netapp.doc.pow-perf-mon%2FGUID-77DF9BAF-4ED7-43F6-AECE-95DFB0680D2F.html. |
“Manage workloads,” NetApp, dated Oct. 14, 2021, URL: https://docs.netapp.com/ontap-9/index.jsp?topic=%2Fcom.netapp.doc.pow-perf-mon%2FGUID-13D35FC5-AF37-4BBD-8A8E-B10B41451A16.html. |
“Backup vSAN 7 File Share with Veeam Backup & Replication 10,” Sysadmin Stories, dated Jun. 2, 2020, URL: https://www.sysadminstories.com/2020/06/backup-vsan-7-file-share-with-veeam.html. |
vSphere Storage; Update 2; VMware vSphere 7.0; VMware ESXi 7.0; vCenter Server 7.0; dated Jun. 25, 2021 https://docs.vmware.eom/en/VMware-vSphere/7.0/vsphere-esxi-vcenter-server-702-storage-guide.pdf. |
VMWare Datasheet; https://www.vmware.com/content/dam/digitalmarketing/vmware/en/pdf/products/vCenter/vmware-vcenter-server-datasheet.pdf, captured Aug. 20, 2021. |
“VSAN 7.0 U2 Proof of Concept Guide,” dated Apr. 2021 https://images.core.vmware.com/sites/default/files/resource/vsan_70_u2_proof_of_concept_guide_noindex.pdf. |
“vSAN Health Service—File Service—File Server Health (77165),” VMware, Knowledge Base, dated Oct. 4, 2021, URL: https://kb.vmware.com/s/article/77165. |
Update 3, VMWare vSphere 6.7; VMware vSAN 6.7; dated Aug. 20, 2019, https://docs.vmware.com/en/VMware-vSphere/6.7/vsan-673-planning-deployment-guide.pdf. |
“VSAN Stretched Cluster Guide,” VMwareStorage, dated Jun. 2020, https://images.core.vmware.com/sites/default/files/resource/vsan_stretched_cluster_guide_noindex.pdf. |
“The Wonderful World of Distributed Systems and the Art of Metadata Management,” Nutanix, Inc., dated Sep. 24, 2015, URL: https://www.nutanix.com/blog/the-wonderful-world-of-distributed-systems-and-metadata-management. |
Fojta, T. “Quotas and Quota Policies in VMware Cloud Director,” Tom Fojta's Blog, dated Nov. 6, 2020. |
Fojta, T., “vSAN File Services with vCloud Director,” Tom Fojta's Blog, dated Apr. 6, 2020. |
Hogan, C., New updates from Nutanix—NOS 3.0 and NX-3000, dated Dec. 20, 2012, URL: https://cormachogan.com/2012/12/20/new-from-nutanix-nos-3-0-nx-3000/. |
Leibovici, A., “Nutanix One-Click Upgrade now takes care of Firmware and Hypervisor too! ,” myvirtualcloud.net , dated Jul. 31, 2014, URL: https://myvirtualcloud.net/nutanix-one-click-upgrade-now-takes-care-of-firmware-and-hypervisor-too/. |
Rajendran, C, “Working with vSAN Health Checks,” VMware vSan Virtual Blocks Blog, dated Jul. 18, 2019, URL: https://blogs.vmware.com/virtualblocks/2019/07/18/working-with-vsan-health-checks/. |
Sturniolo, A., “VMware vSAN File Services and Veeam,” Veeam Blog, dated Jul. 22, 2020, URL: https://www.veeam.com/blog/veeam-backup-vsan-file-services.html. |
“Administering VMware vSAN, Update 1,” VMWare, copyright 2020. |
“Characteristics of a vSAN Cluster,” VMWare, dated May 31, 2019. |
“Native File Services for vSAN 7,” cormachogan.com, dated Mar. 11, 2020. |
“Nutanix Files Guide,” Nutanix, dated Sep. 14, 2018. |
Birk, R., “Understanding vSAN Architecture Components ,” VMWare, dated Feb. 28, 2018. |
Seget, V., “VMWare vSAN 7 now with native file services and quotas,” VMWare, dated May 1, 2020. |
“VMWare vSAN 7.0 Release Notes,” VMWare, dated Jun. 23, 2020. |
Seget, V., “VMWare vSphere 7.0 and vSAN storage improvements,” 4sysops, dated Apr. 1, 2020. |
“VMWare vSphere VMFS Technical Overview and Best Practices,” VMWare Technical White Paper, copyright 2012. |
“Additional Use Cases and Support Using vSAN File Services,” VMWare, copyright 2021. |
vSphere Storage; Update 2; VMware vSphere 6.7; VMware ESXi 6.7; vCenter Server 6.7; dated Jan. 4, 2021. |
vSphere Availibility, Update 1, VMWare, dated Jan. 11, 2019. |
Screen captures from YouTube video clip entitled “Tech TopX: AHV One Click Upgrade,” 13 pages, uploaded on Dec. 8, 2015 by user “Nutanix University”. Retrieved from Internet: https://www.youtube.com/watch?v=3dALdzw6qZM. |
“vSAN Performance Graphs in the vSphere Web Client,” VMWare Knowledge Base, dated Nov. 9, 2020. |
vSAN Monitoring and Troubleshooting, Update 1, VMWare vSphere 7.0, copyright 2020. |
U.S. Appl. No. 17/443,009, titled “Scope-Based Distributed Lock Infrastructure for Virtualized File Server” filed Jul. 19, 2021, pp. all. |
U.S. Appl. No. 17/580,555 titled “Virtualized File Server” filed Jan. 20, 2022. |
U.S. Appl. No. 17/581,418 titled “File Server Managers and Systems for Managing Virtualized File Servers” filed Jan. 21, 2022. |
U.S. Appl. No. 17/585,403 titled “Virtualized File Server Smart Data Ingestion” filed Jan. 27, 2022. |
U.S. Appl. No. 17/648,796 titled “Virtualized Server Systems and Methods Including Scaling of File System Virtual Machines” filed Jan. 24, 2022. |
Poitras, Steven. “The Nutanix Bible” (Sep. 9, 2022), from https://nutanixbible.com/ (Publication date based on indicated capture date by Archive.org; first publication date unknown). |
Non-Final Office Action for U.S. Appl. No. 17/646,480 dated Sep. 27, 2022. |
Final Office Action for U.S. Appl. No. 17/646,480 dated Jan. 20, 2023. |
Notice of Allowance dated Jan. 24, 2023 for U.S. Appl. No. 16/177,126. |
Non-final Office Action dated Jul. 7, 2015 for related U.S. Appl. No. 14/278,363. |
Non-final Office Action dated Jul. 16, 2015 for related U.S. Appl. No. 14/584,466. |
International Search Report and Written Opinion dated Aug. 20, 2015, for related PCT Patent Application No. PCT/US15/31096, 8 pages. |
International Search Report and Written Opinion dated Aug. 26, 2015, for related PCT Patent Application No. PCT/US15/31096, 8 pages. |
Final Office Action dated Feb. 25, 2016 for related U.S. Appl. No. 14/584,466. |
Final Office Action dated Mar. 23, 2016 for related U.S. Appl. No. 14/278,363. |
Notice Of Allowance and Fee(s) due dated Jul. 19, 2016 for related U.S. Appl. No. 14/206,869. |
Lamport, Leslie “Paxos Made Simple,” dated Nov. 1, 2001, 14 pages. |
Alexander Shraer, et al., “Dynamic Reconfiguration of Primary/Backup Clusters,” dated 2011, 13 pages. |
Notice of Allowance and Fee(s) due dated Oct. 30, 2015 for related U.S. Appl. No. 14/144,520. |
Wikipedia, “Compare-and-swap,” Nov. 9, 2015, 6 pages. |
International Search Report and Written Opinion dated Aug. 7, 2015, for corresponding PCT Patent Application No. PCT/US2015/030026, 10 pages. |
Non-final Office Action dated Jul. 17, 2015 for related U.S. Appl. No. 14/206,869. |
PCT International Search Report and Written Opinion dated Jun. 15, 2015 for related PCT Patent Application No. PCT/US2015/020139. |
Final Office Action dated Jan. 25, 2016 for related U.S. Appl. No. 14/206,869. |
Non-final Office Action dated Sep. 22, 2016 for related U.S. Appl. No. 14/584,466. |
Citrix, “Citrix XenServer 6.0 Administrator's Guide”, Copyright 2012 Citrix Systems, Inc., 207 pages. |
John L Hufferd, Hufferd Enterprises, SNIA, “IP Storage Protocols: iSCSI”, Copyright 2011 Storage Networking Industry Association, 46 pages. |
VMware, Technical White Paper, “Multipathing Configuration for Software iSCSI Using Port Binding”, Copyright 2012 Vmware, Inc., 15 pages. |
Non-final Office Action dated Oct. 7, 2016 for related U.S. Appl. No. 14/278,363. |
Notice of Allowance and Fee(s) due dated Oct. 24, 2016 for related U.S. Appl. No. 14/206,869. |
Non-final Office Action dated Nov. 1, 2016 for related U.S. Appl. No. 14/708,091. |
Notice of Allowance and Fee(s) due dated Apr. 5, 2017 for related U.S. Appl. No. 14/584,466. |
Ajmani et al., “Scheduling and Simulation: How to Upgrade Distributed Systems,” HotOS IX: The 9th Workshop on Hot Topics in Operating Systems, USENIX, 2003, pp. 43-48. |
Kochut, Andrzej and Alexei Karve, “Leveraging Local Image Redundancy for Efficient Virtual Machine Provisioning,” 2012 IEEE Network Operations and Management Symposium, Jun. 8, 2012, pp. 179-187. |
Soules et al.; “Metadata Efficiency in a Comprehensive Versioning File System”, May 2002, CMU-CS-02-145, School of Computer Science, Carnegie Mellon University, Pittsburgh, PA 15213, 33 pages. |
Notice of Allowance and Fee(s) due dated Apr. 10, 2017 for related U.S. Appl. No. 14/278,363. |
Final Office Action dated Apr. 20, 2017 for related U.S. Appl. No. 14/708,091. |
Notice of Allowance and Fee(s) due dated May 15, 2017 for related U.S. Appl. No. 15/069,961. |
Non-Final Office Action dated Jan. 26, 2017 for related U.S. Appl. No. 15/069,961. |
Non-Final Office Action dated Jul. 12, 2017 for related U.S. Appl. No. 14/610,285. |
European Search Report dated May 5, 2017 for related EP Application No. 15792334.3, 13 pages. |
European Search Report dated May 19, 2017 for related EP Application No. 15788922.1, 11 pages. |
Non-Final Office Action dated Aug. 24, 2017 for related U.S. Appl. No. 14/708,091. |
Final Office Action dated Jan. 9, 2018 for related U.S. Appl. No. 14/610,285. |
European Extended Search Report dated Jan. 15, 2018 for related EP Application No. 15762234.1, 19 pages. |
Final Office Action dated Feb. 27, 2018 for related U.S. Appl. No. 14/708,091. |
Advisory Action dated May 18, 2018 for related U.S. Appl. No. 14/708,091. |
Non-Final Office Action dated Jun. 7, 2018 for related U.S. Appl. No. 15/294,422. |
Non-Final Office Action dated Jun. 29, 2018 for related U.S. Appl. No. 15/160,347. |
Notice of Allowance dated Sep. 6, 2018 for related U.S. Appl. No. 14/708,091, 8 pages. |
First Office Action dated Jul. 30, 2018 for related European Application No. 15762234.1, 6 pages. |
Non-Final Office Action dated Nov. 14, 2018 for related U.S. Appl. No. 15/678,893, 7 pages. |
Notice of Allowance dated Nov. 20, 2018 for related U.S. Appl. No. 15/294,422, 7 pages. |
Intention to Grant dated Jan. 3, 2019 for related EP Application No. 15792334.3, 7 pages. |
Final Office Action dated Jan. 28, 2019 for related U.S. Appl. No. 15/160,347, 16 pages. |
Poitras, Steven. “The Nutanix Bible” (Oct. 15, 2013), from http://stevenpoitras.com/the-nutanix-bible/ (Publication date based on indicated capture date by Archive.org; first publication date unknown). |
Poitras, Steven. “The Nutanix Bible” (Jan. 11, 2014), from http://stevenpoitras.com/the-nutanix-bible/ (Publication date based on indicated capture date by Archive.org; first publication date unknown). |
Poitras, Steven. “The Nutanix Bible” (Jun. 20, 2014), from http://stevenpoitras.com/the-nutanix-bible/ (Publication date based on indicated capture date by Archive.org; first publication date unknown). |
Poitras, Steven. “The Nutanix Bible” (Jan. 7, 2015), from http://stevenpoitras.com/the-nutanix-bible/ (Publication date based on indicated capture date by Archive.org; first publication date unknown). |
Poitras, Steven. “The Nutanix Bible” (Jun. 9, 2015), from http://stevenpoitras.com/the-nutanix-bible/ (Publication date based on indicated capture date by Archive.org; first publication date unknown). |
Poitras, Steven. “The Nutanix Bible” (Sep. 4, 2015), from https://nutanixbible.com/. |
Poitras, Steven. “The Nutanix Bible” (Jan. 12, 2016), from https://nutanixbible.com/. |
Poitras, Steven. “The Nutanix Bible” (Jun. 9, 2016), from https://nutanixbible.com/. |
Poitras, Steven. “The Nutanix Bible” (Jan. 3, 2017), from https://nutanixbible.com/. |
Poitras, Steven. “The Nutanix Bible” (Jun. 8, 2017), from https://nutanixbible.com/. |
Poitras, Steven. “The Nutanix Bible” (Jan. 3, 2018), from https://nutanixbible.com/. |
Poitras, Steven. “The Nutanix Bible” (Jun. 25, 2018), from https://nutanixbible.com/. |
Poitras, Steven. “The Nutanix Bible” (Jan. 8, 2019), from https://nutanixbible.com/. |
Notice of Allowance dated Mar. 20, 2019 for related U.S. Appl. No. 15/678,893, 5 pages. |
Notice of Allowance dated Mar. 26, 2019 for related U.S. Appl. No. 15/294,422, 7 pages. |
Non-Final Office Action dated Sep. 6, 2019 for related U.S. Appl. No. 15/160,347. |
Notice of Allowance dated Nov. 19, 2019 for related U.S. Appl. No. 14/708,091. |
Notice of Allowance dated Dec. 27, 2019 for related U.S. Appl. No. 14/610,285. |
Final Office Action dated Mar. 16, 2020 for related U.S. Appl. No. 15/160,347. |
E.S., “Nutanix Two-Node Clusters”, (Jun. 18, 2018), from http://vpash.com/nutanix/nutanix-two-node-clusters/, pp. all. |
Configuring a Witness (two-node cluster) (Jul. 16, 2018), 3 pages. |
Gupta, Upasna. “Unlocking the ROBO/Edge IT Landscape with the Launch of Nutanix 1-node Cluster” (Jan. 19, 2018), 7 pages. |
Liu, M. “Fine-Grained Replicated State Machines for a Cluster Storage System”, in the Proceedings of the 17th USENIX Symposium on Networked Systems Design and Implementation (NSDI '20), (Feb. 25-27, 2020). |
Junqueira, F. P., “Zab: High-performance broadcast for primary-backup systems”, 2011 IEEE/IFIP 41st International Conference on Dependable Systems & Networks (DSN), (Jun. 27-30, 2011). |
Redis, “Redis Sentinel Documentation”, (Jul. 23, 2012), date retrieved from google. |
RABBITMQ, “Quorum Queues”, (Nov. 14, 2019), date retrieved from google. |
Cao, W.,“PolarFS: An Ultra-low Latency and Failure Resilient Distributed File System for Shared Storage Cloud Database”, Proceedings of the VLDB Endowment, vol. 11, No. 12, (Aug. 2018). |
Alibaba Cloud, “AliSQL X-Cluster: An MySQL Database with Superior Performance and Strong Consistency”, (Dec. 8, 2019). |
Cano, I. et al., “Curator: Self-Managing Storage for Enterprise Clusters”, 14th USENIX Symposium on Networked Systems Design and Implementation, NSDI '17, (Mar. 27, 2017). |
Poitras, Steven. “The Nutanix Bible” (Jul. 9, 2019), from https://nutanixbible.com/ (Publication date based on indicated capture date by Archive.org; first publication date unknown). |
Poitras, Steven. “The Nutanix Bible” (Feb. 3, 2020), from https://nutanixbible.com/ (Publication date based on indicated capture date by Archive.org; first publication date unknown). |
Final Office Action dated Aug. 5, 2020 for U.S. Appl. No. 16/041,348. |
Notice of Allowance dated Nov. 4, 2020 for related U.S. Appl. No. 15/160,347. |
Mizrak, A. T et al., “VMware vCenter Server High Availability Performance and Best Practices”, VMware Server 6.5, Performance Study, VMware, (Nov. 2016). |
VMware, “vSAN Planning and Deployment”, VMware vSphere 7.0, VMware vSAN 7.0, VMware, Inc., (Apr. 2, 2020). |
VMware, “VMware Infrastructure, Automating High Availability (HA) Services with VMware HA”, VMware Technical Note, (Revised on Jun. 5, 2006). |
VMware, “VMware® High Availability (VMware HA): Deployment Best Practices”, VMware® vSphere™ 4.1, Technical White Paper, (Dec. 10, 2010), date retrieved from google. |
Potheri, M. et al., “VMware vCenter Server™ 6.0, Availability Guide”, Technical Marketing Documentation, Version 1.0, (May 2015). |
McCarty, J., “VMware® Virtual SAN™ Stretched Cluster: Bandwidth Sizing Guidance”. Technical White Paper, VMware, (Jan. 26, 2016), date retrieved from google. |
McCarty, J., “VMware® Virtual SAN™ 6.1 Stretched Cluster & 2 Node Guide”, Storage and Availability Business Unit, VMware, v 6.1.0c, version 0.20, (Jan. 2016). |
Dell: “High Availability and Data Protection With Dell EMC Isilon Scale-Out NAS”, (Jul. 2018), Dell Inc. |
JCosta et al., “High Availability Setup Using Veritas Cluster Server and NetApp Synchronous SnapMirror—One button Failover-Failback with SnapMirror Sync and Veritas Cluster Server”, (Nov. 18, 2010), NetApp Community. |
NetApp: “Preparing storage systems for SnapMirror replication”, (Jul. 2015), NetApp, Inc. |
Bounds, J., “High-Availability (HA) Pair Controller Configuration Overview and Best Practices”, (Feb. 2016), NetApp, Inc. |
Netapp, “Clustered Data ONTAP 8.2 File Access Management Guide for CIFS”, NetApp, Inc., (Feb. 2014). |
Jung, Y. et al. “Standard-based Virtual Infrastructure Resource Management for Distributed and Heterogeneous Servers”, ICACT, (Feb. 15, 2009). |
Dell EMC, “Dell EMC Isilon OneFS Operating System, Scale-out NAS to maximize the data capital and business value of your unstructured data”, Data Sheet, (Jan. 31, 2019), date retrieved from google. |
Dell EMC, “Dell EMC Isilon OneFS Operating System, Powering the Isilon Scale-Out Storage Platform”, White Paper, (Dec. 2019). |
EMC, “EMC Isilon OneFS Operating System, Powering scale-out storage for the new world of Big Data in the enterprise”, Data Sheet, (Apr. 2013). |
EMC, Isilon OneFS, Version 8.0.1, Web Administration Guide, EMC Corporation, (Oct. 2016). |
Netapp, “Enabling or disabling SMB automatic node referrals”, ONTAP 9 Documentation Center, NetApp, Inc., (Updated Dec. 2020), from https://docs.netapp.com/ontap-9/index.jsp?topic=%2Fcom.netapp.doc.cdot-famg-cifs%2FGUID-AC7E8515-3A4C-4BB5-A8C8-38B565C952E0.html. |
Netapp, “Guaranteeing throughput with QoS”, ONTAP 9 Documentation Center, NetApp, Inc., (Updated Dec. 2020), from https://docs.netapp.com/ontap-9/index.jsp?topic=%2Fcom.netapp.doc.pow-perf-mon%2FGUID-77DF9BAF-4ED7-43F6-AECE-95DFB0680D2F.html. |
NetApp. “How to troubleshoot the ‘Autolocation’ feature in Clustered Data ONTAP”, Knowledgebase, NetApp, (Jun. 4, 2019). |
NetApp. “How to troubleshoot the ‘Autolocation’ feature in Clustered Data ONTAP—Results”, Knowledgebase, NetApp, (Captured on Sep. 19, 2019). |
Cloudian, “Hybrid Cloud Storage with Cloudian HyperStore and Amazon S3”, Solution Brief, Cloudian Inc., (Aug. 2015). |
NetApp, “Improving client response time by providing SMB automatic node referrals with Auto Location”, NetApp, Inc., (May 2013), from https://library.netapp.com/ecmdocs/ECMP1196891/html/GUID-0A5772A4-A6D7-4A00-AC2A-92B868C5B3B5.html. |
NetApp, “Managing Workloads”, ONTAP 9 Documentation Center, NetApp, Inc., (Updated Dec. 2020), from https://docs.netapp.com/ontap9/index.jsp?topic=%2Fcom.netapp.doc.pow-perf-mon%2FGUID-13D35FC5-AF37-4BBD-8A8E-B10B41451A16.html. |
Nutanix, “Nutanix AFS—Introduction & Steps For Setting Up”, (Jan. 3, 2018), from https://virtual building blocks.com/2018/01/03/nutanix-afs-introduction-steps-for-setting-up/. |
NetApp, “Protect Your Data with NetApp Element Software”, Solution Brief, NetApp, (Oct. 11, 2020), date retrieved from google. |
Kemp, E., “NetApp SolidFire SnapMirror Architecture and Configuration”, Technical Report, NetApp, (Dec. 2017). |
Kleyman, B., “How Cloud Computing Changes Storage Tiering”, DataCenter Knowledge, (Nov. 12, 2015). |
Poitras, Steven. “The Nutanix Bible” (Aug. 1, 2020), from https://nutanixbible.com/ (Publication date based on indicated capture date by Archive.org; first publication date unknown). |
Virtuadmin, “Configure VCenter High Availability”, Virtubytes, (Sep. 14, 2017). |
Non-Final Office Action dated Sep. 30, 2020 for related U.S. Appl. No. 16/177,126. |
Notice of Allowance dated Mar. 3, 2021 for U.S. Appl. No. 16/041,348. |
Notice of Allowance dated Mar. 10, 2021 for related U.S. Appl. No. 15/160,347. |
Rivera, R., “VMware Virtual SAN: Witness Component Deployment Logic”, VMware vSphere Bloi, (Apr. 1, 2014). |
Page, M. “EMC VPLEX Witness Deployment Within VMware VCloud Air”, White Paper, EMC, (Oct. 7, 2016). |
EMC, “EMC VPLEX Witness Deployment Within VMware VCloud Air”, White Paper, EMC, (Jul. 2013). |
“New VMware HCL category: vSphere Metro Stretched Cluster”, Virtual Geek, (Oct. 5, 2011). |
Lakkapragada, S. et al., “Site Recovery Manager and Stretched Storage: Tech Preview of a New Approach to Active-Active Data Centers”, VMware, (Nov. 2014). |
Epping, D., “Stretched vCloud Director Infrastructure”, VMware, (Jan. 23, 2013). |
Bernasconi, A. et al., “IBM SAN and SVC Stretched Cluster and VMware Solution Implementation”, IBM Redbooks, (Apr. 2013). |
Ashish, S. et al., “IBM SAN Volume Controller Stretched Cluster with PowerVM and PowerHA”, IBM Redbooks, (Jul. 2013). |
Dell, “Multi-AZ (stretched cluster)”, Architecture Guide-VMware Cloud Foundation 3.10.01 on VxRail, Dell Technologies, (Oct. 2001). |
Daveberm, “Step-By-Step: Configuring a 2-NODE Multi-Site Cluster on Windows Server 2008 R2—PART 1”, Clustering for Mere Mortals, (Sep. 15, 2009). |
“Failover Clustering (III)”, Networks & Servers Blog, (Sep. 2011). |
Sarmiento, E., “Force Start a Windows Server Failover Cluster without a Quorum to bring a SQL Server Failover Clustered Instance Online”, (Aug. 22, 2014). |
Horenbeeck, M. V., “Spooky! The Curious Case of the ‘Ghost’ File Share Witness . . . ”, (Jul. 15, 2014). |
VMware, “Administering VMware Virtual SAN: VMware vSphere 6.5, vSAN 6.6”, VMware, (Jun. 26, 2017). |
Littman, M. L., “The Witness Algorithm: Solving Partially Observable Markov Decision Process”, Brown University, (Dec. 1994). |
Oracle, “Deploying Microsoft SQL Server Always On Availability Groups”, Oracle White Paper, (Sep. 2018). |
EnterpriseDB, “EDB Failover Manager Guide: Failover Manager Version 2.0.3”, EnterpriseDB Corporation, (Dec. 18, 2015). |
“Explaining the Stormagic SvSAN Witness”, White Paper, (Aug. 29, 2018). |
“2016 Failover cluster using Azure blob as a cluster quorum”, Teckadmin, (Mar. 31, 2019). |
Deschner, G. et al., “Calling the Witness: SMB3 Failover with Samba/CTDB”, Redhat, (Oct. 2, 2015). |
Microsoft, “High Availability Solutions: SQL Server 2012 Books Online”, Microsoft (Jun. 2012). |
Mitchell, D., “Introduction to VMware vSAN™ for VMware Cloud Providers ™,” Version 2.9, VMware, (Jan. 2018). |
Mitchell, D., “Introduction to VMware vSAN™ for VMware vCloud Air™ Network”, Version 2.7, VMware, (Feb. 2017). |
Paderin, M. “Analysis of Server Clustering Its Uses and Implementation”, Bachelor's thesis Information Technology, (Dec. 2017). |
VMware, “Virtualizing Microsoft Applications on VMware Virtual SAN”, Reference Architecture, VMware, (Apr. 2, 2015). |
Deschner, G., “Implementing the Witness protocol in Samba”, Redhat, (Jun. 22, 2015). |
Deschner, G., “Cluster improvements in Samba4”, Redhat, (May 30, 2016). |
Ngyuen, L., “SMB 3 Transparent Failover for Hitachi NAS Platform 4000 Series”, Tech Note, Hitachi Data Systems, (Nov. 2016). |
McCarty, J. “VMware Horizon 6 with App Volumes and Virtual SAN Reference Architecture”, Storage and Availability Business Unit, VMware (Jan. 2016). |
VMware, “VMware Horizon 6 with App Volumes and Virtual SAN Reference Architecture”, Technical White Paper, VMware, (Apr. 9, 2011), date retrieved from google. |
Feroce, D., “Leveraging VMware vSAN™ for Highly Available Management Clusters”, Version 2.9, VMware, (Jan. 2018). |
VMware, “Deployment for Multiple Availability Zones”, VMware Validated Design for Software-Defined Data Center 4.3, VMware, (Jul. 17, 2018). |
Hogan, C., “VMware Virtual SAN Health Check Guide”, Storage and Availability Business Unit, V 6.1.0, VMware, (Sep. 2015). |
Banerjee, A. et al., “VMware Virtual SAN™ Stretched Cluster: Performance and Best Practices”, Technical White Paper, VMware, (Oct. 22, 2015). |
Hosken, M., “VMware vSAN™ Two-Node Architecture VMware Cloud Provider™ Use Cases”, Version 2.9, VMware, (Jan. 2018). |
“VMware Virtual SAN 6.2”, Licensing Guide, VMware, (Revised Jun. 2016). |
Hunter, J., “VMware Virtual SAN 6.2”, PCI DSS Compliance Guide, (Revised Feb. 2016). |
“VMware Virtual SAN: SAP Applications”, Solution Overview, VMware, (May 6, 2016). |
Eckerle, A. et al., “What's New in VMware vSphere® 6.5”, Technical White Paper, (Nov. 15, 2016). |
Notice of Allowance dated Jun. 24, 2021 for related U.S. Appl. No. 16/041,348. |
Notice of Allowance dated Aug. 4, 2021 for related U.S. Appl. No. 15/160,347. |
Non-Final Office Action dated Aug. 5, 2021 for related U.S. Appl. No. 16/747,272. |
Non-Final Office Action dated Feb. 4, 2020 for U.S. Appl. No. 16/041,348. |
Final Office Action dated Apr. 26, 2021 for related U.S. Appl. No. 16/177,126. |
U.S. Appl. No. 17/129,425 titled “Parallel Change File Tracking in a Distributed File Server Virtual Machine (FSVM) Architecture” filed Dec. 21, 2020. |
U.S. Appl. No. 16/942,929 titled “Method Using Access Information in a Distributed File Server Virtual Machine (FSVM) Architecture, Including Web Access”; filed Jul. 30, 2020. |
U.S. Appl. No. 16/944,323 titled “Actions Based On File Tagging in a Distributed File Server Virtual Machine (FSVM) Environment”, filed Jul. 31, 2020. |
U.S. Appl. No. 17/091,758 titled “Virtualized File Server Distribution Across Clusters”, filed Nov. 6, 2020. |
Notice of Allowance for U.S. Appl. No. 16/177,126 dated Apr. 12, 2023. |
Number | Date | Country | |
---|---|---|---|
20210349858 A1 | Nov 2021 | US |
Number | Date | Country | |
---|---|---|---|
63022315 | May 2020 | US |