A bit map is maintained by a provider object of a name server to keep track of names cached by a cache object of the client. The bit map is indexed by performing a hash of the name. When a name is looked up by the server on behalf of a client, the server hashes the name, and sets the bit in the bit map indexed by the result of the hash modulo the size of the bit map. The result of the hash is returned to the client and is stored with the entry in the cache. A bit "set" in the bit map indicates that the client caches at least one name that hashes into the bit. When the server invalidates a name, a hash of the name to be invalidated is used to find the corresponding bit in the bit mask. If the bit is set, the server sends an invalidation request to the client. The invalidation request includes the result of the hash, and the size of the provider's bit map. The client invalidates all entries that hash into the specified bit in the bitmap on the server. Alternatively, the invalidation request also includes the name to be invalidated and the client invalidates only the entry that matches the name.
|
10. A method for maintaining directory coherence, comprising the steps of:
caching name information; providing the name information from a name server to a cache, the name server having a data structure and setting a hash indicator of the data structure when providing the name information of a particular name, the hash indicator having a hash index calculated by hashing the particular name; hashing the name to be invalidated, said hashing performed by the name server, if the name server receives a directory invalidate request for a name to be invalidated; and if a data of the data structure indexed by the hash of the name to be invalidated has been set, said method ordering the cache to invalidate all cached name information associated with said data indexed by the hash of the name to be invalidated and resetting the data indexed by the hash of the name to be invalidated, said ordering performed by the name server.
1. A directory coherence mechanism for use in a client-server system having a server and a plurality of clients, said mechanism comprising:
a cache configured to store name information; and a name server configured to provide the name information to the cache, the name server having a data structure and setting a hash indicator of the data structure when providing the cache name information of a particular object name, the hash indicator having a hash index calculated by hashing the particular object name, wherein if the name server receives a directory invalidate request for a name to be invalidated, the name server hashes the name to be invalidated and if a data of the data structure indexed by the hash of the name to be invalidated has been set, the name server orders the cache to invalidate all cached name information associated with the data indexed by the hash of the name to be invalidated and the name server resets the data indexed by the hash of the name to be invalidated.
2. The directory coherence mechanism as set forth in
3. The directory coherence mechanism as set forth in
4. The directory coherence mechanism as set forth in
5. The directory coherence mechanism as set forth in
6. The directory coherence mechanism as set forth in
7. The directory coherence mechanism as set forth in
8. The directory coherence mechanism as set forth in
9. The directory coherence mechanism as set forth in
11. The method as set forth in
hashing the name to be invalidated, said hashing performed by the name server; if a data of the data structure indexed by the hash of the name to be invalidated has been set, said method ordering the cache to invalidate all cached name information associated with the data indexed by the hash of the name to be invalidated, said ordering performed by the name server; and resetting a bit indexed by the hash of an object name to be invalidated, said resetting performed by the name server.
12. The method as set forth in
indicating to the name server when all cached name information associated with the data indexed by the hash of the name to be invalidated has been invalidated, said indicating performed by the cache.
13. The method as set forth in
indicating a successful invalidation after the cache has indicated to the name server that all of the cached name information associated with the data indexed by the hash of the name to be invalidated has been invalidated, said indicating performed by the name server.
14. The method as set forth in
indicating a successful invalidation if the name server hashes the name to be invalidated and the data of the data structure indexed by the hash of the name to be invalidated has not been set, said indicating performed by the name server.
15. The method as set forth in
hashing the name to be invalidated; if a data of the data structure indexed by the hash of the name to be invalidated has been set, ordering the cache to invalidate cached name information associated with the name to be invalidated, said ordering performed by the name server; and then, if the cache indicates that the cached name information associated with the name to be invalidated has been invalidated, resetting a bit hashed for the name to be invalidated, said indicating performed by the name server.
16. The method as set forth in
indicating to the name server when the cached name information associated with the name to be invalidated has been invalidated, said indicating performed by the cache.
17. The method as set forth in
indicating a successful invalidation after the cache has indicated to the name server that the cached name information associated with the name to be invalidated has been invalidated, said indicating performed by the name server.
18. The method as set forth in
indicating a successful invalidation if the name server hashes the name to be invalidated and the data of the data structure indexed by the hash of the name to be invalidated has not been set, said indicating performed by the name server.
19. The method as set forth in
keeping the data set if there are entries left in the cache that map to the same data, said keeping performed by the name server.
20. The method as set forth in
|
1. Field the Invention
The present invention relates to the field of computer systems. More specifically, the present invention relates to directory caching in a distributed computer system.
2. Art Background
Operating systems spend significant time performing path name lookups to convert symbolic path names to file identifiers. In order to reduce the cost of name lookups, many systems have implemented name caching schemes.
Name lookup is an even larger problem in distributed systems, where a client machine may have to contact a file server across a network to perform the name lookup. Typically network file systems cache naming information on client workstations as well as on servers. This allows clients to perform most name lookups without contacting the server, thereby improving lookup speed by as much as an order of magnitude. In addition, client-level name caching reduces the load on the server and the network.
Distributed systems with a large number of workstations have a number of characteristics that can interfere with name caching. In a distributed environment, name caches on different machines must be kept consistent. This results in extra network messages and cost that is not required on a single time-shared system.
In a distributed environment, a very important overhead is the communication time involved in server requests. The actual operations on the server often take less time than the basic network communication. Name caching schemes typically require a separate server request for every component that is not in the name cache of the client, and typical path names contain several components. In contrast, a system without name passing can pass the entire path name to the server in a single operation (i.e., there can never be more than one server request per lookup). This means that an individual lookup operation can take substantially longer with a client-level cache than without one.
A name cache is usually accompanied by a separate cache of file attributes such as permissions, file size, etc. The attributes in the attribute cache are typically managed separately from entries in the name cache, resulting in additional server requests.
Some implementations of name caching use a whole-directory approach, meaning that they cache entire directories. This approach may not work well with load-sharing techniques where a single user spawns processes on several machines simultaneously. If those processes work in a single directory then there may be a substantial amount of overhead required to keep the cached directory consistent on the multiple machines. Similarly, highly shared directories such as the UNIX /tmp directory can also add to the overhead of maintaining cache consistency.
In a distributed system that provides access to remote directories, there is a need to maintain the names contained in the directories in a coherent fashion. Most name servers implement coherent caching using expiration timers. In such a scheme, the client can cache an entry only for a time interval T. The client either must renew the entry before the interval expires, or the entry must be discarded from the cache. When a server passes an entry to a client for caching, the server, in effect, makes a promise not to delete the entry on the server in the next T seconds.
Although the algorithm is easy to implement, it is not applicable for systems that need to create and delete entries very frequently. A UNIX directory is an example of a name server that cannot use such scheme because many files can be created or deleted each second, making caching based on expiration times a poor strategy. Systems that frequently create and delete entries cannot use the expiration timer based algorithms and must employ more complicated coherence protocols. Such protocols typically involve two-way communication between the client and server. This communication can be represented by a pair of objects called "provider" and "cache". The "provider" object on the server side handles the name lookup, creation, and deletion requests initiated by the client. The cache object on the client side responds to invalidate requests initiated by the server.
Typical solutions require memory storage at the server that is proportional to the number of directories (or even worse, proportional to the number of directories multiplied by the number of names in those directories). In the prior art, the server maintains perfect knowledge about each name that is looked up by each client and sends invalidates when need be on a per-name basis. This approach is not readily scalable, and can break down for large systems. That is, as a network becomes increasingly large, the amount of memory required to maintain directory coherency using perfect knowledge of the system becomes prohibitive. At the same time, directory coherency must be maintained if a single system image of the large system is to be preserved.
Thus, for a large system, a typical straightforward directory coherence scheme requires using a prohibitively large amount of memory to store information used to maintain the coherency. It is desirable, however, to maintain the correctness criterion of coherent access to directories for these large systems, but at the same time to reduce memory requirements over previous solutions.
A data structure such as a bit map is maintained by a provider object of a name server to keep track of names cached by a cache object of a client. The bit map is indexed by performing a hash of the name. When a name is looked up by the server on behalf of a client, the server hashes the name, and sets the bit in the bit map indexed by the result of the hash modulo the size of the bit map. The result of the hash is returned to the client and is stored with the entry in the cache.
A bit or the hash indicator "set" in the bit map indicates that the client caches at least one name that hashes into the bit. When the server invalidates a name, a hash of the name to be invalidated is used to find the corresponding bit in the bit map. If the bit is set, the server sends an invalidation request to the client. The invalidation request includes the result of the hash, and the size of the provider's bit map. The client invalidates all cached entries that hash into the specified bit in the bit map on the server.
Alternatively, the provider includes the name to invalidate in the invalidation request. The cache removes the name and sends back an indication if there are other names in the cache that map to the same bit. The provider clears the bit only if the cache indicates that no other cached entries map to the bit.
The size of the bit map is configurable such that the bigger the map, the more memory is used, but the lower the chance of invalidating additional entries, or sending an invalidation request when the client does not cache the entry.
This solution uses less memory than a conventional solution while maintaining coherency. Furthermore, the amount of memory used can be changed dynamically to select an optimal amount of memory for the bit map based on the number of entries in the directory.
The client does not need to be of the same CPU architecture as the server and the hashing function used on the server does not need to be known by the client.
The objects, features, and advantages of the method and apparatus of the present invention will be apparent from the following detailed description of the invention in which:
FIG. 1 illustrates a system that provides directory coherence through use of a bit map-based name server;
FIG. 2 illustrates a bit map having N bits that is used by a provider of the bit map-based name server;
FIG. 3 illustrates a bit map bit being set by the provider during a cache-originated directory lookup;
FIG. 4 illustrates the provider side of an object name invalidate operation that has been originated by an object name invalidate request issued to the provider by a foreign client; and,
FIG. 5 illustrates response by a cache to an object name invalidate command that has been issued by the provider as a result of the object name invalidate operation of the foreign client.
A method and apparatus for maintaining directory cache coherence is described. In the following description, for purposes of explanation, numerous details are set forth such as specific bit values, message paths, word sizes, etc., in order to provide a thorough understanding of the present invention. It will be apparent, however, to one skilled in the art that such specific details are not essential to the practice of the present invention. In particular, although the present invention will be described within a specific client and server system, it will be appreciated that the present invention is in no way limited to this particular system. As will be appreciated, the present invention finds application in any system requiring maintenance of directory cache coherence. In the description which follows, reference will be made to figures in which well known electrical structures and circuits are shown in block diagram form in order not to obscure the present invention unnecessarily.
FIG. 1 illustrates a system that provides directory coherence through use of provider objects using bit maps (data structures). Name server 110 provides directory coherency for clients 120, 140 and 160 of system 100 through the use of cache and provider object pairs. Thus, cache object 130 of client 120 operates in conjunction with provider object 135 of name server 110. Similarly, cache object 150 of client 140 operates in conjunction with provider object 155 and cache object 170 of client 160 operates in conjunction with provider object 175.
Each provider object of server 110 has a corresponding bit map that is used to keep information regarding object names cached by the cache of the provider. Thus, bit map 137 is maintained by provider object 135 to keep information regarding object names cached by cache 130. Similarly, bit map 147 is maintained by provider object 145 to keep information regarding object names cached by cache object 140 and bit map 177 is maintained by provider object 175 to keep information regarding object names cached by cache object 170.
A hash function is applied to an object name to form an index to bit maps 137, 157 or 177. The hash function receives an object name and returns an integer that is uniformly distributed over a range 0 through MAX-1, where MAX is some large integer number. MAX must be as large as the size of the maximum bitmap to be used.
When an index is to be determined, the operator modulo the size of the bit map is used to calculate the index:
index=hash (name) modulo bitmap13 size.
When a lookup by client 120 of an object name to be cached by cache object 130 is made to name server 110, provider object 135 hashes the object name, and sets a bit of bit map 137 indexed by the result of the hash. For one embodiment, a bit (hash indicator) is set by giving it the value "1" and reset (or cleared) by giving it the value "0". Alternately, a bit can be set by giving it the value "0" and reset (or cleared) by giving it the value "1".
Note that the indexed bit of bit map 137 may already be set. This can occur because a different object name in the directory has been looked up and the different object name also hashes to the same index.
Similarly, when a lookup by client 140 of an object name to be cached by cache object 150 is made to name server 110, provider object 155 hashes the object name, and sets a bit of bit map 157 indexed by the result of the hash. Also, when a lookup by client 160 of an object name to be cached by cache object 170 is made to name server 110, provider object 175 hashes the object name, and sets a bit of bit map 177 indexed by the result of the hash.
When invalidating an object name, the same hash is again applied to the name to be invalidated to find the corresponding bit in each bit map 137, 157 and 177. If the resulting bit is set, an invalidate command is set to the cache that is associated with the provider that has the bit set. After a response from the invalidate command is received by the provider, the bit in the bitmap is cleared. When client 120, 140 or 160 receives a request to invalidate a cached object name, their respective cache object 130, 150 or 170 invalidates all cached object names that hash to the to-be-cleared bit on the provider.
Note that an optimized implementation of the protocol usually avoids sending invalidation requests to the client that originated the invalidation. The originating client is responsible for the removal of the name from its local cache. For example, if client 120 wants to remove a name from the name server, the client sends the remove request to provider 135. Provider 135 performs the described invalidation protocol on all other providers (155 and 175). When client 120 receives a reply from the remove request, client 120 removes the name from its local cache 130.
Alternately, rather than sending the hash index to a client with the invalidate command, the invalidate command from server 110 includes the object name that is to be invalidated, in addition to hash result and bitmap size. In such a case, clients 120, 140 and 160 need only invalidate a cached object name if the cached object name corresponds to the name to be invalidated. This has the benefit that cached names that hash to the same index, but are not the same as the name to be invalidated, will not be invalidated. Therefore, these names will remain available in the cache. Note that if a client is caching a name that hashes to the same index as that of the object name to be invalidated, the client must notify server 110 so that the corresponding bit of bit map 137, 157 or 177 will not be reset. This ensures that a later request from a client to invalidate the other object name will cause server 110 to issue an invalidate command for that name when it is hashed to the set bit.
Thus, bit maps 137, 157 and 177 are used to relax the requirement that server 110 maintain perfect knowledge about each name that is cached by each client 120, 140 and 160. Therefore, a less accurate picture of cached names is maintained by server 110 and a resulting memory savings is achieved. Note, however, that server 110 still maintains cached names in a coherent fashion, there is no sacrifice of correctness. The bit mapped solution may generate more false invalidate messages than solutions that maintain perfect knowledge at server 110. By configuring the amount of memory used in the data structure of bit maps 137, 157 and 177, however, the probability of extra messages can be made as small as is required. As the size of a bit map is increased, more memory is used, but the chance of a false invalidate is lessened. This is because, on average, fewer names will hash to the same bit of the bit map.
Even in the worst case wherein the bit map is so large that every object name maps to a different bit of the bit map, the bit map solution uses much less memory than a conventional solution. This is because information regarding caching for each object name takes at most a single bit of memory. In a conventional solution, each object name is stored by the server and requires several bytes to store. For example, in the case where each object name can be up to ten characters long, storage of each object name would require at least ten bytes (i.e., 80 bits). Therefore, if ten-character object names are permitted, the worst case bit mapped solution represents a memory savings of between one and two orders of magnitude over the conventional approach. At the same time the bit mapped approach maintains complete directory coherency and performs comparably to the conventional approach.
For one embodiment, the size of the bit map is dynamically configurable. The server can change the size of bitmap during operation without notifying the client. Typically, the size is doubled, or reduced to half. The bigger the map, the more memory is used, but the lower the chance of a false invalidate command. Thus, by making the bit map size configurable, one can tune the directory lookup system to meet the specific needs of a particular system. In the case where conserving memory is paramount, a small bit map can be used. The use of a small bit map comes at the expense of decreased system performance, however, due to a possibly large amount of false invalidate commands being issued. On the other hand, in the case where system performance is paramount, a large bit map can be used. This will increase memory required to provide coherent directory caching, but will decrease (or possibly eliminate) the occurrence of false invalidate commands.
For one embodiment each bit map 137, 157 and 177 of server 110 has the same sized. In this case, a single hash for a name can be performed by server 110 and then the resulting hash index can be used by provider objects 135, 155 and 175 to index bit map 137, 157 and 177, respectively. Alternately, one or more of the bit maps of server 110 can have a different size than the other bit maps. This may result in the same name hashing to different bits within the different sized bit maps. In such a case, hashing is performed by each provider object, rather than a single hash being performed by the server 110.
For another embodiment, each of clients 120, 140 and 160 is located on a different node of a computer network. For this embodiment, each node of network 100 can be a single processor computer, a co-processor computer or a multiple computer system. In the case wherein a node is formed from multiple computers, the computers can be of the same type, or the node can be formed from two or more types of computers.
Alternately, two or more clients of clients 120, 140 and 160 can be located on the same node of a network, or on the same computer. Thus, in general a client and server do not have to be on different nodes. For example, two or more clients could be on the same computer, or node, with each client corresponding to a different program, and each of the different programs having its own address space that is different from the address space of the other programs.
For one embodiment a system 100 uses the Solaris operating system and hashing is implemented using a program written in the C++ computer language. The following hashing algorithm is used for this embodiment:
______________________________________ |
// |
// Hash a name. The function was taken from "Aho A., Sethi R., Ullman J. |
// Compilers - principals, techniques, and tools. Addison-Wesley 1985, |
// page 436". |
// u-- long |
pxfslib::hashpjw (const char *nm) |
int len = os::strlen (nm); |
u-- long |
h = len; |
u-- long |
c; |
for (u-- char *p = (u-- char*) nm; (c = *p) | = `\0`; |
p++) { |
u -- int g; |
h = (h << 4) + c; |
if ((g = (h & 0xf0000000)) | = 0) { |
h = (g >> 24); |
h = g; |
{ |
{ |
return (h % 65599 + h % 211); |
{ |
______________________________________ |
Alternately, another operating system, another computer language, or even another hashing scheme can be employed.
FIG. 2 illustrates a bit map having N bits that is used by a provider of the bit map-based name server. Thus, bit map 200 includes bit (1) 210, bit (2) 220, bit (3), 230, . . . bit (9) 240, bit (10) 250, bit (11) 260, . . . and bit (N) 270. Each bit of bit map 200 is initially cleared.
When a name is looked up to be added to a cache, a hash of the name is performed, operator modulo bitmap size is applied, to yield an index into bit map 200. The particular bit indexed is then set to indicate that the name has been added to the cache. Thus, for example, HASH (NAME) 280 indexes into bit (10) 250 of bit map 200. Therefore, bit (10) 250 would be set when NAME was looked up and added to the cache associated with bit map 200.
FIG. 3 illustrates a bit map bit being set by the provider during a cache-originated directory lookup. Procedure 300 begins at bubble 310. In block 320, the client requests a name lookup. The provider hashes the name in block 330. The provider then sets the bit map bit indexed by the hash in block 340 before finishing in bubble 350.
Returning to FIG. 2, if an invalidate request is made for NAME, a second hashing will be performed. HASH (NAME) 280 will again index into bit (10) 250 of bit map 200. Bit (10) 250 was previously set to indicate that NAME was looked up and added to the cache associated with bit map 200. Therefore, because bit (10) 250 is set, an invalidate command is then be issued to cause NAME to be removed from the cache associated with bit map 200. Upon notification that the invalidation has occurred, bit (10) 250 is reset.
FIG. 4 illustrates the provider side of an object name invalidate operation that has been originated by an object name invalidate request issued to the provider by a foreign client. Procedure 400 begins at bubble 410. In block 420, a foreign client requests that the provider cause its associated cache to invalidate a name cached therein. The provider hashes the name in block 430. The provider then determines in decision block 440 whether or not the bit map bit indexed by the hash of block 430 has been set. If the bit has not been set, then the cache does not contain the name to be invalidated. In such a case, path NO 444 is taken to block 450 where the provider indicates that the invalidation is complete before finishing in bubble 460.
On the other hand, if the bit has been set, then the cache may contain the name to be invalidated. In such a case, path YES 442 is taken to block 470 where the provider instructs the associated cache, i.e., the cache object associated with the provider, that an invalidate may be required. For one embodiment, the cache invalidates each cached name that hashes to the set bit and then informs the provider that the invalidation has been performed. For this embodiment, each cached name that hashes to the set bit is stored in the same "bucket", e.g., a linked list. This makes it possible for the cache to efficiently locate and invalidate each cached name that hashes to the set bit. The provider then resets the bit in block 480, before proceeding to block 470. As was the case previously, the provider indicates in block 470 that the invalidation is complete before finishing in bubble 460.
Note that in an alternate case, the particular name to be invalidated will be specified to the cache by the provider. Then, in block 470, rather than invalidating each cached name that hashes to the set bit, the cache will only invalidate the cached name specified by the provider (if this name is stored in the cache). The cache will indicate to the provider whether any other names that hash to the same index as the name to be invalidated are also cached. In this case, the provider will only reset the bit in block 480 if there are no other names that are still stored in the cache that hash to the same bit.
FIG. 5 illustrates response by a cache to an invalidate command that has been issued by the provider as a result of the object name remove operation of another client. Procedure 500 begins at bubble 510. In block 520, the cache receives an invalidate command from its associated provider. The command contains the hash result on the name to be invalidated and the size of the providers bit mask. In block 540, the cache uses the hash result to locate all the cached names that map into the specified bit. All names that map to the specified bit are invalidated from the cache in block 540. The control then moves directly to block 560 through path 551. In block 560 the cache sends a response to the provider informing that all entries that map to the specified bit has been removed. Blocks 550 and 580 are not used in this path.
Alternately the invalidation request includes the name to be invalidated. In block 540 the cache finds all cached entries that map into the specified bit. Then decision block 550 is applied to all the entries found in block 540. In decision block 550, each entry is compared to the name to be invalidated. If the name matches, the path YES 552 is taken. In block 580, the matching entry is removed from the cache. If the name does not match in block 550, it is not removed from the cache. Block 550 is applied until all entries found in block 540 are processed. Then path DONE 556 to block 560 is taken. The message sent to provider in block 560 includes the indication whether the cache still has other entries that map to the specified bit. The presence of other entries was determined during the processing done in blocks 540, 550, and 580.
Although the present invention has been particularly described with reference to FIGS. 1 through 5, it should be understood that these figures are for illustration only and should not be taken as limitations upon the invention. Furthermore, although the present invention has been described as being advantageously implemented to provide directory coherence in distributed networks, the above described bit map-based client and server object approach can be utilized to maintain information coherency across any boundaries. It is further contemplated that many changes and modifications may be made to the invention, by one of ordinary skill in the art, without departing from the spirit and scope of the invention as disclosed herein.
Khalidi, Yousef A., Matena, Vladimir, Bernabeu-Auban, Jose M., Shirriff, Kenneth W., Thadani, Moti N.
Patent | Priority | Assignee | Title |
6134603, | Feb 26 1998 | Oracle America, Inc | Method and system for deterministic hashes to identify remote methods |
6157942, | Aug 13 1997 | Microsoft Technology Licensing, LLC | Imprecise caching of directory download responses for dynamic directory services |
6226746, | Mar 20 1998 | Oracle America, Inc | Stack-based system and method to combine security requirements of methods |
6237009, | Sep 11 1998 | Sun Microsystems, Inc | Lease renewal service |
6237024, | Mar 20 1998 | Oracle America, Inc | Method and apparatus for the suspension and continuation of remote processes |
6243716, | Oct 11 1996 | Sun Microsystems, Inc. | Methods and systems for distributed failure detection and recovery using leasing |
6247026, | Oct 11 1996 | Sun Microsystems, Inc | Method, apparatus, and product for leasing of delegation certificates in a distributed system |
6253256, | Oct 15 1997 | Oracle America, Inc | Deferred reconstruction of objects and remote loading in a distributed system |
6272559, | Oct 15 1997 | Oracle America, Inc | Deferred reconstruction of objects and remote loading for event notification in a distributed system |
6289464, | Jan 07 1998 | Microsoft Technology Licensing, LLC | Receiving wireless information on a mobile device with reduced power consumption |
6314435, | Oct 11 1996 | Sun Microsystems, Inc | Methods, apparatus, and product for distributed garbage collection |
6327596, | Sep 11 1998 | Sun Microsystems, Inc. | Methods, apparatus, and product for distributed garbage collection |
6389540, | Feb 26 1998 | Sun Microsystems, Inc. | Stack based access control using code and executor identifiers |
6393497, | Mar 20 1998 | Oracle America, Inc | Downloadable smart proxies for performing processing associated with a remote procedure call in a distributed system |
6421704, | Mar 20 1998 | Sun Microsystems, Inc | Method, apparatus, and product for leasing of group membership in a distributed system |
6438614, | Mar 20 1998 | Oracle America, Inc | Polymorphic token based control |
6442654, | Dec 10 1999 | International Business Machines Corporation | Operating system support for in-server caching of documents |
6446070, | Feb 26 1998 | Oracle America, Inc | Method and apparatus for dynamic distributed computing over a network |
6449648, | Oct 11 1996 | Sun Microsystems, Inc. | Lease renewal service |
6463446, | Feb 26 1998 | Oracle America, Inc | Method and apparatus for transporting behavior in an event-based distributed system |
6466947, | Mar 20 1998 | Oracle America, Inc | Apparatus and method for dynamically verifying information in a distributed system |
6480863, | Nov 17 1997 | Sun Microsystems, Inc. | Method and system for multi-entry and multi-template matching in a database |
6487607, | Feb 26 1998 | Oracle America, Inc | Methods and apparatus for remote method invocation |
6519615, | Oct 11 1996 | Sun Microsystems, Inc. | Method and system for leasing storage |
6532490, | Nov 10 1999 | Bellsouth Intellectual Property Corporation | Methods and elements to reduce the number of quieries to a foreign network element |
6560656, | Feb 26 1998 | Oracle America, Inc | Apparatus and method for providing downloadable code for use in communicating with a device in a distributed system |
6564240, | Oct 11 1996 | Sun Microsystems, Inc. | Method, apparatus, and product for leasing of group membership in a distributed system |
6567820, | Nov 17 1997 | Sun Microsystems, Inc. | Method and system for in-place modifications in a database |
6578044, | Nov 17 1997 | Oracle America, Inc | Method and system for typesafe attribute matching |
6598094, | Mar 20 1998 | Oracle America, Inc | Method and apparatus for determining status of remote objects in a distributed system |
6604127, | Mar 20 1998 | Dynamic lookup service in distributed system | |
6643650, | May 09 2000 | Oracle America, Inc | Mechanism and apparatus for using messages to look up documents stored in spaces in a distributed computing environment |
6654793, | Apr 23 1996 | Sun Microsystems, Inc. | System and method for facilitating dynamic loading of stub information to enable a program operating in one address space to invoke processing of a remote method or procedure in another address space |
6704756, | Oct 11 1996 | Sun Microsystems, Inc. | Methods, apparatus, and product for distributed garbage collection |
6708171, | Apr 23 1996 | Oracle America, Inc | Network proxy |
6728737, | Oct 11 1996 | Sun Microsystems, Inc. | Method and system for leasing storage |
6760736, | Oct 11 1996 | Sun Microsystems, Inc. | Methods and systems for distributed failure detection and recovery using leasing techniques |
6760815, | Jun 02 2000 | Oracle America, Inc | Caching mechanism for a virtual heap |
6763440, | Jun 02 2000 | Oracle America, Inc | Garbage collection using nursery regions for new objects in a virtual heap |
6789077, | May 09 2000 | Oracle America, Inc | Mechanism and apparatus for web-based searching of URI-addressable repositories in a distributed computing environment |
6789126, | May 09 2000 | Oracle America, Inc | Addressing message gates in a distributed computing environment |
6792466, | May 09 2000 | Oracle America, Inc | Trusted construction of message endpoints in a distributed computing environment |
6816875, | Oct 11 1996 | Methods, apparatus, and product for distributed garbage collection | |
6832223, | Apr 23 1996 | Oracle America, Inc | Method and system for facilitating access to a lookup service |
6850979, | May 09 2000 | Oracle America, Inc | Message gates in a distributed computing environment |
6854115, | Jun 02 2000 | Oracle America, Inc | Process persistence in a virtual machine |
6862594, | May 09 2000 | Oracle America, Inc | Method and apparatus to discover services using flexible search criteria |
6865657, | Jun 02 2000 | Oracle America, Inc | Garbage collector for a virtual heap |
6868447, | May 09 2000 | Oracle America, Inc | Mechanism and apparatus for returning results of services in a distributed computing environment |
6874066, | Jun 02 2000 | Sun Microsystems, Inc. | Caching mechanism for a virtual heap |
6877163, | Jun 14 1999 | Oracle America, Inc | Method and system for dynamic proxy classes |
6898618, | May 09 2000 | Oracle America, Inc | Client-specified display services in a distributed computing environment |
6901518, | Apr 08 1999 | Oracle America, Inc | Method and system for establishing trust in downloaded proxy code |
6917976, | May 09 2000 | Oracle America, Inc | Message-based leasing of resources in a distributed computing environment |
6918084, | May 09 2000 | Oracle America, Inc | Spawning new repository spaces using information provided in advertisement schema messages |
6925644, | Oct 11 1996 | Sun Microsystems, Inc. | Method, apparatus, and product for leasing of group membership in a distributed system |
6934758, | Dec 11 1997 | Sun Microsystems, Inc. | Stack-based access control using code and executor identifiers |
6938263, | Apr 23 1996 | Oracle America, Inc | SYSTEM AND METHOD FOR FACILITATING DYNAMIC LOADING OF “STUB” INFORMATION TO ENABLE A PROGRAM OPERATING IN ONE ADDRESS SPACE TO INVOKE PROCESSING OF A REMOTE METHOD OR PROCEDURE IN ANOTHER ADDRESS SPACE |
6950875, | May 09 2000 | Oracle America, Inc | Message conductors in a distributed computing environment |
6957237, | Jun 02 2000 | Oracle America, Inc | Database store for a virtual heap |
6957427, | Oct 15 1997 | Oracle America, Inc | Remote object activation in a distributed system |
6970869, | May 09 2000 | Oracle America, Inc | Method and apparatus to discover services and negotiate capabilities |
6973493, | May 09 2000 | Oracle America, Inc | Mechanism and apparatus for security of newly spawned repository spaces in a distributed computing environment |
7010573, | May 09 2000 | Oracle America, Inc | Message gates using a shared transport in a distributed computing environment |
7016966, | May 09 2000 | Oracle America, Inc | Generating results gates in a distributed computing environment |
7051166, | Apr 21 2003 | VALTRUS INNOVATIONS LIMITED | Directory-based cache coherency scheme for reducing memory bandwidth loss |
7058954, | Apr 23 1996 | Sun Microsystems, Inc. | System and method for facilitating dynamic loading of stub information to enable a program operating in one address space to invoke processing of a remote method or procedure in another space |
7065574, | May 09 2000 | Oracle America, Inc | Messaging system using pairs of message gates in a distributed computing environment |
7072967, | May 09 2000 | Oracle America, Inc | Efficient construction of message endpoints |
7080078, | May 09 2000 | Oracle America, Inc | Mechanism and apparatus for URI-addressable repositories of service advertisements and other content in a distributed computing environment |
7120747, | Mar 15 2004 | International Business Machines Corporation | Lower overhead shared cache invalidations |
7188251, | May 09 2000 | Oracle America, Inc | System and method for secure message-based leasing of resources in a distributed computing environment |
7197622, | Dec 20 2000 | Telefonaktiebolaget LM Ericsson | Efficient mapping of signal elements to a limited range of identifiers |
7200848, | May 09 2000 | Oracle America, Inc | Migrating processes using data representation language representations of the processes in a distributed computing environment |
7210148, | Feb 26 1998 | Sun Microsystems, Inc. | Method and apparatus for dynamic distributed computing over a network |
7225219, | Nov 29 2000 | AUGUR VISION, INC | Distributed caching architecture for computer networks |
7243356, | May 09 2000 | Oracle America, Inc | Remote method invocation with secure messaging in a distributed computing environment |
7260543, | May 09 2000 | Oracle America, Inc | Automatic lease renewal with message gates in a distributed computing environment |
7296275, | Jan 04 2001 | Oracle America, Inc | Method and system for passing objects in a distributed system using serialization contexts |
7370091, | May 09 2000 | Oracle America, Inc | Method and apparatus for obtaining space advertisements |
7386684, | Mar 29 2005 | International Business Machines Corporation | Method and apparatus for detecting a cache wrap condition |
7395333, | May 09 2000 | Oracle America, Inc | Method and apparatus to obtain negotiated service advertisement |
7398533, | May 09 2000 | Oracle America, Inc | Remote function invocation with messaging in a distributed computing environment |
7412518, | May 09 2000 | Oracle America, Inc | Method and apparatus for proximity discovery of services |
7426721, | May 09 2000 | Oracle America, Inc | Transformation of objects between a computer programming language and a data representation language |
7444644, | May 09 2000 | Oracle America, Inc | Secure access of objects generated from data representation language representations of the objects in a distributed computing environment |
7458082, | May 09 2000 | Oracle America, Inc | Bridging between a data representation language message-based distributed computing environment and other computing environments using proxy service |
7509360, | Oct 11 1996 | Sun Microsystems, Inc. | Methods, apparatus, and product for distributed garbage collection |
7548946, | May 09 2000 | Oracle America, Inc | Pre-generated message endpoints |
7577834, | May 09 2000 | Oracle America, Inc | Message authentication using message gates in a distributed computing environment |
7617366, | Mar 29 2005 | International Business Machines Corporation | Method and apparatus for filtering snoop requests using mulitiple snoop caches |
7660887, | Sep 07 2001 | Oracle America, Inc | Systems and methods for providing dynamic quality of service for a distributed system |
7716492, | May 09 2000 | Oracle America, Inc | Method and apparatus to obtain service capability credentials |
7734747, | Feb 26 1998 | Oracle America, Inc. | Dynamic lookup service in a distributed system |
7756969, | Sep 07 2001 | Oracle America, Inc | Dynamic provisioning of identification services in a distributed system |
7792874, | Jan 30 2004 | Oracle America, Inc | Dynamic provisioning for filtering and consolidating events |
7814129, | Mar 11 2005 | Quantum Corporation | Method and apparatus for storing data with reduced redundancy using data clusters |
7966292, | Jun 30 2005 | EMC IP HOLDING COMPANY LLC | Index processing |
8001232, | May 09 2000 | Oracle America, Inc | Event message endpoints in a distributed computing environment |
8051252, | Mar 11 2005 | Quantum Corporation | Method and apparatus for detecting the presence of subblocks in a reduced-redundancy storage system |
8082491, | May 09 2000 | Oracle America, Inc | Dynamic displays in a distributed computing environment |
8135796, | May 09 2000 | Oracle America, Inc | Mechanism and apparatus for accessing and addressing services in a distributed computing environment |
8156079, | Jun 30 2005 | EMC IP HOLDING COMPANY LLC | System and method for index processing |
8161005, | Jun 30 2005 | EMC IP HOLDING COMPANY LLC | Efficient index processing |
8214607, | Mar 11 2005 | Quantum Corporation | Method and apparatus for detecting the presence of subblocks in a reduced-redundancy storage system |
8356021, | Mar 11 2005 | Quantum Corporation | Method and apparatus for indexing in a reduced-redundancy storage system |
8713089, | Feb 26 1998 | Oracle America, Inc. | Dynamic lookup service in a distributed system |
8938428, | Apr 16 2012 | EMC IP HOLDING COMPANY LLC | Systems and methods for efficiently locating object names in a large index of records containing object names |
9110711, | May 09 2000 | Oracle International Corporation | Dynamic displays in a distributed computing environment |
9183066, | Mar 20 1998 | Oracle America, Inc | Downloadable smart proxies for performing processing associated with a remote procedure call in a distributed system |
9501410, | Mar 15 2013 | Veritas Technologies LLC | Providing local cache coherency in a shared storage environment |
9747340, | Jun 19 2008 | Microsoft Technology Licensing, LLC | Method and system of using a local hosted cache and cryptographic hash functions to reduce network traffic |
Patent | Priority | Assignee | Title |
4887204, | Feb 13 1987 | International Business Machines Corporation | System and method for accessing remote files in a distributed networking environment |
5151989, | Feb 13 1987 | International Business Machines Corporation | Directory cache management in a distributed data processing system |
5265245, | Apr 17 1989 | International Business Machines Corporation | High concurrency in use manager |
5434914, | Dec 31 1992 | FRASER RESEARCH, INC | Name translation in communications networks |
5495608, | Feb 27 1990 | Oracle International Corporation | Dynamic index retrieval, bit mapping, and optimization of a single relation access |
5537574, | Dec 14 1990 | INTERNATIONAL BUSINESS MACHINES CORPORATION A CORP OF NEW YORK | Sysplex shared data coherency method |
5581704, | Dec 06 1993 | Panasonic Corporation of North America | System for maintaining data coherency in cache memory by periodically broadcasting invalidation reports from server to client |
5604882, | Aug 27 1993 | International Business Machines Corporation | System and method for empty notification from peer cache units to global storage control unit in a multiprocessor data processing system |
Executed on | Assignor | Assignee | Conveyance | Frame | Reel | Doc |
Nov 22 1995 | Sun Microsystems, Inc. | (assignment on the face of the patent) | / | |||
Mar 22 1996 | SHIRRIFF, KENNETH W | Sun Microsystems, Inc | ASSIGNMENT OF ASSIGNORS INTEREST SEE DOCUMENT FOR DETAILS | 008092 | /0514 | |
Mar 22 1996 | THADANI, MOTI N | Sun Microsystems, Inc | ASSIGNMENT OF ASSIGNORS INTEREST SEE DOCUMENT FOR DETAILS | 008092 | /0514 | |
Mar 22 1996 | MATENA, VLADIMIR | Sun Microsystems, Inc | ASSIGNMENT OF ASSIGNORS INTEREST SEE DOCUMENT FOR DETAILS | 008092 | /0514 | |
Mar 22 1996 | BERNABEU-AUBAN, JOSE | Sun Microsystems, Inc | ASSIGNMENT OF ASSIGNORS INTEREST SEE DOCUMENT FOR DETAILS | 008092 | /0514 | |
Mar 22 1996 | KHALIDI, YOUSEF A | Sun Microsystems, Inc | ASSIGNMENT OF ASSIGNORS INTEREST SEE DOCUMENT FOR DETAILS | 008092 | /0514 | |
Feb 12 2010 | ORACLE USA, INC | Oracle America, Inc | MERGER AND CHANGE OF NAME SEE DOCUMENT FOR DETAILS | 037270 | /0148 | |
Feb 12 2010 | Sun Microsystems, Inc | Oracle America, Inc | MERGER AND CHANGE OF NAME SEE DOCUMENT FOR DETAILS | 037270 | /0148 | |
Feb 12 2010 | Oracle America, Inc | Oracle America, Inc | MERGER AND CHANGE OF NAME SEE DOCUMENT FOR DETAILS | 037270 | /0148 |
Date | Maintenance Fee Events |
Jul 12 2002 | M183: Payment of Maintenance Fee, 4th Year, Large Entity. |
Jul 30 2002 | REM: Maintenance Fee Reminder Mailed. |
Mar 24 2003 | ASPN: Payor Number Assigned. |
Jun 16 2006 | M1552: Payment of Maintenance Fee, 8th Year, Large Entity. |
Jun 09 2010 | M1553: Payment of Maintenance Fee, 12th Year, Large Entity. |
Date | Maintenance Schedule |
Jan 12 2002 | 4 years fee payment window open |
Jul 12 2002 | 6 months grace period start (w surcharge) |
Jan 12 2003 | patent expiry (for year 4) |
Jan 12 2005 | 2 years to revive unintentionally abandoned end. (for year 4) |
Jan 12 2006 | 8 years fee payment window open |
Jul 12 2006 | 6 months grace period start (w surcharge) |
Jan 12 2007 | patent expiry (for year 8) |
Jan 12 2009 | 2 years to revive unintentionally abandoned end. (for year 8) |
Jan 12 2010 | 12 years fee payment window open |
Jul 12 2010 | 6 months grace period start (w surcharge) |
Jan 12 2011 | patent expiry (for year 12) |
Jan 12 2013 | 2 years to revive unintentionally abandoned end. (for year 12) |