A computer computational environment can be set up as an actor system with programmed actors operating concurrently with respect to each other. Messages can be sent between actors to update a state of one of the actors, to request information about one of the actors, to create new actors and the like. The actors can operate independently of each other and the messages sent between actors can alter the way that the actors operate. The actor system can be hosted by a single computing device or hosted in a distributed system over multiple computing devices.
Throughout the drawings, reference numbers may be re-used to indicate correspondence between referenced elements. The drawings are provided to illustrate example embodiments described herein and are not intended to limit the scope of the disclosure.
An actor system in computer science is a mathematical model of concurrent computation that treats “actors” as the universal primitives of concurrent digital computation: in response to a message that it receives, an actor can make local decisions, create more actors, send more messages, and determine how to respond to the next message received. It has been used both as a framework for a theoretical understanding of computation, and as the theoretical basis for several practical implementations of concurrent systems.
The actor model typically operates under the notion that everything is an actor. This is similar to the philosophy used by some object-oriented programming languages, but differs in that object-oriented software is typically executed sequentially, while the actors in an actor system can operate concurrently.
An actor is a computational entity that, in response to a message it receives, can concurrently, among other actions, send messages to other actors, create new actors, or designate the behavior to be used for the next message it receives. There is no assumed sequence to these actions and they could be carried out in parallel. Messages sent within an actor system may not identify the sender of the message so that the actor system can call for asynchronous communication and control structures as patterns of passing messages. Instead, recipients of messages are identified by address, sometimes called a “mailing address.” One actor may be able to communicate only with other actors when it knows the other actors' mailing addresses. An actor can be aware of an address of another actor by obtaining the address from a message, by creating the other actor, and the like.
The actor system can include concurrent computation within and among actors, dynamic creation of actors, inclusion of actor addresses in messages, and interaction through direct asynchronous message passing with no restriction on message arrival order.
An actor system can be used as a framework for modeling, understanding and reasoning about a wide range of concurrent systems. In one example, an email system can be modeled as an actor system. Accounts can be modeled as actors and email addresses as actor addresses. Other aspects of the email system, such as an account's contact list, an account's settings and the like, can also be modeled as actors separate from the account actor. In another example, web services can be modeled with simple object access protocol endpoints modeled as actor addresses. In another example, programming objects with locks (such as in Java and C#) can be modeled as a serializer if their implementations permit messages to continually arrive. A serializer can be an actor defined by a property that it is continually available to the arrival of new messages (i.e., every message sent to a serializer is guaranteed to arrive). In yet another example, testing and test control notation (TTCN), such as TTCN-2 and TTCN-3, can follow actor systems rather closely. In TTCN, an actor can be a test component: either parallel test component (PTC) or main test component (MTC). Test components can send and receive messages to and from remote partners (peer test components or test system interface).
In a further example, a gaming system can be modeled as an actor system. Each of the characters in a gaming system can be an actor. The gaming system can include an environment in which multiple characters operate independently in a common environment, such as in WORLD OF WARCRAFT and other similar games. In this case, the characters can operate concurrently and independently and the corresponding actors (i.e., the programming actors) can be executing concurrently and independently of each other. The gaming system can also include other actors, such as an actor representing an inventory of items associated with each of the characters, an actor representing characteristics of each of the characters (e.g., skills, abilities, health, etc.), and the like. While a number of examples of actor systems are described below in the context of a gaming system, it should be understood that the examples can be similarly applied in any actor system.
Because actors in an actor system communicate messages to each other, the actor system will route messages between the actors. As the number of actors in the actor system increases, so too can the number of messages sent between actors. If every actor in an actor system communicated with every other actor in the actor system, a linear increase in the number of actors may result in an exponential increase in the number of messages handled within the actor system. The routing of large numbers of messages and the time that messages take to be sent between actors can cause latency in the actor system.
The computing device 110 includes a management service 111. The management service 111 can manage the actors 112a to 112n located on the computing device 110, manage the creation of new actors on the computing device 110, manage the deletion of actors from computing device 110, route communications to and from actors on the computing device 110, transfer actors from the computing device 110 to another computing device or server, receive and host actors transferred from other computing devices or servers to the computing device 110 and the like. In the depiction shown in
In peer-to-peer computing environment 100, when actors in different computing devices pass messages between each other, the messages are routed via the network 140. For example, a message sent from actor 112a to actor 122n will be sent from computing device 110 to network 140 via communication link 114 and then from the network 140 to the computing device 120 via the communication link 124. In another example, a message sent from actor 132a to actor 112n will be sent from computing device 130 to network 140 via communication link 134 and then from the network 140 to the computing device 110 via the communication link 114. In yet another example, a message sent from actor 112a to actor 112n will be passed within the computing device 110.
Using the examples from the preceding paragraph, it is apparent that certain pairs of actors can be “closer” to each other than other pairs of actors. In this context, actors are considered “close” or “far” depending on the speed with which messages can be communicated between them. Among the three examples described in the preceding paragraph, actors 112a and 112n may be considered the closest of the three examples if communicating messages within computing device 110 is faster than communicating messages via the network 140. If both of the communication link 114 and the communication link 124 are high-speed communication links and communication link 134 is a low-speed communication link, then actors 112a and 122n may be closer to each other than actors 132a and 112n because messages communicated between actors 112a and 122n may be faster via the high-speed communication links 114 and 124 than messages communicated via high-speed communication links 114 and low-speed communication link 134.
One issue with the messages sent between actors in the peer-to-peer computing environment 100 is the latency incurred by communicating messages between different computing devices. While delays due to communicating messages across network(s) 140 may be on the order of a few seconds, such delays can be noticeable to users of the various computing devices. Moreover, while only three computing devices 110, 120, and 130 are depicted in
The computing environment 200 also includes an actor server system 250 in communication with network 240. The actor server system 250 can include one or more servers that host actors in the server-based actor system. In the specific example depicted in
Placing actors of an actor system within an actor server system can reduce latency in sending messages between the actors. For example, with actors 212a to 212n, 222a to 222n and 232a to 232n hosted by the actor server system 250, messages sent between any two of the actors 212a to 212n, 222a to 222n and 232a to 232n will be sent within the actor server system 250. While it may take some time to send and receive messages between actors in the actor server system 250, the latency from sending messages can be reduced. For example, messages sent by actors within the actor server system 250 do not need to be sent via the network 240. In this way, the speed of sending messages is not limited by the speed of any communication link with the network 240 or the speed of communicating within network 240.
While all of the messages sent between actors 212a to 212n, 222a to 222n and 232a to 232n can be sent within the actor server system 250, computing devices 210, 220 and 230 can still interact with the actor system. For example, in the case where the actor system is a gaming system and one of the actors hosted by the actor server system 250 may be associated with a character of a user of computing device 210. The user may input controls and commands into the remote computing device which are communicated from the computing device 210 to the actor server system 250 via the network 240. The actor server system 250 can modify the actor associated with the user's character based on those controls and commands. The actor server system 250 can also modify other actors based on those controls and commands (e.g., modify an actor associated with an inventory of the user's character, modify an actor associated with another character that is interacting with the user's character, etc.). Similarly, the actor server system 250 can send back information about the actor system environment back to the computing device 210. The information sent back to the computing device 210 from the actor server system 250 can include information for the computing device 210 to be able to render updated actors properly (e.g., updates in particular characters, changes in a character's inventory, etc.). The actor server system 250 may also perform all of the processing needed to update the environment from the perspective of the user, and the information sent back to the computing device 210 from the actor server system 250 can include information for the computing device 210 to render the environment to the user.
The security service 260 can ensure that messages passed between actors across the network 240 are communicated in a secure fashion, such as by encrypting the messages using a security protocol. The security service 260 can also ensure that the messages sent by actors on the computing devices 210, 220 and 230 do not perform an actions that are not allowed by the actor system. Because the actors on the computing devices 210, 220 and 230 are not under the control of the actor server system 250, there could be concern that those actors could be programmed to perform malicious functions or other functions that would be improper. For example, in an gaming scenario where characters can earn money, an actor 212z on computing device 210 may send a message to an actor in the actor server system 250 that would attempt to give a character money that was not earned by that character. Since it would be improper to for the actor 212z to perform such a money-transfer function, the security service 260 can intercept such messages to prevent the money-transfer function from occurring. In the depiction of
In the particular embodiment shown in
The actor server system 300 can also include a number of communication links. Server rack 310 includes a number of intra-rack communication link(s) 311 that permit communication between each of the servers 320, 330 and 340 that are located on the server rack 310. Server rack 350 includes a number of intra-rack communication link(s) 351 that permit communication between each of the servers 360, 370 and 380 that are located on the server rack 350. The actor server system 300 also includes inter-rack communication link(s) 301 that permit communication between different server racks and permit communication between the server racks and an external network 390. The external network 390 can include a local area network (LAN), the Internet or any other type of network. In some embodiments, actors in the actor system can also be hosted by servers that are outside of the actor server system 300. In this case, actors can be hosted by an external system 395. The external system 395 can be a computing device, server or another actor server system that is in communication with the external network 390.
Communicating messages between two actors in the actor system shown in
Using the examples from the previous paragraph, the closeness of one actor to other actors can be understood. Closeness of one actor to other actors can be determined based on the time taken to communicate messages from the one actor to the other actors or the rate of communication between one actor and the other actors. The actor 321a is closest to the other actor(s) on server 320, such as actor 321n, because communications between the actor 321a and the other actor(s) on server 320 occur at the fastest rate in this example. The actor 321a is next closest to the actor(s) on other server(s) within the server rack 310, such as actor 331a on server 330 and actor 341a on server 340, because communications between the actor 321a and the other actor(s) on other server(s) within the server rack 310 occur at the second fastest rate in this example. The actor 321a is next closest to the actor(s) on other server(s) within other server rack(s) within the actor server system 300, such as actor 361a on server 360 and actor 371a on server 370 in server rack 350, because communications between the actor 321a and the other actor(s) on other server(s) within other server rack(s) within the actor server system 300 occur at the third fastest rate in this example. The actor 321a is furthest from the actor(s) on the external system 395 because communications between the actor 321a and actor(s) on the external system 395 occur at the slowest rate in this example.
The closeness of actors to each other and the differences in communication speeds are not limited to those depicted in
The server 410 includes a management service 411 and actors 412-414. The management service 411 can manage the actors 412-414 located within server 410, manage the creation of new actors within server 410, manage the deletion of actors from server 410, route communications to and from actors on the server 410, transfer actors from the server 410 to another server, receive and host actors transferred from other servers to the server 410 and the like. The server 420 includes a management service 421 and actors 422-424. The server 430 includes a management service 431 and actors 432-434. The management services 421 and 431 can provide similar functionality for their respective servers 420 and 430, as was described with respect to the functionality of management service 411 for its server 410.
The management services 411, 421 and 431 can maintain a log of the messages sent from and received by the actors on their respective servers 410, 420 and 430. For example, management service 411 can maintain a log that includes an indication of the number of times that actor 412 has received a message from each of the actors 413, 414, 422-424 and 432-434, and the number of times that the actor 412 has sent a message to each of the actors 413, 414, 422-424 and 432-434. Such a log can be used to determine a message frequency of messages sent between the actor 412 and each of the other actors in the actor server system 400. A message frequency can be based on the overall number of messages sent during a particular period of time, based on sizes of messages sent during a particular period of time, or based on a combination of the number of overall messages and the sizes of messages sent during a particular period of time. Message frequencies can indicate how “talkative” the actor 412 is with the other actors in the actor server system 400. If two actors are more talkative with each other than with other actors, it may be advantageous to place the two actors closer to each other within the actor server system 400 to reduce the time that messages take to pass between the two talkative actors.
Based on the message frequencies of messages being sent between actors, a degree of closeness can be determined for two or more actors. A degree of closeness can be a binary option (e.g., either actors should be close or actors do not need to be close), a range of values (e.g., a range of value from 1 to 10 where 1 is associated with a lowest need for the actors to be close and 10 is associated with the highest indicator that the actors should be close), and/or any other indication of a degree. In another embodiment, a degree of closeness for two or more actors can be set by a developer of the actor system hosted by actor server system 400, by an operator of the actor system hosted by actor server system 400, or by any other group or individual. As is discussed in greater detail below, the degree of closeness—whether determined based on a message frequency of messages sent or set by a person or group—can be used to locate one or more actors within the actor server system 400.
Management server 511 can send an availability inquiry to each of management service 521 and management service 531 requesting an availability of the server 520 and the server 530, respectively, to host additional actors. Responses from the management service 521 and management service 531 can be sent to management service 511 indicating a level of availability of the server 520 and the server 530 to host additional actors. In the particular embodiment shown in
At the time depicted in
The determination that actor 627 should be moved can be based can also be based on a determination of optimization of computing resources within the actor system. In one embodiment, if computing resources within the actor system are underutilized, it may be more optimal for the underutilized computing resources to be shut down instead of moving actor 627. For example, it may be possible to move the actors 632 and 633 on server 630 to server 660 and remove server 630 from service. In this embodiment, the termination may be made to leave actor 627 on server 620 so that server 630 could be removed to save computing resources. In another embodiment, the determination of optimization of computing resources within the actor system can be based on a local, regional or global view of the actor system. A global view of the actor system can provide a complete analysis of the actor system, but it may take a significant about of time to analyze the entire actor system. A local view of the actor system can provide an analysis of the actors close to one or more actors; however, a local analysis may not provide enough information about the actor system. A regional view may provide an analysis that is somewhere between the local view and the global view of the actor system. One way to approximate a global view of the actor system would be to combine multiple regional views of the actor system to approximate the global view of the actor system. Such an approximation of the global view of the actor system may not take as much time to perform as performing a full global view of the actor system.
The management service 621 may determine which of the available servers 630 and 660 to which the actor 627 should be transferred based on the degree of closeness between actor 627 and another actor in the actor server system 600. For example, the management service 621 may be aware of a degree of closeness between actor 627 and actor 656 on server 650. The degree of closeness between actor 627 and actor 656 can be based on a message frequency of messages sent between actor 627 and actor 656, based on a received degree of closeness between actor 627 and actor 656, or based on any other information. Placing the actor 627 on server 650 would place the actor 627 in the closest location to actor 656. However, server 650 is not available to host actor 627. Between the available servers 630 and 660, the management service 621 can determine that the actor 627 will be closer to actor 656 if it is moved to server 660 than if it is moved to server 630 because the intra-rack communication link(s) 641 communicate messages between server 660 and server 650 at a faster rate than the inter-rack communication link(s) 601 communicate messages between server 630 and server 650. At the time shown in
If, at block 703, it is determined that there are no locations available to host the one or more actors, then, at block 704, the one or more actors can be left in their original location. At block 705, a signal can be sent that additional locations may need to be provisioned. Such a signal can include one or more of a signal sent to a developer or operator of the actor system to purchase additional computing resources available in a server system, a signal for a network technician to install an additional server within a server rack, a signal to automatically provision an additional server to host actors and the like. If additional locations are provisioned, the one or more actors can then be transferred to the newly-provisioned locations.
If, at block 703, it is determined that only one location is available, then, at block 706, the one or more actors can be sent to that available location. In an embodiment not depicted in
If, at block 703, it is determined that more than one location is available, then, at block 707, a degree of closeness can be determined between the one or more actors and other actors in the actor system. At block 708, a destination location from the available locations can be determined based at least in part on the degree of closeness. The destination location may not be the closest location of the one or more actors to other actors with which the one or more actors frequently send messages, but the destination location may be the closest available location. Additionally, in the case where there are more than one actors being moved, more than one destination location may be determined. At block 709, the one or more actors are sent to the destination location determined at block 708.
At block 803, a determination can be made whether any additional locations are available to host one or both of the first and second actors. The determination can be made based on responses to the inquiries sent at block 802. If, at block 803, it is determined that no new locations are available to host one or both of the first and second actors, then, at block 804, a signal can be raised regarding a possible need for additional locations. Additional locations can be made by provisioning an additional server, by purchasing access to additional resources within an actor server system and the like. At block 805, the first and second actors can be left in their original locations.
If, at block 803, it is determined that one or more new locations are available to host one or both of the first and second actors, then, at block 806, a determination is made whether the possible one or more new locations would permit the first and second actors to be located closer to each other. For example, if one of the possible new locations is a server that already hosts the second actor, then placing the first actor on the same server would locate the first and second actors closer to each other. In another example, if the first and second actors are located on different servers within the same server rack and the only possible new location is a server in another server rack, then moving one of the first and second actors to the server in the other server rack would not locate the first and second actors closer to each other. If, at block 806, it is determined that the possible new locations would not locate the first and second actors closer to each other, then the method can proceed to block 805 where the first and second actors are left in their original locations. However, if, at block 806, it is determined that the possible new locations would locate the first and second actors closer to each other, then, at block 807, one or both of the first and second actors can be moved to one or more of the new locations.
If, at block 903, it is determined that the message frequency between the first actor and the second actor exceeds the threshold, then, at block 904, a degree of closeness between the first and second actors can be determined. The degree of closeness between the first and second actors can be based on the message frequency between the first and second actors. At block 905, a determination can be made, based at least in part on the degree of closeness between the first and second actors, whether one or both of the first and second actors should be moved to a new location. However, if, at block 903, it is determined that the message frequency between the first actor and the second actor does not exceed the threshold, then, at block 906, the first and second actor can be left in their original locations.
Each type or configuration of computing resource may be available in different sizes, such as large resources—consisting of many processors, large amounts of memory and/or large storage capacity—and small resources—consisting of fewer processors, smaller amounts of memory and/or smaller storage capacity. Customers may choose to allocate a number of small processing resources as web servers and/or one large processing resource as a database server, for example.
Data center 1010 may include servers 1016a-b (which may be referred herein singularly as server 1016 or in the plural as servers 1016) that provide computing resources. These resources may be available as bare metal resources, or as virtual machine instances 1018a-d and (which may be referred herein singularly as virtual machine instance 1018 or in the plural as virtual machine instances 1018). Virtual machine instances 1018c and 1018d are interest virtual machine instances. The interest virtual machine instances 1018c and 1018d may be configured to perform all or any portion of the encoding techniques based on areas of interest in accordance with the present disclosure and described in detail below. As should be appreciated, while the particular example illustrated in
The availability of virtualization technologies for computing hardware has provided benefits for providing large scale computing resources for customers and allowing computing resources to be efficiently and securely shared between multiple customers. For example, virtualization technologies may allow a physical computing device to be shared among multiple users by providing each user with one or more virtual machine instances hosted by the physical computing device. A virtual machine instance may be a software emulation of a particular physical computing system that acts as a distinct logical computing system. Such a virtual machine instance provides isolation among multiple operating systems sharing a given physical computing resource. Furthermore, some virtualization technologies may provide virtual resources that span one or more physical resources, such as a single virtual machine instance with multiple virtual processors that spans multiple distinct physical computing systems.
Referring to
Communication network 1030 may provide access to computers 1002. User computers 1002 may be computers utilized by users 1000 or other customers of data center 1010. For instance, user computer 1002a or 1002b may be a server, a desktop or laptop personal computer, a tablet computer, a wireless telephone, a personal digital assistant (PDA), an e-book reader, a game console, a set-top box or any other computing device capable of accessing data center 1010. User computer 1002a or 1002b may connect directly to the Internet (e.g., via a cable modem or a Digital Subscriber Line (DSL)). Although only two user computers 1002a and 1002b are depicted, it should be appreciated that there may be multiple user computers.
User computers 1002 may also be utilized to configure aspects of the computing resources provided by data center 1010. In this regard, data center 1010 might provide a gateway or web interface through which aspects of its operation may be configured through the use of a web browser application program executing on user computer 1002. Alternately, a stand-alone application program executing on user computer 1002 might access an application programming interface (API) exposed by data center 1010 for performing the configuration operations. Other mechanisms for configuring the operation of various web services available at data center 1010 might also be utilized.
Servers 1016 shown in
It should be appreciated that although the embodiments disclosed above discuss the context of virtual machine instances, other types of implementations can be utilized with the concepts and technologies disclosed herein. For example, the embodiments disclosed herein might also be utilized with computing systems that do not utilize virtual machine instances.
In the example data center 1010 shown in
In the example data center 1010 shown in
It should be appreciated that the network topology illustrated in
It should also be appreciated that data center 1010 described in
In at least some embodiments, a server that implements a portion or all of one or more of the technologies described herein may include a general-purpose computer system that includes or is configured to access one or more computer-accessible media.
In various embodiments, computing device 1100 may be a uniprocessor system including one processor 1110 or a multiprocessor system including several processors 1110 (e.g., two, four, eight or another suitable number). Processors 1110 may be any suitable processors capable of executing instructions. For example, in various embodiments, processors 1110 may be general-purpose or embedded processors implementing any of a variety of instruction set architectures (ISAs), such as the x86, PowerPC, SPARC or MIPS ISAs or any other suitable ISA. In multiprocessor systems, each of processors 1110 may commonly, but not necessarily, implement the same ISA.
System memory 1120 may be configured to store instructions and data accessible by processor(s) 1110. In various embodiments, system memory 1120 may be implemented using any suitable memory technology, such as static random access memory (SRAM), synchronous dynamic RAM (SDRAM), nonvolatile/Flash®-type memory or any other type of memory. In the illustrated embodiment, program instructions and data implementing one or more desired functions, such as those methods, techniques and data described above, are shown stored within system memory 1120 as code 1125 and data 1126.
In one embodiment, I/O interface 1130 may be configured to coordinate I/O traffic between processor 1110, system memory 1120 and any peripherals in the device, including network interface 1140 or other peripheral interfaces. In some embodiments, I/O interface 1130 may perform any necessary protocol, timing or other data transformations to convert data signals from one component (e.g., system memory 1120) into a format suitable for use by another component (e.g., processor 1110). In some embodiments, I/O interface 1130 may include support for devices attached through various types of peripheral buses, such as a variant of the Peripheral Component Interconnect (PCI) bus standard or the Universal Serial Bus (USB) standard, for example. In some embodiments, the function of I/O interface 1130 may be split into two or more separate components, such as a north bridge and a south bridge, for example. Also, in some embodiments some or all of the functionality of I/O interface 1130, such as an interface to system memory 1120, may be incorporated directly into processor 1110.
Network interface 1140 may be configured to allow data to be exchanged between computing device 1100 and other device or devices 1160 attached to a network or networks 1150, such as other computer systems or devices, for example. In various embodiments, network interface 1140 may support communication via any suitable wired or wireless general data networks, such as types of Ethernet networks, for example. Additionally, network interface 1140 may support communication via telecommunications/telephony networks, such as analog voice networks or digital fiber communications networks, via storage area networks, such as Fibre Channel SANs (storage area networks), or via any other suitable type of network and/or protocol.
In some embodiments, system memory 1120 may be one embodiment of a computer-accessible medium configured to store program instructions and data as described above for implementing embodiments of the corresponding methods and apparatus. However, in other embodiments, program instructions and/or data may be received, sent or stored upon different types of computer-accessible media. Generally speaking, a computer-accessible medium may include non-transitory storage media or memory media such as magnetic or optical media, e.g., disk or DVD/CD coupled to computing device 1100 via I/O interface 1130. A non-transitory computer-accessible storage medium may also include any volatile or non-volatile media such as RAM (e.g. SDRAM, DDR SDRAM, RDRAM, SRAM, etc.), ROM etc., that may be included in some embodiments of computing device 1100 as system memory 1120 or another type of memory. Further, a computer-accessible medium may include transmission media or signals such as electrical, electromagnetic or digital signals conveyed via a communication medium such as a network and/or a wireless link, such as those that may be implemented via network interface 1140. Portions or all of multiple computing devices such as those illustrated in
A compute node, which may be referred to also as a computing node, may be implemented on a wide variety of computing environments, such as commodity-hardware computers, virtual machines, web services, computing clusters and computing appliances. Any of these computing devices or environments may, for convenience, be described as compute nodes.
A network set up by an entity such as a company or a public sector organization to provide one or more web services (such as various types of cloud-based computing or storage) accessible via the Internet and/or other networks to a distributed set of clients may be termed a provider network. Such a provider network may include numerous data centers hosting various resource pools, such as collections of physical and/or virtualized computer servers, storage devices, networking equipment, and the like, needed to implement and distribute the infrastructure and web services offered by the provider network. The resources may in some embodiments be offered to clients in various units related to the web service, such as an amount of storage for storage, processing capability for processing, as instances, as sets of related services and the like. A virtual computing instance may, for example, comprise one or more servers with a specified computational capacity (which may be specified by indicating the type and number of CPUs, the main memory size and so on) and a specified software stack (e.g., a particular version of an operating system, which may in turn run on top of a hypervisor).
A number of different types of computing devices may be used singly or in combination to implement the resources of the provider network in different embodiments, including general purpose or special purpose computer servers, storage devices, network devices and the like. In some embodiments a client or user may be provided direct access to a resource instance, e.g., by giving a user an administrator login and password. In other embodiments the provider network operator may allow clients to specify execution requirements for specified client applications and schedule execution of the applications on behalf of the client on execution platforms (such as application server instances, Java™ virtual machines (JVMs), general purpose or special-purpose operating systems, platforms that support various interpreted or compiled programming languages such as Ruby, Perl, Python, C, C++ and the like or high-performance computing platforms) suitable for the applications, without, for example, requiring the client to access an instance or an execution platform directly. A given execution platform may utilize one or more resource instances in some implementations; in other implementations multiple execution platforms may be mapped to a single resource instance.
In many environments, operators of provider networks that implement different types of virtualized computing, storage and/or other network-accessible functionality may allow customers to reserve or purchase access to resources in various resource acquisition modes. The computing resource provider may provide facilities for customers to select and launch the desired computing resources, deploy application components to the computing resources and maintain an application executing in the environment. In addition, the computing resource provider may provide further facilities for the customer to quickly and easily scale up or scale down the numbers and types of resources allocated to the application, either manually or through automatic scaling, as demand for or capacity requirements of the application change. The computing resources provided by the computing resource provider may be made available in discrete units, which may be referred to as instances. An instance may represent a physical server hardware platform, a virtual machine instance executing on a server or some combination of the two. Various types and configurations of instances may be made available, including different sizes of resources executing different operating systems (OS) and/or hypervisors, and with various installed software applications, runtimes and the like. Instances may further be available in specific availability zones, representing a logical region, a fault tolerant region, a data center or other geographic location of the underlying computing hardware, for example. Instances may be copied within an availability zone or across availability zones to improve the redundancy of the instance, and instances may be migrated within a particular availability zone or across availability zones. As one example, the latency for client communications with a particular server in an availability zone may be less than the latency for client communications with a different server. As such, an instance may be migrated from the higher latency server to the lower latency server to improve the overall client experience.
In some embodiments the provider network may be organized into a plurality of geographical regions, and each region may include one or more availability zones. An availability zone (which may also be referred to as an availability container) in turn may comprise one or more distinct locations or data centers, configured in such a way that the resources in a given availability zone may be isolated or insulated from failures in other availability zones. That is, a failure in one availability zone may not be expected to result in a failure in any other availability zone. Thus, the availability profile of a resource instance is intended to be independent of the availability profile of a resource instance in a different availability zone. Clients may be able to protect their applications from failures at a single location by launching multiple application instances in respective availability zones. At the same time, in some implementations inexpensive and low latency network connectivity may be provided between resource instances that reside within the same geographical region (and network transmissions between resources of the same availability zone may be even faster).
Thus, as set forth above, a content provider may provide content to a destination over a network such as the Internet using, for example, streaming content delivery techniques. A content provider may, for example, provide a content delivery service that may reside on one or more servers. The service may be scalable to meet the demands of one or more customers and may increase or decrease in capability based on the number and type of incoming client requests. The content delivery service may, in some cases, process a content item in parallel across multiple nodes of the content delivery service. This may be done, in one embodiment, to reduce the latency for rendering the content item. Portions of the content delivery service may also be migrated to be placed in a position of reduced latency with a requesting client. In some cases, the content provider may determine an “edge” of a system or network associated with the content provider that is physically and/or logically closest to a requesting client. The content provider may then, for example, “spin-up,” migrate resources, or otherwise employ components associated with the determined edge for interacting with requests from the client. Such an edge determination process may, in some cases, provide an efficient technique for identifying and employing components that are well suited to interact with a particular client, and may, in some embodiments, reduce the latency for communications between a content provider and one or more clients.
Each of the processes, methods and algorithms described in the preceding sections may be embodied in, and fully or partially automated by, code modules executed by one or more computers or computer processors. The code modules may be stored on any type of non-transitory computer-readable medium or computer storage device, such as hard drives, solid state memory, optical disc and/or the like. The processes and algorithms may be implemented partially or wholly in application-specific circuitry. The results of the disclosed processes and process steps may be stored, persistently or otherwise, in any type of non-transitory computer storage such as, e.g., volatile or non-volatile storage.
The various features and processes described above may be used independently of one another or may be combined in various ways. All possible combinations and subcombinations are intended to fall within the scope of this disclosure. In addition, certain method or process blocks may be omitted in some implementations. The methods and processes described herein are also not limited to any particular sequence, and the blocks or states relating thereto can be performed in other sequences that are appropriate. For example, described blocks or states may be performed in an order other than that specifically disclosed, or multiple blocks or states may be combined in a single block or state. The example blocks or states may be performed in serial, in parallel, or in some other manner. Blocks or states may be added to or removed from the disclosed example embodiments. The example systems and components described herein may be configured differently than described. For example, elements may be added to, removed from or rearranged compared to the disclosed example embodiments.
It will also be appreciated that various items are illustrated as being stored in memory or on storage while being used, and that these items or portions of thereof may be transferred between memory and other storage devices for purposes of memory management and data integrity. Alternatively, in other embodiments some or all of the software modules and/or systems may execute in memory on another device and communicate with the illustrated computing systems via inter-computer communication. Furthermore, in some embodiments, some or all of the systems and/or modules may be implemented or provided in other ways, such as at least partially in firmware and/or hardware, including, but not limited to, one or more application-specific integrated circuits (ASICs), standard integrated circuits, controllers (e.g., by executing appropriate instructions, and including microcontrollers and/or embedded controllers), field-programmable gate arrays (FPGAs), complex programmable logic devices (CPLDs), etc. Some or all of the modules, systems and data structures may also be stored (e.g., as software instructions or structured data) on a computer-readable medium, such as a hard disk, a memory, a network, or a portable media article to be read by an appropriate drive or via an appropriate connection. The systems, modules and data structures may also be transmitted as generated data signals (e.g., as part of a carrier wave or other analog or digital propagated signal) on a variety of computer-readable transmission media, including wireless-based and wired/cable-based media, and may take a variety of forms (e.g., as part of a single or multiplexed analog signal, or as multiple discrete digital packets or frames). Such computer program products may also take other forms in other embodiments. Accordingly, the present invention may be practiced with other computer system configurations.
Conditional language used herein, such as, among others, “can,” “could,” “might,” “may,” “e.g.” and the like, unless specifically stated otherwise, or otherwise understood within the context as used, is generally intended to convey that certain embodiments include, while other embodiments do not include, certain features, elements and/or steps. Thus, such conditional language is not generally intended to imply that features, elements and/or steps are in any way required for one or more embodiments or that one or more embodiments necessarily include logic for deciding, with or without author input or prompting, whether these features, elements and/or steps are included or are to be performed in any particular embodiment. The terms “comprising,” “including,” “having” and the like are synonymous and are used inclusively, in an open-ended fashion, and do not exclude additional elements, features, acts, operations and so forth. Also, the term “or” is used in its inclusive sense (and not in its exclusive sense) so that when used, for example, to connect a list of elements, the term “or” means one, some or all of the elements in the list.
While certain example embodiments have been described, these embodiments have been presented by way of example only, and are not intended to limit the scope of the inventions disclosed herein. Thus, nothing in the foregoing description is intended to imply that any particular feature, characteristic, step, module, or block is necessary or indispensable. Indeed, the novel methods and systems described herein may be embodied in a variety of other forms; furthermore, various omissions, substitutions and changes in the form of the methods and systems described herein may be made without departing from the spirit of the inventions disclosed herein. The accompanying claims and their equivalents are intended to cover such forms or modifications as would fall within the scope and spirit of certain of the inventions disclosed herein.
The present application is a divisional of U.S. patent application Ser. No. 15/469,776, filed Mar. 27, 2017, entitled “LOCATION OF ACTOR RESOURCES”, which is a divisional of U.S. patent application Ser. No. 14/076,815, filed Nov. 11, 2013, entitled “LOCATION OF ACTOR RESOURCES”, which is related to the following applications, each of which is hereby incorporated by reference in its entirety: U.S. patent application Ser. No. 14/076,718 filed Nov. 11, 2013, entitled “VIDEO ENCODING BASED ON AREAS OF INTEREST”; U.S. patent application Ser. No. 14/076,821 filed Nov. 11, 2013, entitled “ADAPTIVE SCENE COMPLEXITY BASED ON SERVICE QUALITY”; U.S. patent application Ser. No. 14/077,127 filed Nov. 11, 2013, entitled “SERVICE FOR GENERATING GRAPHICS OBJECT DATA”; U.S. patent application Ser. No. 14/077,136 filed Nov. 11, 2013, entitled “IMAGE COMPOSITION BASED ON REMOTE OBJECT DATA”; U.S. patent application Ser. No. 14/077,165 filed Nov. 11, 2013, entitled “MULTIPLE PARALLEL GRAPHICS PROCESSING UNITS”; U.S. patent application Ser. No. 14/077,084 filed Nov. 11, 2013, entitled “ADAPTIVE CONTENT TRANSMISSION”; U.S. patent application Ser. No. 14/077,180 filed Nov. 11, 2013, entitled “VIEW GENERATION BASED ON SHARED STATE”; U.S. patent application Ser. No. 14/077,186 filed Nov. 11, 2013, entitled “MULTIPLE STREAM CONTENT PRESENTATION”; U.S. patent application Ser. No. 14/077,149 filed Nov. 11, 2013, entitled “DATA COLLECTION FOR MULTIPLE VIEW GENERATION”; U.S. patent application Ser. No. 14/077,142 filed Nov. 11, 2013, entitled “STREAMING GAME SERVER VIDEO RECORDER”; U.S. patent application Ser. No. 14/077,146 filed Nov. 11, 2013, entitled “SESSION IDLE OPTIMIZATION FOR STREAMING SERVER”; U.S. patent application Ser. No. 14/077,023 filed Nov. 11, 2013, entitled “APPLICATION STREAMING SERVICE”; U.S. Patent Application No. 61/902,740 filed Nov. 11, 2013, entitled “EFFICIENT BANDWIDTH ESTIMATION”.
Number | Name | Date | Kind |
---|---|---|---|
4090221 | Connor | May 1978 | A |
5390188 | Dawson | Feb 1995 | A |
5475817 | Waldo et al. | Dec 1995 | A |
5774668 | Choquier et al. | Jun 1998 | A |
5956489 | San Andreas et al. | Sep 1999 | A |
6343313 | Salesky et al. | Jan 2002 | B1 |
6351467 | Dillon | Feb 2002 | B1 |
6525731 | Suits et al. | Feb 2003 | B1 |
6556206 | Benson et al. | Apr 2003 | B1 |
6694346 | Aman et al. | Feb 2004 | B1 |
6941078 | Onaka | Sep 2005 | B1 |
7068729 | Shokrollahi et al. | Jun 2006 | B2 |
7177448 | Sah | Feb 2007 | B1 |
7249291 | Rasmussen et al. | Jul 2007 | B2 |
7428588 | Berstis | Sep 2008 | B2 |
7447235 | Luby et al. | Nov 2008 | B2 |
7522167 | Diard et al. | Apr 2009 | B1 |
7548242 | Hughes et al. | Jun 2009 | B1 |
7616206 | Danilak | Nov 2009 | B1 |
7616207 | Diard et al. | Nov 2009 | B1 |
7623131 | Johnson | Nov 2009 | B1 |
7660245 | Luby | Feb 2010 | B1 |
7711068 | Shokrollahi et al. | May 2010 | B2 |
7720174 | Shokrollahi et al. | May 2010 | B2 |
7721184 | Luby et al. | May 2010 | B2 |
7956772 | Shokrollahi et al. | Jun 2011 | B2 |
7969444 | Biermann et al. | Jun 2011 | B1 |
7984179 | Huang | Jul 2011 | B1 |
8065676 | Sahai et al. | Nov 2011 | B1 |
8185809 | Luby et al. | May 2012 | B2 |
8190760 | Hurst et al. | May 2012 | B2 |
8279755 | Luby | Oct 2012 | B2 |
8458567 | Luby et al. | Jun 2013 | B2 |
8473557 | Ramakrishnan et al. | Jun 2013 | B2 |
8478816 | Parks et al. | Jul 2013 | B2 |
8484284 | Elliott et al. | Jul 2013 | B2 |
8527646 | Khatib et al. | Sep 2013 | B2 |
8572251 | Srinivas et al. | Oct 2013 | B2 |
8574074 | van Datta et al. | Nov 2013 | B2 |
8582299 | Phillips et al. | Nov 2013 | B1 |
8671163 | Luby et al. | Mar 2014 | B2 |
8795076 | van Datta et al. | Aug 2014 | B2 |
8838722 | Ridges et al. | Sep 2014 | B2 |
8928659 | Bar-Zeev et al. | Jan 2015 | B2 |
8996864 | Maigne et al. | Mar 2015 | B2 |
9170961 | Das et al. | Oct 2015 | B2 |
9192859 | Perlman et al. | Nov 2015 | B2 |
9338226 | Korangy | May 2016 | B2 |
9466074 | van Data et al. | Oct 2016 | B2 |
9811927 | Rowland | Nov 2017 | B2 |
9940647 | Perry et al. | Apr 2018 | B2 |
20020039371 | Hedayat et al. | Apr 2002 | A1 |
20020114404 | Aizawa et al. | Aug 2002 | A1 |
20020129159 | Luby et al. | Sep 2002 | A1 |
20020147611 | Greene et al. | Oct 2002 | A1 |
20020173984 | Robertson et al. | Nov 2002 | A1 |
20020176367 | Gross | Nov 2002 | A1 |
20030091000 | Chu et al. | May 2003 | A1 |
20030105925 | Yoshimura et al. | Jun 2003 | A1 |
20030212742 | Hochmuth et al. | Nov 2003 | A1 |
20040057379 | Chen et al. | Mar 2004 | A1 |
20040073903 | Melchione et al. | Apr 2004 | A1 |
20040093206 | Hardwick | May 2004 | A1 |
20040098748 | Bo et al. | May 2004 | A1 |
20040101274 | Foisy et al. | May 2004 | A1 |
20040153316 | Hardwick | Aug 2004 | A1 |
20040236547 | Rappaport et al. | Nov 2004 | A1 |
20050135305 | Wentink | Jun 2005 | A1 |
20060036756 | Driemeyer et al. | Feb 2006 | A1 |
20060061651 | Tetterington | Mar 2006 | A1 |
20060072831 | Pallister | Apr 2006 | A1 |
20060088093 | Lakaniemi et al. | Apr 2006 | A1 |
20060092847 | Mohan | May 2006 | A1 |
20060168147 | Inoue et al. | Jul 2006 | A1 |
20060285489 | Francisco et al. | Dec 2006 | A1 |
20070009043 | Craig et al. | Jan 2007 | A1 |
20070053692 | Hoshida et al. | Mar 2007 | A1 |
20070094094 | Yaron et al. | Apr 2007 | A1 |
20070140359 | Ehret et al. | Jun 2007 | A1 |
20070156725 | Ehret et al. | Jul 2007 | A1 |
20070183493 | Kimpe | Aug 2007 | A1 |
20070216776 | Woolfe | Sep 2007 | A1 |
20070226364 | Landspurg | Sep 2007 | A1 |
20070240160 | Paterson-Jones et al. | Oct 2007 | A1 |
20070265073 | Novi et al. | Nov 2007 | A1 |
20080007650 | Bennett | Jan 2008 | A1 |
20080008093 | Wang et al. | Jan 2008 | A1 |
20080104608 | Hyser et al. | May 2008 | A1 |
20080172140 | Kim et al. | Jul 2008 | A1 |
20080281793 | Mathur | Nov 2008 | A1 |
20090015671 | Addy | Jan 2009 | A1 |
20090081964 | Buznach | Mar 2009 | A1 |
20090124387 | Perlman et al. | May 2009 | A1 |
20090131177 | Pearce | May 2009 | A1 |
20090150750 | Liu et al. | Jun 2009 | A1 |
20090195537 | Qiu et al. | Aug 2009 | A1 |
20090216364 | Grissom | Aug 2009 | A1 |
20090245426 | Ratnakar et al. | Oct 2009 | A1 |
20090249440 | Platt et al. | Oct 2009 | A1 |
20090251488 | Clavel | Oct 2009 | A1 |
20090307565 | Luby et al. | Dec 2009 | A1 |
20100017686 | Luby et al. | Jan 2010 | A1 |
20100063992 | Ma et al. | Mar 2010 | A1 |
20100064102 | Brown et al. | Mar 2010 | A1 |
20100088453 | Solki et al. | Apr 2010 | A1 |
20100091669 | Liu et al. | Apr 2010 | A1 |
20100110634 | Woodbury, II et al. | May 2010 | A1 |
20100156892 | Chan et al. | Jun 2010 | A1 |
20100166058 | Perlman et al. | Jul 2010 | A1 |
20100166063 | Perlman et al. | Jul 2010 | A1 |
20100166065 | Perlman et al. | Jul 2010 | A1 |
20100166068 | Perlman et al. | Jul 2010 | A1 |
20100169958 | Werner et al. | Jul 2010 | A1 |
20100214940 | Macauley | Aug 2010 | A1 |
20100218014 | Bozek et al. | Aug 2010 | A1 |
20100289803 | Klosowski et al. | Nov 2010 | A1 |
20100312891 | Pairault et al. | Dec 2010 | A1 |
20110002377 | Raveendran | Jan 2011 | A1 |
20110002378 | Raveendran | Jan 2011 | A1 |
20110002379 | Raveendran | Jan 2011 | A1 |
20110002399 | Raveendran | Jan 2011 | A1 |
20110002405 | Raveendran | Jan 2011 | A1 |
20110040396 | Kraemer et al. | Feb 2011 | A1 |
20110040894 | Shrum et al. | Feb 2011 | A1 |
20110047263 | Martins et al. | Feb 2011 | A1 |
20110055372 | Elyashev et al. | Mar 2011 | A1 |
20110055602 | Kamay et al. | Mar 2011 | A1 |
20110067072 | Parekh et al. | Mar 2011 | A1 |
20110125746 | Leary et al. | May 2011 | A1 |
20110126110 | Vilke et al. | May 2011 | A1 |
20110134111 | Stone | Jun 2011 | A1 |
20110149751 | Li et al. | Jun 2011 | A1 |
20110157193 | Boucher et al. | Jun 2011 | A1 |
20110252181 | Ouye et al. | Oct 2011 | A1 |
20110252356 | Morris | Oct 2011 | A1 |
20110276689 | Rosen | Nov 2011 | A1 |
20110283045 | Krishnan et al. | Nov 2011 | A1 |
20110304634 | Urbach | Dec 2011 | A1 |
20110317568 | Flinta et al. | Dec 2011 | A1 |
20120004040 | Pereira et al. | Jan 2012 | A1 |
20120004041 | Pereira et al. | Jan 2012 | A1 |
20120004042 | Perry et al. | Jan 2012 | A1 |
20120005316 | Perry et al. | Jan 2012 | A1 |
20120069036 | Dharmapurikar | Mar 2012 | A1 |
20120084774 | Post et al. | Apr 2012 | A1 |
20120089980 | Sharp et al. | Apr 2012 | A1 |
20120093252 | Strait | Apr 2012 | A1 |
20120117145 | Clift et al. | May 2012 | A1 |
20120141089 | Hunt | Jun 2012 | A1 |
20120154389 | Bohan et al. | Jun 2012 | A1 |
20120173715 | Selitser | Jul 2012 | A1 |
20120182387 | Enenkl et al. | Jul 2012 | A1 |
20120188233 | Shuster et al. | Jul 2012 | A1 |
20120188341 | Klien et al. | Jul 2012 | A1 |
20120192031 | Liu et al. | Jul 2012 | A1 |
20120206572 | Russell | Aug 2012 | A1 |
20120209933 | Ridges et al. | Aug 2012 | A1 |
20120213272 | Liu et al. | Aug 2012 | A1 |
20120224490 | Ikada | Sep 2012 | A1 |
20120227058 | Hunt | Sep 2012 | A1 |
20120268553 | Talukder | Oct 2012 | A1 |
20120281715 | Shojania et al. | Nov 2012 | A1 |
20120281962 | Hunt et al. | Nov 2012 | A1 |
20120311448 | Achour et al. | Dec 2012 | A1 |
20120331147 | Dutta et al. | Dec 2012 | A1 |
20130007499 | Moy | Jan 2013 | A1 |
20130016107 | Dharmapurikar | Jan 2013 | A1 |
20130024812 | Reeves et al. | Jan 2013 | A1 |
20130031161 | Yang | Jan 2013 | A1 |
20130036476 | Roever et al. | Feb 2013 | A1 |
20130038618 | Urbach | Feb 2013 | A1 |
20130044824 | Vestergaard et al. | Feb 2013 | A1 |
20130067469 | Das et al. | Mar 2013 | A1 |
20130069946 | Venon et al. | Mar 2013 | A1 |
20130106855 | Urbach | May 2013 | A1 |
20130151683 | Jain | Jun 2013 | A1 |
20130151803 | Tofano | Jun 2013 | A1 |
20130210522 | Dharmapurikar | Aug 2013 | A1 |
20130212477 | Averbuch | Aug 2013 | A1 |
20130227710 | Barak et al. | Aug 2013 | A1 |
20130254010 | Letca | Sep 2013 | A1 |
20130263131 | Beda, III et al. | Oct 2013 | A1 |
20130266292 | Sandrew et al. | Oct 2013 | A1 |
20130281791 | Aferzon | Oct 2013 | A1 |
20130282791 | Kruglick | Oct 2013 | A1 |
20130306269 | Helbig et al. | Nov 2013 | A1 |
20130307847 | Dey et al. | Nov 2013 | A1 |
20130322517 | Zurpal et al. | Dec 2013 | A1 |
20130326024 | Chen et al. | Dec 2013 | A1 |
20130344960 | Perry et al. | Dec 2013 | A1 |
20130344961 | Iannetta | Dec 2013 | A1 |
20130344966 | Mustafa et al. | Dec 2013 | A1 |
20130346899 | Cole et al. | Dec 2013 | A1 |
20140025710 | Sarto | Jan 2014 | A1 |
20140108967 | Markham et al. | Apr 2014 | A1 |
20140143301 | Watson et al. | May 2014 | A1 |
20140171186 | Arnone et al. | Jun 2014 | A1 |
20140173060 | Jubran et al. | Jun 2014 | A1 |
20140173674 | Wolman et al. | Jun 2014 | A1 |
20140176536 | Kern et al. | Jun 2014 | A1 |
20140176583 | Abiezzi et al. | Jun 2014 | A1 |
20140213191 | Courtice | Jul 2014 | A1 |
20140216688 | Shelnutt et al. | Aug 2014 | A1 |
20140267283 | Nystad et al. | Sep 2014 | A1 |
20140279581 | Devereaux et al. | Sep 2014 | A1 |
20140297798 | Bakalash et al. | Oct 2014 | A1 |
20140337835 | Johnson | Nov 2014 | A1 |
20140364228 | Rimon | Dec 2014 | A1 |
20140379775 | Korangy et al. | Dec 2014 | A1 |
20150019965 | Roberts et al. | Jan 2015 | A1 |
20150023404 | Li et al. | Jan 2015 | A1 |
20150084981 | Clarberg | Mar 2015 | A1 |
20150091903 | Costello et al. | Apr 2015 | A1 |
20150130789 | Heinz et al. | May 2015 | A1 |
20150130813 | Taraki et al. | May 2015 | A1 |
20150130814 | Taraki et al. | May 2015 | A1 |
20150130815 | Taraki et al. | May 2015 | A1 |
20150131969 | Taraki et al. | May 2015 | A1 |
20150133214 | Heath et al. | May 2015 | A1 |
20150133216 | Heinz et al. | May 2015 | A1 |
20150134770 | Heinz et al. | May 2015 | A1 |
20150134771 | Kalman et al. | May 2015 | A1 |
20150134772 | Heinz et al. | May 2015 | A1 |
20150134840 | Thompson et al. | May 2015 | A1 |
20150142925 | Hix et al. | May 2015 | A1 |
20150187333 | Loeffler et al. | Jul 2015 | A1 |
20150200983 | Pearce et al. | Jul 2015 | A1 |
20150229693 | Clark et al. | Aug 2015 | A1 |
20150249623 | Phillips et al. | Sep 2015 | A1 |
20150281258 | Watkins et al. | Oct 2015 | A1 |
20150331813 | Perrin et al. | Nov 2015 | A1 |
20160012465 | Sharp et al. | Jan 2016 | A1 |
20160044125 | Hardin et al. | Feb 2016 | A1 |
20160073286 | Wang et al. | Mar 2016 | A1 |
20170300368 | Jain et al. | Oct 2017 | A1 |
20180191750 | Moradi | Jul 2018 | A1 |
Number | Date | Country |
---|---|---|
1154169 | Jul 1997 | CN |
101025901 | Aug 2007 | CN |
101918921 | Dec 2010 | CN |
102402462 | Apr 2012 | CN |
102780689 | Nov 2012 | CN |
102867073 | Jan 2013 | CN |
2073486 | Jun 2009 | EP |
1290642 | Sep 2010 | EP |
H02-122363 | May 1990 | JP |
2000-132705 | May 2000 | JP |
2004-266575 | Sep 2004 | JP |
2006-061716 | Mar 2006 | JP |
2006-279544 | Oct 2006 | JP |
2007-011494 | Jan 2007 | JP |
2009-003584 | Jan 2009 | JP |
2010-176662 | Aug 2010 | JP |
2010-224914 | Oct 2010 | JP |
2011-511367 | Apr 2011 | JP |
2012-069011 | Apr 2012 | JP |
2012-143012 | Jul 2012 | JP |
2012-245347 | Dec 2012 | JP |
WO 2012079825 | Jun 2012 | WO |
WO 2012107739 | Aug 2012 | WO |
WO 2013069654 | May 2013 | WO |
Entry |
---|
Ekelin et al.; “Real-Time Measurement of End-to-End Available Bandwidth using Kalman Filtering”; Proc. 10th IEEE/IFIP Network Operations and Management Symposium; 2006; 12 pages. |
U.S. Appl. No. 14/317,441, filed Jun. 27, 2014, Kalman et al. |
http://commons.wikimedia.org/wiki/File:Stereoscopic_3D_render_from_Blender.ipg; File: Stereoscopic_3D_render_from_Blender.jpg; Wikimedia; Mar. 4, 2012; accessed Nov. 12, 2013; 2 pages. |
http://en.wikipedia.org/wiki/Mipmap; Mipmap; Wikipedia; Oct. 29, 2013; accessed Nov. 10, 2013; 3 pages. |
http://en.wikipeida.org/wiki/Texture_atlas; Texture atlas; Wikipedia; Sep. 28, 2013; accessed Nov. 10, 2013; 2 pages. |
http://msdn.microsoft.com/en-us/library/windows/hardware/ff569022(v=vs.85).aspx; Pipelines for Direct3D Version 11; Microsoft; Oct. 14, 2013; accessed Nov. 9, 2013; 3 pages. |
European Patent Application No. 14860565.2; Extended Search Report; dated May 10, 2017; 9 pages. |
Hasselgren et al.; “An Efficient Multi-View Rasterization Architecture”; Proceedings of the 17th Eurographics Conf. on Rendering Techniques; Jun. 2006; 12 pages. |
Sorbier et al.; “GPU-based multi-view rendering”; 3rd Annual Int'l Conf. on Computer Games, Multimedia and Allied Technology (CGAT); 2010; 8 pages. |
Hubner et al.; “Single-Pass Multi-View Rendering”; IADIS Int'l Journal on Computer Science and Information Systems; vol. 2 No. 2; 2007; p. 122-140. |
European Patent Application No. 14860984.5; Extended Search Report; dated May 26, 2017; 14 pages. |
“Remote Session Environment”; https://technet.microsoft.com/de-de/library/ee791847(v=ws, 10).aspx; Microsoft; © 2017; accessed Jul. 18, 2017; 8 pages. |
European Patent Application No. 14859905.3; Extended Search Report; dated Jun. 27, 2017; 10 pages. |
Seminar report on customer acquisition for system integrators; Nikkei Solution Business; vol. 287; Dec. 2007; p. 70-71. |
Japan Patent Application No. 2018-145170; Reasons for Refusal; dated Jul. 8, 2019; 10 pages. |
Number | Date | Country | |
---|---|---|---|
20180167456 A1 | Jun 2018 | US |
Number | Date | Country | |
---|---|---|---|
Parent | 15469776 | Mar 2017 | US |
Child | 15892103 | US | |
Parent | 14076815 | Nov 2013 | US |
Child | 15469776 | US |