Movatterモバイル変換


[0]ホーム

URL:


US9152668B1 - Asynchronous computation batching - Google Patents

Asynchronous computation batching
Download PDF

Info

Publication number
US9152668B1
US9152668B1US12/697,172US69717210AUS9152668B1US 9152668 B1US9152668 B1US 9152668B1US 69717210 AUS69717210 AUS 69717210AUS 9152668 B1US9152668 B1US 9152668B1
Authority
US
United States
Prior art keywords
functions
data
independent
necessary data
referentially transparent
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Active, expires
Application number
US12/697,172
Inventor
Dustin Moskovitz
Justin Rosenstein
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Asana Inc
Original Assignee
Asana Inc
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Asana IncfiledCriticalAsana Inc
Priority to US12/697,172priorityCriticalpatent/US9152668B1/en
Assigned to Asana, Inc.reassignmentAsana, Inc.ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS).Assignors: MOSKOVITZ, DUSTIN, ROSENSTEIN, JUSTIN
Application grantedgrantedCritical
Publication of US9152668B1publicationCriticalpatent/US9152668B1/en
Assigned to SILICON VALLEY BANK, AS ADMINISTRATIVE AGENTreassignmentSILICON VALLEY BANK, AS ADMINISTRATIVE AGENTSECURITY INTEREST (SEE DOCUMENT FOR DETAILS).Assignors: Asana, Inc.
Activelegal-statusCriticalCurrent
Adjusted expirationlegal-statusCritical

Links

Images

Classifications

Definitions

Landscapes

Abstract

A method and a system implementing asynchronous computation batching. A web application written in a side-effect free manner possesses the quality of referential transparency. This property allows independent functions to be executed in any order or in parallel and enables necessary data for such functions to be gathered in a batch query. This property also extends to dependent functions and allows web applications to be written assuming random access to data on a database.

Description

The present application relates generally to the technical field of web development technology and, in one specific example, to asynchronous computation batching.
BACKGROUND
Multiple factors, such as increasing broadband connectivity, the inconvenience associated with computer viruses and hardware redundancy, and the emergence of advertising supported software as a business model, have bolstered the migration of the functionality of locally stored software applications to network based web applications.
Web applications may require communications over a network with a server, (e.g., a web or database server), which introduces latency issues that affect performance, especially in comparison to locally hosted applications. Current web application implementations seek to minimize the effects of latency on application performance by defining when and how to query a server in an efficient manner. The operations defining when to query a server is often accomplished through customized software. The creation and maintenance of the customized software controlling queries can require significant developer resources.
BRIEF DESCRIPTION OF THE DRAWINGS
Some embodiments are illustrated by way of example and not limitation in the figures of the accompanying drawings in which:
FIG. 1A is a diagram contrasting functional and imperative functions.
FIG. 1B is a diagram contrasting dependent and independent functions.
FIG. 2 is a block diagram of a system that disseminates functional source code to a web client and web server, according to an example embodiment.
FIG. 3 is a block diagram of a system for supporting asynchronous computation batching, according to an example embodiment.
FIG. 4 is a flow chart illustrating a process of aggregating requested data, according to an example embodiment.
FIG. 5A is a function and a data array, according to an example embodiment.
FIG. 5B is an execution tree illustrating a first operation of an asynchronous computation batching algorithm, according to an example embodiment.
FIG. 5C is an execution tree diagram illustrating a second operation of an asynchronous computation batching algorithm, according to an example embodiment.
FIG. 6 is a block diagram of machine in the example form of a computer system within which a set instructions, for causing the machine to perform any one or more of the methodologies discussed herein, may be executed.
DETAILED DESCRIPTION
Example methods and systems for supporting asynchronous computation batching are described. In the following description, for purposes of explanation, numerous specific details are set forth in order to provide a thorough understanding of example embodiments. It will be evident, however, to one skilled in the art that the present invention may be practiced without these specific details. As used herein, the term “or” may be construed in an inclusive and exclusive sense.
Web applications, such as applications presented via a browser and transmitted over a network, provide application users and application developers with certain advantages over locally installed applications. An application developer can design a web application to conform to internet standards to ensure cross-platform compatibility (e.g., Windows, Linux) and a consistent user experience across platforms. Web applications also allow an application developer to update and maintain an application without the need for distributing and installing updates on a user's computer. An application user can access the web application from any device that supports a web client, without needing to locally install the application.
The popularity of web applications and the maturation of web application technologies has resulted in a growing focus on areas such as software as a service (SaaS) and cloud computing. The demand for web applications and their related products has also resulted in increasingly complex web applications that require greater amounts of data and computational resources while simultaneously supporting a responsive and rich user experience mirroring the user experience provided by locally installed applications.
Complex web applications can be difficult to write as they depend on data and instructions received over a network from a server. Expensive round trips to a server, such as, but not limited to, a query from a client to a server for data and instructions and a response message from the server back to the client, or a similar set of queries between a web server and database server or a data requestor and a data provider, are affected by network latency that may frustrate a responsive user experience. In contrast, locally installed applications may access data from a local disk over a hardware bus with a lower latency.
Application developers can reduce the effects of network latency by defining the number and the nature of round trip server queries and by reducing the amount of data transferred. Defining when and how to make each round trip server query, including what data to query for, may improve performance. For example, in the loading of a webpage with text and images, an application can make a batch query for the text and the images, as opposed to requesting the text, waiting for a response and then transmitting a second query for the images only after receiving the text. However, the customized software defining when and how to make round trip server queries can be complex, often times more complex than the operations supporting the main functionality of the web application. In addition, changes to the functionality of the web application may result in changes to the customized software defining when to make a round trip server query, which may be highly nuanced and difficult to modify. Thus, the production and maintenance web applications currently may include involvement with customized software defining round trip server queries, which can often be time consuming and inefficient.
According to an example embodiment, a web technology may permit an application developer to design and write a web application assuming random access to data on a server and have the customized software controlling efficient round trip server queries be automatically generated. In one embodiment, efficient creation and maintenance of web applications is enabled by analyzing source code that possesses the property of referential transparency, such as a functional programming language or a side-effect free implementation of a program using an imperative language, to generate code that batches calls to the server in an asynchronous fashion exploiting the parallel nature of referentially transparent functions.
Functional programming languages may be Turing Complete languages whose syntax and inherent properties provide opportunities to optimize computation using parallelism. They emphasize the evaluation of expressions as opposed to the specific operations or actions to execute. Functional programming languages are derivatives of the lambda calculus, a system for defining functions, arguments and function applications. The lambda calculus defines functions that take an input. As an illustration, a function may be defined as λx:x, where λ denotes the function name, the variable after X denotes the input and the variable after the colon denotes the expression, here merely the identity function. In variations of the lambda calculus, functions themselves are first class values that may be passed as input to another function or be the return value of a function. Modern functional languages use shorthand techniques, such as currying, to enable multiple arguments, lists, and other data structures to increase ease of use but still maintain the essence of the lambda calculus as defining functions, arguments to functions and function applications.
A quality of functional programming languages, as inherited from the lambda calculus, is the lack of, or limited scope of, side-effects. The lack or limited scope of side-effects can also be accomplished through carefully written programs using an imperative language. A side-effect is the modification of a state, an impact on the outside world or an observable interaction with a calling function. In contrast to most programs implemented using imperative programming languages, such as C, which emphasizes change in the state of variables, e.g., x=x+1, variables in a functional programming language, or variables in programs implemented using imperative language that avoid side-effects, are immutable. Thus a value of a variable cannot be changed once defined nor can a function change the value of its arguments.
The lack of side-effects allows for referential transparency, the quality that a function called at any time with the same arguments always returns the same value. This is enabled in a side-effect free program because the arguments to the function cannot change value over time. Moreover, referential transparency implies that functions independent of each other, such as a function that does not rely on the output of another function, may be executed in any order or in parallel. In some situations, referential transparency may be preserved when limited side-effects are allowed. For example, a group of functions may create an output, such as a file or effect changes to a user interface, in which the functions themselves or the output are not affected by the order in which the functions are executed. Moreover, functions may be referentially transparent for the duration of their execution, yet still have side-effects. For example, functions A and B may not always output the same values as the value of their inputs may change, but within the limited duration required to execute both A and B, for any one execution of A and B, the inputs remain constant, thus they may share the quality of referential transparency for the limited duration and still benefit from parallelism.
An application developed to have no, or minimal, side-effects, such as an application written in a functional programming language or a program written using an imperative language in a side-effect free implementation, can be defined by functions that possess the quality of referential transparency and can evaluate at any point in time to determine all functions that could be executed in parallel and to aggregate the data requests of those parallelizable functions into a single request to the server. In contrast, an application developed in an imperative language with side-effects may make serial requests to the server because it may be unclear what data can be batch queried, or may need to contain customized software to define when and how to make data queries to optimize server queries. In an example embodiment, programs that permit limited side-effects, such as, but not limited to, outputting data, updating webpage content, or receiving user input, may still maintain referential transparency or may maintain it within the context of a limited duration or scope that preserves the ability to aggregate data required by parallelizable functions. In an example embodiment, the aggregation of required data from the server may include the data required by the parallelizable functions and the data required by dependent functions of the parallelizable functions, recursively, the aggregation continuing until data is required to determine what further data is needed, such as the data required to evaluate the expression of a branch operation, or until no further data is required, wherein after the aggregated data is then requested in a batch from a server and upon receipt of the requested data, analyzing the requested data to determine whether further data is needed, repeating the aggregation process if more data is needed, the process described herein known as asynchronous computation batching.
Data is necessary for a function at any one point in time when the data is known to be required for execution of the function and for which there is no question it will be used. For example, data that is accessed by a function that is executed only if a particular Boolean is true, when we do not know the value of the Boolean, is not necessary because the function may not be executed and the data may not be required for execution. However, if at any point in time we find the Boolean value is true, then the data is necessary because it will be used by the executed function. In an example embodiment, the asynchronous computation batching process may be able to analyze branch statements to evaluate whether data will be used regardless of the branch that is executed. For example, a program may branch into three possible paths of computation, but require the same data for all branches. Thus, the asynchronous computation batching algorithm may fetch the data shared among all three branches without first evaluating which branch to execute.
In an example embodiment, an application developer may write an application assuming random access to data stored on the server in a fashion preserving referential transparency between functions. A compiler may then analyze the referentially transparent source code and output interpreted code, such as, but not limited to, javascript, that batches server queries utilizing the process of asynchronous computation batching. Thus, the creation and maintenance of a web application does not require modification of customized software to ensure efficient round trip server queries.
FIG. 1A is a diagram contrasting a functional side-effect free function and an imperative function with side-effects. Imperative languages and functions that allow for a change in state emphasize the operations and how to calculate in terms of actions and sequences. Functional languages and functions have no or limited side-effects, have immutable states, and emphasize the calculation of expressions. Imperative languages can be used to create programs with the qualities of functional languages, as referential transparency. Both exampleimperative code102 with side-effects and examplefunctional code104 define and calculate the same operation: 10!. However, in the execution of theimperative function102 the values of “INT I” and “INT VALUE” are changed with each iteration of the FOR loop. Moreover, theimperative function102 could have accessed a global variable or changed the value of an input parameter, and thus it cannot guarantee referential transparency. Thefunctional code104 uses recursion and does not change the state of any variable. Thus, thefunctional code104 would be referentially transparent with any other function.
FIG. 1B is a diagram contrasting dependent and independent functions. An independent function is an expression that can be evaluated without requiring another variable to be evaluated first. Thus the expression evaluatingINT A112 is independent because it can be evaluated without requiring another variable to be evaluated. Similarly, the expression evaluatingINT B114 is independent even though it calls a function, because it does not depend on the value of another variable. Thus, theexpressions112 and114 can be executed in any order or in parallel because they are independent. However, the expression evaluatingINT C116 is dependent because the expression definingINT A112 must be evaluated before it can be evaluated. Thus, the expression evaluatingINT C116 is dependent upon the expression evaluatingINT A112. In an example embodiment, the expression evaluating INT A and INT B would be parallelizable and the expression evaluating INT C is dependent.
FIG. 2 is a block diagram of asystem200 that distributes referentially transparent code and implements asynchronous computation batching, according to an example embodiment. An application developer writessource code202, for example defining a web application, in a fashion that preserves referential transparency. In an example embodiment, the referentiallytransparent source code202 is in a functional language or a side-effect free imperative language implementation. Thesource code202 may be referentially transparent only for a limited duration or scope as to preserve the ability to execute functions in parallel. Thesource code202 may be written to assume random access to data stored on aweb server210 or adatabase server214. The referentiallytransparent source code202 is provided to acompiler204 that translates thesource code202 to interpretedcode206, such as, but not limited to, javascript or other functional or imperative languages that may be run on aweb client212, such as, but not limited to, MICROSOFT INTERNET EXPLORER®, aweb server210 or any machine or application that may request data from a server. In an example embodiment, thecompiler204 provides javascript code that can be run on theweb client212 of aclient machine208 or runs on aweb server210. The interpretedcode206 implements the processes of determining parallelizable functions and batching their required data requests. In an example embodiment, the interpretedcode206 also batches the data required by dependent functions of the parallelizable independent functions until more data is required to determine what further data is needed or no further data is required, recursively. The interpretedcode206 may implement an asynchronous computation batching process. Theweb client212 on theclient machine208 may execute the interpretedcode206 to request data from theweb server210 or thedatabase server214. The interpretedcode206 may also be executed on aweb server210 to request data from adatabase server214 and may instantiate a web application.
FIG. 3 is a block diagram of asystem300 for supporting asynchronous computation batching, according to an example embodiment. Thesystem300 for supporting asynchronous computation batching contains aweb application host302. Theweb application host302 stores and provides the data and instructions required to operate aweb application308. Theweb application308 may be an application accessed through a browser over a network or an application on a device, such as a mobile application on a cell phone. Theweb application308 is accessed from aweb client306, such as, but not limited to, MICROSOFT INTERNET EXPLORER®, SAFARI®, OPERA® or a web browser or mobile application, that runs on aclient machine304, such as, but not limited to, a personal computer, cell phone, mobile device or machine capable of launching aweb client306.
Theweb application308 consists of various modules, including, but not limited to, aninput listener310, amessaging module312, and areceiving module314. Aninput listener310 of theweb application308 waits for pre-defined user input or trigger events that cause theweb application308 to request data. In an example embodiment, aninput listener310 may respond to mouse clicks, keyboard input or the occurrence of trigger events that cause theweb application308 to request data. In a further embodiment, a trigger event may be notification from a server that a stored data value has changed. A trigger event may also be a periodic event, such as a trigger occurring every hour. Theinput listener310 then communicates with amessaging module312 to transmit a data query over anetwork316, such as a communications network as embodied by the internet or an intranet, to theweb application host302. Data returned by theweb application host302 in response to the data query sent by themessaging module312 is captured by the receivingmodule314. The receivingmodule314 processes the data from theweb application host302 and may update theweb application308 accordingly. In an example embodiment, modules of theweb application308 may implement the asynchronous computation batching process.
The data query sent by themessaging module312 may be received by aweb server318 of theweb application host302. Theweb server318 may host anapplication server320, such as, but not limited to, an APACHE APPLICATION SERVER®, which runs various applications, including an asynchronouscomputation batching application322. The asynchronouscomputation batching application322 analyzes and prepares the data for theweb application308. The asynchronouscomputation batching application322 queries adatabase server326 that stores the requested data. In an example embodiment, the asynchronouscomputation batching application322 analyzes the data collected by theinput listener310 and implements an asynchronous computation batching process to efficiently query data from thedatabase server326 over anetwork324. In an example embodiment, theweb application308 implements an asynchronous computation batching process to efficiently query data from theweb server318 utilizing the asynchronouscomputation batching application322.
FIG. 4 is a flow chart illustrating the asynchronouscomputation batching process400, according to an example embodiment. In an example embodiment, the batching process may be performed by the asynchronouscomputation batching application322 hosted on theapplication server320. Of course, thebatching process400 may similarly be performed by a client application executing on a client machine.
Atoperation402, a user action, start of a program, or a predefined event triggers the execution of a function. In an example embodiment, a trigger event may be user input or the advancement of time to a certain point. Next, atoperation404, each function that could be executed is analyzed for data that it will request and which can be accessed from a server. The requested data is then compiled into a list of requested data. Data requested by a function is added to the compiled list until either no more necessary data can be determined without fetching further data, such as with a branch statement, or until no further data is required. This process is applied to dependent functions of the triggered functions, recursively. Thus, all data that is known to be necessary is collected in a batch. In an example embodiment, the batch query may include data that is used by all execution paths of a branch, even though the data necessary to evaluate the branch statement is unavailable.
Atoperation406, thebatching process400 determines whether any necessary data was requested by the function. If no data is necessary, then the asynchronouscomputation batching process400 completes execution of the functions and terminates. If necessary data is requested by the functions, then atoperation407 the necessary data is requested from a server in a single batch query. Continuing withoperation407, the requested necessary data is returned from a server and computation continues given the requested data. Functions are computed until either more data is required to continue computation, such as with a branch statement or the function utilizes data that was not previously fetched, or the function ends. Thebatching process400 then returns tooperation404.
Upon returning tooperation404, if no further data is necessary, such as if the executed function ends, then the asynchronouscomputation batching process400 ends atoperation406 since no further data is required. If more data is necessary, then atoperation404 executing functions are analyzed for the necessary data for their computation, as well as dependent functions, recursively. In an example embodiment, a cache of previous received necessary data may remove from a batch query requests for necessary data that already exist in the cache. Theprocess400 of analyzing for necessary data, making batch queries and furthering computation repeats until either no further data is used by the functions or the functions end.
FIG. 5A is a block diagram showing a function and adata array500, according to an example embodiment. Thefunction502 defines the variable TABLE. Thefunction502 outputs the results of the function getProfile applied over the data array IMAGES, which will list the name, gender and image, if one exists, of the profiles stored within the array IMAGES. Thedata504 defines the IMAGES array, specifically containing two elements, the first IMAGES[0] with an image while the second IMAGES[1] does not does not have an image.FIG. 5B is a hierarchical data diagram showing anexecution tree550 representing an example application of the asynchronouscomputation batching process400 to the execution of thefunction502 withdata504 as input. The execution of thefunction502 defines thetable variable552 which becomes the root of the tree. Next, map( )554 calls the getProfile function twice, once for each element of theIMAGES array556,558. The executed program executes two functions, getProfile(IMAGES[0])556 and getProfile(IMAGES[1])558. An asynchronous computation batching algorithm (e.g., as an instantiation of the batching process400) evaluates both executed functions. Because getProfile(IMAGES[0])556 and getProfile(IMAGES[1])558 are independent of each and are referentially transparent, they can be executed in any order or in parallel. Thus the asynchronous computation batching algorithm collects the necessary data from both functions until no further data is requested or until more data is required to determine if further data is necessary, into a list ofnecessary data560. In this example, the function getProfile simply outputs the strings of name and gender, so these values for IMAGES[0] and IMAGES[1] are added to the list ofnecessary data560. However, a sub-function of the getProfile function is a conditional, which outputs a file only if the Boolean value of the variable “image” is true, otherwise it outputs the text “No Image.” Because the Boolean value of IMAGES[0].image and IMAGES[1].image are required in order to determine if further data is to be requested, both items are added to the list ofnecessary data560. No further data is known to be necessary, so the asynchronous computation batching algorithm sends a batched request for the data in thenecessary data list560 to the server, namely the values of name, gender and image for the elements IMAGES[0] and IMAGES[1]. The data of IMAGES[0].file is not fetched even because it is unclear whether it will be requested due to the branch, and hence is not necessary.
FIG. 5C is a hierarchical data diagram showing an execution tree diagram575 representing a second operation of an asynchronous computation batching algorithm that instantiates thebatching process400, according to an example embodiment. After the batched data request ofnecessary data560 is sent to the server and the requested data returned, the asynchronous computation batching process evaluates whether further computation is required in order to determine if more data is required. In the evaluation of both getProfile(IMAGES[0]) and getProfile(IMAGES[1]) the conditional statement needs to be evaluated in order to determine if more data is required. In the evaluation of getProfile(IMAGES[0]), the value of IMAGES[0].image is true, and thus further data in terms of IMAGES[0].file577 is necessary for this function. However, in the evaluation of getProfile(IMAGES[1]), we see that the value of IMAGES[1].image is false, so no further data is required for this function. Hence, IMAGES[0].file is added to the list ofnecessary data560 to request from the server and requested during the next batch request to the server. After theimage577 is retrieved no further data is required by the function and the asynchronous computation batching algorithm terminates.
Modules, Components and Logic
Certain embodiments are described herein as including logic or a number of components, modules, or mechanisms. Modules may constitute either software modules (e.g., code embodied on a machine-readable medium or in a transmission signal) or hardware modules. A hardware module is tangible unit capable of performing certain operations and may be configured or arranged in a certain manner. In example embodiments, one or more computer systems (e.g., a standalone, client or server computer system) or one or more hardware modules of a computer system (e.g., a processor or a group of processors) may be configured by software (e.g., an application or application portion) as a hardware module that operates to perform certain operations as described herein.
In various embodiments, a hardware module may be implemented mechanically or electronically. For example, a hardware module may comprise dedicated circuitry or logic that is permanently configured (e.g., as a special-purpose processor, such as a field programmable gate array (FPGA) or an application-specific integrated circuit (ASIC)) to perform certain operations. A hardware module may also comprise programmable logic or circuitry (e.g., as encompassed within a general-purpose processor or other programmable processor) that is temporarily configured by software to perform certain operations. It will be appreciated that the decision to implement a hardware module mechanically, in dedicated and permanently configured circuitry, or in temporarily configured circuitry (e.g., configured by software) may be driven by cost and time considerations.
Accordingly, the term “hardware module” should be understood to encompass a tangible entity, be that an entity that is physically constructed, permanently configured (e.g., hardwired) or temporarily configured (e.g., programmed) to operate in a certain manner and/or to perform certain operations described herein. Considering embodiments in which hardware modules are temporarily configured (e.g., programmed), each of the hardware modules need not be configured or instantiated at any one instance in time. For example, where the hardware modules comprise a general-purpose processor configured using software, the general-purpose processor may be configured as respective different hardware modules at different times. Software may accordingly configure a processor, for example, to constitute a particular hardware module at one instance of time and to constitute a different hardware module at a different instance of time.
Hardware modules can provide information to, and receive information from, other hardware modules. Accordingly, the described hardware modules may be regarded as being communicatively coupled. Where multiple of such hardware modules exist contemporaneously, communications may be achieved through signal transmission (e.g., over appropriate circuits and buses) that connect the hardware modules. In embodiments in which multiple hardware modules are configured or instantiated at different times, communications between such hardware modules may be achieved, for example, through the storage and retrieval of information in memory structures to which the multiple hardware modules have access. For example, one hardware module may perform an operation, and store the output of that operation in a memory device to which it is communicatively coupled. A further hardware module may then, at a later time, access the memory device to retrieve and process the stored output. Hardware modules may also initiate communications with input or output devices, and can operate on a resource (e.g., a collection of information).
The various operations of example methods described herein may be performed, at least partially, by one or more processors that are temporarily configured (e.g., by software) or permanently configured to perform the relevant operations. Whether temporarily or permanently configured, such processors may constitute processor-implemented modules that operate to perform one or more operations or functions. The modules referred to herein may, in some example embodiments, comprise processor-implemented modules.
Similarly, the methods described herein may be at least partially processor-implemented. For example, at least some of the operations of a method may be performed by one or processors or processor-implemented modules. The performance of certain of the operations may be distributed among the one or more processors, not only residing within a single machine, but deployed across a number of machines. In some example embodiments, the processor or processors may be located in a single location (e.g., within a home environment, an office environment or as a server farm), while in other embodiments the processors may be distributed across a number of locations.
The one or more processors may also operate to support performance of the relevant operations in a “cloud computing” environment or as a “software as a service” (SaaS). For example, at least some of the operations may be performed by a group of computers (as examples of machines including processors), these operations being accessible via a network (e.g., the Internet) and via one or more appropriate interfaces (e.g., Application Program Interfaces (APIs).)
Electronic Apparatus and System
Example embodiments may be implemented in digital electronic circuitry, or in computer hardware, firmware, software, or in combinations of them. Example embodiments may be implemented using a computer program product, e.g., a computer program tangibly embodied in an information carrier, e.g., in a machine-readable medium for execution by, or to control the operation of, data processing apparatus, e.g., a programmable processor, a computer, or multiple computers.
A computer program can be written in any form of programming language, including compiled or interpreted languages, and it can be deployed in any form, including as a stand-alone program or as a module, subroutine, or other unit suitable for use in a computing environment. A computer program can be deployed to be executed on one computer or on multiple computers at one site or distributed across multiple sites and interconnected by a communication network.
In example embodiments, operations may be performed by one or more programmable processors executing a computer program to perform functions by operating on input data and generating output. Method operations can also be performed by, and apparatus of example embodiments may be implemented as, special purpose logic circuitry, e.g., a field programmable gate array (FPGA) or an application-specific integrated circuit (ASIC).
The computing system can include clients and servers. A client and server are generally remote from each other and typically interact through a communication network. The relationship of client and server arises by virtue of computer programs running on the respective computers and having a client-server relationship to each other. In embodiments deploying a programmable computing system, it will be appreciated that that both hardware and software architectures require consideration. Specifically, it will be appreciated that the choice of whether to implement certain functionality in permanently configured hardware (e.g., an ASIC), in temporarily configured hardware (e.g., a combination of software and a programmable processor), or a combination of permanently and temporarily configured hardware may be a design choice. Below are set out hardware (e.g., machine) and software architectures that may be deployed, in various example embodiments.
Example Machine Architecture and Machine-Readable Medium
FIG. 6 is a block diagram of machine in the example form of acomputer system600 within which instructions, for causing the machine to perform any one or more of the methodologies discussed herein, may be executed. In alternative embodiments, the machine operates as a standalone device or may be connected (e.g., networked) to other machines. In a networked deployment, the machine may operate in the capacity of a server or a client machine in server-client network environment, or as a peer machine in a peer-to-peer (or distributed) network environment. The machine may be a personal computer (PC), a tablet PC, a set-top box (STB), a Personal Digital Assistant (PDA), a cellular telephone, a web appliance, a network router, switch or bridge, or any machine capable of executing instructions (sequential or otherwise) that specify actions to be taken by that machine. Further, while only a single machine is illustrated, the term “machine” shall also be taken to include any collection of machines that individually or jointly execute a set (or multiple sets) of instructions to perform any one or more of the methodologies discussed herein.
Theexample computer system600 includes a processor602 (e.g., a central processing unit (CPU), a graphics processing unit (GPU) or both), amain memory604 and astatic memory606, which communicate with each other via abus608. Thecomputer system600 may further include a video display unit610 (e.g., a liquid crystal display (LCD) or a cathode ray tube (CRT)). Thecomputer system600 also includes an alphanumeric input device612 (e.g., a keyboard), a user interface (UI) navigation device614 (e.g., a mouse), adisk drive unit616, a signal generation device618 (e.g., a speaker) and anetwork interface device620.
Machine-Readable Medium
Thedisk drive unit616 includes a machine-readable medium622 on which is stored one or more sets of instructions and data structures (e.g., software)624 embodying or used by any one or more of the methodologies or functions described herein. The instructions624 may also reside, completely or at least partially, within themain memory604 and/or within theprocessor602 during execution thereof by thecomputer system600, themain memory604 and theprocessor602 also constituting machine-readable media.
While the machine-readable medium622 is shown in an example embodiment to be a single medium, the term “machine-readable medium” may include a single medium or multiple media (e.g., a centralized or distributed database, and/or associated caches and servers) that store the one or more instructions or data structures. The term “machine-readable medium” shall also be taken to include any tangible medium that is capable of storing, encoding or carrying instructions for execution by the machine and that cause the machine to perform any one or more of the methodologies of the present invention, or that is capable of storing, encoding or carrying data structures used by or associated with such instructions. The term “machine-readable medium” shall accordingly be taken to include, but not be limited to, solid-state memories, and optical and magnetic media. Specific examples of machine-readable media include non-volatile memory, including by way of example semiconductor memory devices, e.g., Erasable Programmable Read-Only Memory (EPROM), Electrically Erasable Programmable Read-Only Memory (EEPROM), and flash memory devices; magnetic disks such as internal hard disks and removable disks; magneto-optical disks; and CD-ROM and DVD-ROM disks.
Transmission Medium
The instructions624 may further be transmitted or received over acommunications network626 using a transmission medium. The instructions624 may be transmitted using thenetwork interface device620 and any one of a number of well-known transfer protocols (e.g., HTTP). Examples of communication networks include a local area network (“LAN”), a wide area network (“WAN”), the Internet, mobile telephone networks, Plain Old Telephone (POTS) networks, and wireless data networks (e.g., WiFi and WiMax networks). The term “transmission medium” shall be taken to include any intangible medium that is capable of storing, encoding or carrying instructions for execution by the machine, and includes digital or analog communications signals or other intangible media to facilitate communication of such software.
Although an embodiment has been described with reference to specific example embodiments, it will be evident that various modifications and changes may be made to these embodiments without departing from the broader spirit and scope of the invention. Accordingly, the specification and drawings are to be regarded in an illustrative rather than a restrictive sense. The accompanying drawings that form a part hereof, show by way of illustration, and not of limitation, specific embodiments in which the subject matter may be practiced. The embodiments illustrated are described in sufficient detail to enable those skilled in the art to practice the teachings disclosed herein. Other embodiments may be used and derived therefrom, such that structural and logical substitutions and changes may be made without departing from the scope of this disclosure. This Detailed Description, therefore, is not to be taken in a limiting sense, and the scope of various embodiments is defined only by the appended claims, along with the full range of equivalents to which such claims are entitled.
Such embodiments of the inventive subject matter may be referred to herein, individually and/or collectively, by the term “invention” merely for convenience and without intending to voluntarily limit the scope of this application to any single invention or inventive concept if more than one is in fact disclosed. Thus, although specific embodiments have been illustrated and described herein, it should be appreciated that any arrangement calculated to achieve the same purpose may be substituted for the specific embodiments shown. This disclosure is intended to cover any and all adaptations or variations of various embodiments. Combinations of the above embodiments, and other embodiments not specifically described herein, will be apparent to those of skill in the art upon reviewing the above description.
The Abstract of the Disclosure is provided to comply with 37 C.F.R. §1.72(b), requiring an abstract that will allow the reader to quickly ascertain the nature of the technical disclosure. It is submitted with the understanding that it will not be used to interpret or limit the scope or meaning of the claims. In addition, in the foregoing Detailed Description, it can be seen that various features are grouped together in a single embodiment for the purpose of streamlining the disclosure. This method of disclosure is not to be interpreted as reflecting an intention that the claimed embodiments require more features than are expressly recited in each claim. Rather, as the following claims reflect, inventive subject matter lies in less than all features of a single disclosed embodiment. Thus the following claims are hereby incorporated into the Detailed Description, with each claim standing on its own as a separate embodiment.

Claims (20)

What is claimed is:
1. A method comprising:
receiving an input in a web application to trigger execution of one or more functions;
in response to receiving the input,
traversing each executed function and its dependent functions
analysing the functions and the dependent functions to identify at least two independent referentially transparent functions that are executable with necessary data, and that have not yet executed; and
analysing the at least two identified independent referentially transparent functions to determine the necessary data that will be used by the identified at least two independent referentially transparent functions in the course of their execution;
recursively continuing the acts of analysing to identify and analysing to determine at least until the act of analysing to determine determines that either,
no further necessary data for the at least two identified referentially transparent functions can be determined without fetching the data, or
no further data is necessary for the at least two identified referentially transparent functions;
in response to determining that no more necessary data can be determined for the at least two identified referentially transparent functions without fetching or that no more data is necessary for the at least two identified referentially transparent functions, issuing an asynchronous computation batch query to a database server for the determined necessary data so as to aggregate the necessary data of the independent referentially transparent functions;
wherein the necessary data comprises data used in all branches of a branch statement when the branch statement is not evaluated;
receiving the necessary data; and
executing the at least two independent referentially transparent functions in parallel using the received necessary data.
2. The method ofclaim 1, further comprising recursively applying the operations of analyzing, issuing, receiving and executing to dependent functions of the independent referentially transparent functions, recursively, treating the dependent functions as independent referentially transparent functions.
3. The method ofclaim 1, wherein the independent referentially transparent functions have side-effects and maintain referential transparency for a duration sufficient to parallelize execution.
4. The method ofclaim 1, wherein the independent referentially transparent functions have side-effects that do not affect parallel execution of the independent referentially transparent functions.
5. The method ofclaim 1, further comprising a cache containing previously received necessary data, the method including removing the previously received necessary data from the batch query based on the previously received necessary data contained in the cache.
6. The method ofclaim 1, further including:
in response to receiving the necessary data, analysing the at least two identified independent referentially transparent functions to determine whether additional necessary data that will be used by the identified independent referentially transparent functions in the course of their execution;
in response to determining that additional necessary data will be used, issuing a query to the server for the additional necessary data; and
receiving the additional necessary data.
7. A system comprising:
a computer system that includes a web application to receive an input to trigger execution of one or more functions and in response to receiving the input, traversing each executed function and its dependent functions, to analyze the functions and the dependent functions to identify at least two independent referentially transparent functions that are executable with necessary data, and that have not yet executed, and analysing the at least two identified independent referentially transparent functions to determine the necessary data that will be used by the identified at least two independent referentially transparent functions in the course of their execution, recursively continuing the acts of analysing to identify and analysing to determine at least until the act of analysing to determine determines that either, no further necessary data for the at least two identified referentially transparent functions can be determined without fetching the data, or no further data is necessary for the at least two identified referentially transparent functions and that can be obtained from a database server and to aggregate the necessary data of the independent referentially transparent functions;
a messaging module included in the computer system to issue an asynchronous computation batch query for the necessary data, in response to determining the necessary data; and
wherein the necessary data comprises data used in all branches of a branch statement when the branch statement is not evaluated;
a receiving module included in the computer system to receive the necessary data,
the web application to execute the independent referentially transparent functions in parallel using the received necessary data, and to iterate calls to the web application, messaging module, and receiving module, as long as the referentially transparent functions require the further data to execute.
8. A system ofclaim 7, wherein the web application, messaging module and receiving module are recursively applied to dependent functions of the independent referentially transparent functions, treating the dependent functions as independent referentially transparent functions.
9. The system ofclaim 7, wherein the web application analyzes independent referentially transparent functions that have side-effects and maintain referential transparency for a duration sufficient to parallelize execution.
10. The system ofclaim 7, wherein the web application analyzes independent referentially transparent functions that have side-effects that do not affect the ability to parallelize execution of the independent referentially transparent functions.
11. The system ofclaim 7, wherein the web application analyzes independent referentially transparent functions that have side-effects and can maintain referential transparency for a duration sufficient to complete execution.
12. The system ofclaim 7, wherein the web application further contains a cache containing previously received necessary data, the web application to remove the previously received necessary data from the batch query based on the previously received necessary data contained in the cache.
13. A method comprising:
writing a web application in referentially transparent source code that assumes random access to data on a database;
compiling the referentially transparent source code into imperative code that implements the web application and requests data, the implementation including:
receiving an input to trigger execution of one or more functions;
in response to receiving the input, traversing each executed function and its dependent functions, and analyzing the functions and the dependent functions to identify at least two independent referentially transparent functions that are executable with necessary data and that have not yet executed;
analysing the at least two identified independent referentially transparent functions to determine the necessary data that will be used by the identified at least two independent referentially transparent functions in the course of their execution; at least until the act of analysing to determine determines that either,
no further necessary data for the at least two identified referentially transparent functions can be determined without fetching the data, or
no further data is necessary for the at least two identified referentially transparent functions;
in response to determining that no more necessary data can be determined for the at least two identified referentially transparent functions without fetching or that not more data is necessary for the at least two identified referentially transparent functions, issuing an asynchronous computation batch query to a database server for the determined necessary data so as to aggregate the necessary data of the independent referentially transparent functions;
wherein the necessary data comprises data used in all branches of a branch statement when the branch statement is not evaluated;
receiving the necessary data; and
executing the at least two independent referentially transparent functions in parallel using the received necessary data.
14. A non-transitory machine-readable medium comprising instructions, which when implemented by one or more processors perform the operations comprising:
receiving an input in a web application to trigger execution of one or more functions;
in response to receiving the input,
traversing each executed function and its dependent functions;
analysing the functions and the dependent functions to identify at least two independent referentially transparent functions that are executable with necessary data, and that have not yet executed; and
analysing the at least two identified independent referentially transparent functions to determine the necessary data that will be used by the identified at least two independent referentially transparent functions in the course of their execution;
recursively continuing the acts of analysing to identify and analysing to determine at least until the act of analysing to determine determines that either,
no further necessary data for the at least two identified referentially transparent functions can be determined without fetching the data, or
no further data is necessary for the at least two identified referentially transparent functions;
in response to determining that no more necessary data can be determined for the at least two identified referentially transparent functions without fetching or that not more data is necessary for the at least two identified referentially transparent functions, issuing an asynchronous computation batch query to a database server for the determined necessary data so as to aggregate the necessary data of the independent referentially transparent functions;
wherein the necessary data comprises data used in all branches of a branch statement when the branch statement is not evaluated;
receiving the necessary data; and
executing the at least two independent referentially transparent functions in parallel using the received necessary data.
15. A non-transitory machine-readable medium as inclaim 14, further comprising the operation of recursively applying the operations of analyzing, issuing, receiving and executing to dependent functions of the independent referentially transparent functions, recursively, treating the dependent functions as independent referentially transparent functions.
16. A non-transitory machine-readable medium as inclaim 14, wherein the independent referentially transparent functions have side-effects and maintain referential transparency for a duration sufficient to parallelize execution.
17. A non-transitory machine-readable medium as inclaim 14, herein the independent referentially transparent functions have side-effects that do not affect the parallel execution of the independent referentially transparent functions.
18. A non-transitory machine-readable medium as inclaim 14, further comprising a cache containing previously received necessary data which removes data from the batch query if it is contained in the cache.
19. A method comprising:
receiving an input in a web application to trigger execution of one or more functions;
in response to receiving the input, executing multiple independent referentially transparent functions in parallel, wherein each function is executed in parallel until more data is required to continue execution or the function ends;
traversing each of the multiple functions to determine each of functions executing in parallel that require more data to continue execution;
in response to determining that each function executing in parallel that has not ended requires more data, issuing an asynchronous computation batch query to a database server for the determined necessary data required to continue execution of each function executing in parallel that has not ended that requires more data so as to aggregate the necessary data of the independent referentially transparent functions;
wherein the necessary data comprises data used in all branches of a branch statement when the branch statement is not evaluated;
receiving the necessary data;
continuing execution of the independent referentially transparent functions in parallel using the received necessary data; and
iterating the operations of executing, traversing, determining, issuing, receiving and executing, as long as one or more of the functions that require more data to continue execution.
20. The method ofclaim 6,
wherein executing the at least two independent referentially transparent functions includes executing using the received additional necessary data.
US12/697,1722010-01-292010-01-29Asynchronous computation batchingActive2033-08-15US9152668B1 (en)

Priority Applications (1)

Application NumberPriority DateFiling DateTitle
US12/697,172US9152668B1 (en)2010-01-292010-01-29Asynchronous computation batching

Applications Claiming Priority (1)

Application NumberPriority DateFiling DateTitle
US12/697,172US9152668B1 (en)2010-01-292010-01-29Asynchronous computation batching

Publications (1)

Publication NumberPublication Date
US9152668B1true US9152668B1 (en)2015-10-06

Family

ID=54203809

Family Applications (1)

Application NumberTitlePriority DateFiling Date
US12/697,172Active2033-08-15US9152668B1 (en)2010-01-292010-01-29Asynchronous computation batching

Country Status (1)

CountryLink
US (1)US9152668B1 (en)

Cited By (52)

* Cited by examiner, † Cited by third party
Publication numberPriority datePublication dateAssigneeTitle
US10491663B1 (en)*2013-10-282019-11-26Amazon Technologies, Inc.Heterogeneous computations on homogeneous input data
US10606859B2 (en)2014-11-242020-03-31Asana, Inc.Client side system and method for search backed calendar user interface
US10613735B1 (en)2018-04-042020-04-07Asana, Inc.Systems and methods for preloading an amount of content based on user scrolling
US10684870B1 (en)2019-01-082020-06-16Asana, Inc.Systems and methods for determining and presenting a graphical user interface including template metrics
US10785046B1 (en)2018-06-082020-09-22Asana, Inc.Systems and methods for providing a collaboration work management platform that facilitates differentiation between users in an overarching group and one or more subsets of individual users
US10956845B1 (en)2018-12-062021-03-23Asana, Inc.Systems and methods for generating prioritization models and predicting workflow prioritizations
US11030168B2 (en)2018-12-112021-06-08Sap SeParallelization of order dependent procedures during software change processes
US11055219B2 (en)*2017-05-022021-07-06International Business Machines CorporationProviding data values using asynchronous operations and querying a plurality of servers
US11113667B1 (en)2018-12-182021-09-07Asana, Inc.Systems and methods for providing a dashboard for a collaboration work management platform
US11138021B1 (en)2018-04-022021-10-05Asana, Inc.Systems and methods to facilitate task-specific workspaces for a collaboration work management platform
US11157406B2 (en)2017-05-022021-10-26International Business Machines CorporationMethods for providing data values using asynchronous operations and querying a plurality of servers
US11226797B2 (en)*2018-05-242022-01-18Chaldal, Inc.Representation and analysis of workflows using abstract syntax trees
US11341445B1 (en)2019-11-142022-05-24Asana, Inc.Systems and methods to measure and visualize threshold of user workload
US11398998B2 (en)2018-02-282022-07-26Asana, Inc.Systems and methods for generating tasks based on chat sessions between users of a collaboration environment
US11405435B1 (en)2020-12-022022-08-02Asana, Inc.Systems and methods to present views of records in chat sessions between users of a collaboration environment
US11455601B1 (en)2020-06-292022-09-27Asana, Inc.Systems and methods to measure and visualize workload for completing individual units of work
US11553045B1 (en)2021-04-292023-01-10Asana, Inc.Systems and methods to automatically update status of projects within a collaboration environment
US11561677B2 (en)2019-01-092023-01-24Asana, Inc.Systems and methods for generating and tracking hardcoded communications in a collaboration management platform
US11568366B1 (en)2018-12-182023-01-31Asana, Inc.Systems and methods for generating status requests for units of work
US11568339B2 (en)2020-08-182023-01-31Asana, Inc.Systems and methods to characterize units of work based on business objectives
US11599855B1 (en)2020-02-142023-03-07Asana, Inc.Systems and methods to attribute automated actions within a collaboration environment
US11610053B2 (en)2017-07-112023-03-21Asana, Inc.Database model which provides management of custom fields and methods and apparatus therfor
US11635884B1 (en)2021-10-112023-04-25Asana, Inc.Systems and methods to provide personalized graphical user interfaces within a collaboration environment
US11652762B2 (en)2018-10-172023-05-16Asana, Inc.Systems and methods for generating and presenting graphical user interfaces
US11676107B1 (en)2021-04-142023-06-13Asana, Inc.Systems and methods to facilitate interaction with a collaboration environment based on assignment of project-level roles
US11694162B1 (en)2021-04-012023-07-04Asana, Inc.Systems and methods to recommend templates for project-level graphical user interfaces within a collaboration environment
US11720858B2 (en)2020-07-212023-08-08Asana, Inc.Systems and methods to facilitate user engagement with units of work assigned within a collaboration environment
US11756000B2 (en)2021-09-082023-09-12Asana, Inc.Systems and methods to effectuate sets of automated actions within a collaboration environment including embedded third-party content based on trigger events
US11769115B1 (en)2020-11-232023-09-26Asana, Inc.Systems and methods to provide measures of user workload when generating units of work based on chat sessions between users of a collaboration environment
US11783253B1 (en)2020-02-112023-10-10Asana, Inc.Systems and methods to effectuate sets of automated actions outside and/or within a collaboration environment based on trigger events occurring outside and/or within the collaboration environment
US11782737B2 (en)2019-01-082023-10-10Asana, Inc.Systems and methods for determining and presenting a graphical user interface including template metrics
US11792028B1 (en)2021-05-132023-10-17Asana, Inc.Systems and methods to link meetings with units of work of a collaboration environment
US11803814B1 (en)2021-05-072023-10-31Asana, Inc.Systems and methods to facilitate nesting of portfolios within a collaboration environment
US11809222B1 (en)2021-05-242023-11-07Asana, Inc.Systems and methods to generate units of work within a collaboration environment based on selection of text
US11836681B1 (en)2022-02-172023-12-05Asana, Inc.Systems and methods to generate records within a collaboration environment
US11863601B1 (en)2022-11-182024-01-02Asana, Inc.Systems and methods to execute branching automation schemes in a collaboration environment
US11997425B1 (en)2022-02-172024-05-28Asana, Inc.Systems and methods to generate correspondences between portions of recorded audio content and records of a collaboration environment
US12051045B1 (en)2022-04-282024-07-30Asana, Inc.Systems and methods to characterize work unit records of a collaboration environment based on stages within a workflow
US12072979B2 (en)2020-03-192024-08-27Peter Andrew BlemelApparatus and application device for protection of data and information
US12093896B1 (en)2022-01-102024-09-17Asana, Inc.Systems and methods to prioritize resources of projects within a collaboration environment
US12093859B1 (en)2021-06-022024-09-17Asana, Inc.Systems and methods to measure and visualize workload for individual users
US12118514B1 (en)2022-02-172024-10-15Asana, Inc.Systems and methods to generate records within a collaboration environment based on a machine learning model trained from a text corpus
US12141756B1 (en)2021-05-242024-11-12Asana, Inc.Systems and methods to generate project-level graphical user interfaces within a collaboration environment
US12159262B1 (en)2021-10-042024-12-03Asana, Inc.Systems and methods to provide user-generated graphical user interfaces within a collaboration environment
US12182505B1 (en)2021-06-102024-12-31Asana, Inc.Systems and methods to provide user-generated project-level graphical user interfaces within a collaboration environment
US12190292B1 (en)2022-02-172025-01-07Asana, Inc.Systems and methods to train and/or use a machine learning model to generate correspondences between portions of recorded audio content and work unit records of a collaboration environment
US12229726B2 (en)2020-02-202025-02-18Asana, Inc.Systems and methods to generate units of work in a collaboration environment
US12287849B1 (en)2022-11-282025-04-29Asana, Inc.Systems and methods to automatically classify records managed by a collaboration environment
US12288171B1 (en)2022-07-182025-04-29Asana, Inc.Systems and methods to provide records for new users of a collaboration environment
US12401655B1 (en)2023-04-242025-08-26Asana, Inc.Systems and methods to manage access to assets of a computer environment based on user and asset grouping
US12412156B1 (en)2022-07-212025-09-09Asana, Inc.Systems and methods to characterize work unit records of a collaboration environment based on freeform arrangement of visual content items
US12423121B1 (en)2023-11-092025-09-23Asana, Inc.Systems and methods to customize a user interface of a collaboration environment based on ranking of work unit records managed by the collaboration environment

Citations (4)

* Cited by examiner, † Cited by third party
Publication numberPriority datePublication dateAssigneeTitle
US20040088318A1 (en)*1999-12-302004-05-06Brady Shaun MichaelComputer database system and method for collecting and reporting real estate property and loan performance information over a computer driven network
US20060101237A1 (en)*2003-03-172006-05-11Stefan MohlData flow machine
US20080183667A1 (en)*2007-01-192008-07-31International Business Machines CorporationAutomated and dynamic management of query views for database workloads
US20100199257A1 (en)*2009-01-312010-08-05Ted James BiggerstaffAutomated Partitioning of a Computation for Parallel or Other High Capability Architecture

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication numberPriority datePublication dateAssigneeTitle
US20040088318A1 (en)*1999-12-302004-05-06Brady Shaun MichaelComputer database system and method for collecting and reporting real estate property and loan performance information over a computer driven network
US20060101237A1 (en)*2003-03-172006-05-11Stefan MohlData flow machine
US20080183667A1 (en)*2007-01-192008-07-31International Business Machines CorporationAutomated and dynamic management of query views for database workloads
US20100199257A1 (en)*2009-01-312010-08-05Ted James BiggerstaffAutomated Partitioning of a Computation for Parallel or Other High Capability Architecture

Cited By (97)

* Cited by examiner, † Cited by third party
Publication numberPriority datePublication dateAssigneeTitle
US10491663B1 (en)*2013-10-282019-11-26Amazon Technologies, Inc.Heterogeneous computations on homogeneous input data
US10846297B2 (en)2014-11-242020-11-24Asana, Inc.Client side system and method for search backed calendar user interface
US11263228B2 (en)2014-11-242022-03-01Asana, Inc.Continuously scrollable calendar user interface
US10606859B2 (en)2014-11-242020-03-31Asana, Inc.Client side system and method for search backed calendar user interface
US10810222B2 (en)2014-11-242020-10-20Asana, Inc.Continuously scrollable calendar user interface
US11561996B2 (en)2014-11-242023-01-24Asana, Inc.Continuously scrollable calendar user interface
US11693875B2 (en)2014-11-242023-07-04Asana, Inc.Client side system and method for search backed calendar user interface
US10970299B2 (en)2014-11-242021-04-06Asana, Inc.Client side system and method for search backed calendar user interface
US11157406B2 (en)2017-05-022021-10-26International Business Machines CorporationMethods for providing data values using asynchronous operations and querying a plurality of servers
US11055219B2 (en)*2017-05-022021-07-06International Business Machines CorporationProviding data values using asynchronous operations and querying a plurality of servers
US11775745B2 (en)2017-07-112023-10-03Asana, Inc.Database model which provides management of custom fields and methods and apparatus therfore
US11610053B2 (en)2017-07-112023-03-21Asana, Inc.Database model which provides management of custom fields and methods and apparatus therfor
US12197851B2 (en)2017-07-112025-01-14Asana, Inc.Database model which provides management of custom fields and methods and apparatus therfor
US11695719B2 (en)2018-02-282023-07-04Asana, Inc.Systems and methods for generating tasks based on chat sessions between users of a collaboration environment
US11398998B2 (en)2018-02-282022-07-26Asana, Inc.Systems and methods for generating tasks based on chat sessions between users of a collaboration environment
US11956193B2 (en)2018-02-282024-04-09Asana, Inc.Systems and methods for generating tasks based on chat sessions between users of a collaboration environment
US11138021B1 (en)2018-04-022021-10-05Asana, Inc.Systems and methods to facilitate task-specific workspaces for a collaboration work management platform
US11720378B2 (en)2018-04-022023-08-08Asana, Inc.Systems and methods to facilitate task-specific workspaces for a collaboration work management platform
US11656754B2 (en)2018-04-042023-05-23Asana, Inc.Systems and methods for preloading an amount of content based on user scrolling
US10613735B1 (en)2018-04-042020-04-07Asana, Inc.Systems and methods for preloading an amount of content based on user scrolling
US11327645B2 (en)2018-04-042022-05-10Asana, Inc.Systems and methods for preloading an amount of content based on user scrolling
US10983685B2 (en)2018-04-042021-04-20Asana, Inc.Systems and methods for preloading an amount of content based on user scrolling
US11226797B2 (en)*2018-05-242022-01-18Chaldal, Inc.Representation and analysis of workflows using abstract syntax trees
US11632260B2 (en)2018-06-082023-04-18Asana, Inc.Systems and methods for providing a collaboration work management platform that facilitates differentiation between users in an overarching group and one or more subsets of individual users
US10785046B1 (en)2018-06-082020-09-22Asana, Inc.Systems and methods for providing a collaboration work management platform that facilitates differentiation between users in an overarching group and one or more subsets of individual users
US11831457B2 (en)2018-06-082023-11-28Asana, Inc.Systems and methods for providing a collaboration work management platform that facilitates differentiation between users in an overarching group and one or more subsets of individual users
US12119949B2 (en)2018-06-082024-10-15Asana, Inc.Systems and methods for providing a collaboration work management platform that facilitates differentiation between users in an overarching group and one or more subsets of individual users
US11290296B2 (en)2018-06-082022-03-29Asana, Inc.Systems and methods for providing a collaboration work management platform that facilitates differentiation between users in an overarching group and one or more subsets of individual users
US11943179B2 (en)2018-10-172024-03-26Asana, Inc.Systems and methods for generating and presenting graphical user interfaces
US11652762B2 (en)2018-10-172023-05-16Asana, Inc.Systems and methods for generating and presenting graphical user interfaces
US11341444B2 (en)2018-12-062022-05-24Asana, Inc.Systems and methods for generating prioritization models and predicting workflow prioritizations
US11694140B2 (en)2018-12-062023-07-04Asana, Inc.Systems and methods for generating prioritization models and predicting workflow prioritizations
US12026648B2 (en)2018-12-062024-07-02Asana, Inc.Systems and methods for generating prioritization models and predicting workflow prioritizations
US10956845B1 (en)2018-12-062021-03-23Asana, Inc.Systems and methods for generating prioritization models and predicting workflow prioritizations
US11030168B2 (en)2018-12-112021-06-08Sap SeParallelization of order dependent procedures during software change processes
US11568366B1 (en)2018-12-182023-01-31Asana, Inc.Systems and methods for generating status requests for units of work
US11620615B2 (en)2018-12-182023-04-04Asana, Inc.Systems and methods for providing a dashboard for a collaboration work management platform
US12154075B2 (en)2018-12-182024-11-26Asana, Inc.Systems and methods for generating status requests for units of work
US11113667B1 (en)2018-12-182021-09-07Asana, Inc.Systems and methods for providing a dashboard for a collaboration work management platform
US11810074B2 (en)2018-12-182023-11-07Asana, Inc.Systems and methods for providing a dashboard for a collaboration work management platform
US12073363B2 (en)2018-12-182024-08-27Asana, Inc.Systems and methods for providing a dashboard for a collaboration work management platform
US10922104B2 (en)2019-01-082021-02-16Asana, Inc.Systems and methods for determining and presenting a graphical user interface including template metrics
US11288081B2 (en)2019-01-082022-03-29Asana, Inc.Systems and methods for determining and presenting a graphical user interface including template metrics
US10684870B1 (en)2019-01-082020-06-16Asana, Inc.Systems and methods for determining and presenting a graphical user interface including template metrics
US12299464B2 (en)2019-01-082025-05-13Asana, Inc.Systems and methods for determining and presenting a graphical user interface including template metrics
US11782737B2 (en)2019-01-082023-10-10Asana, Inc.Systems and methods for determining and presenting a graphical user interface including template metrics
US11561677B2 (en)2019-01-092023-01-24Asana, Inc.Systems and methods for generating and tracking hardcoded communications in a collaboration management platform
US12026649B2 (en)2019-11-142024-07-02Asana, Inc.Systems and methods to measure and visualize threshold of user workload
US11341445B1 (en)2019-11-142022-05-24Asana, Inc.Systems and methods to measure and visualize threshold of user workload
US11783253B1 (en)2020-02-112023-10-10Asana, Inc.Systems and methods to effectuate sets of automated actions outside and/or within a collaboration environment based on trigger events occurring outside and/or within the collaboration environment
US11599855B1 (en)2020-02-142023-03-07Asana, Inc.Systems and methods to attribute automated actions within a collaboration environment
US11847613B2 (en)2020-02-142023-12-19Asana, Inc.Systems and methods to attribute automated actions within a collaboration environment
US12229726B2 (en)2020-02-202025-02-18Asana, Inc.Systems and methods to generate units of work in a collaboration environment
US12072979B2 (en)2020-03-192024-08-27Peter Andrew BlemelApparatus and application device for protection of data and information
US11455601B1 (en)2020-06-292022-09-27Asana, Inc.Systems and methods to measure and visualize workload for completing individual units of work
US11636432B2 (en)2020-06-292023-04-25Asana, Inc.Systems and methods to measure and visualize workload for completing individual units of work
US11995611B2 (en)2020-07-212024-05-28Asana, Inc.Systems and methods to facilitate user engagement with units of work assigned within a collaboration environment
US11720858B2 (en)2020-07-212023-08-08Asana, Inc.Systems and methods to facilitate user engagement with units of work assigned within a collaboration environment
US12045750B2 (en)2020-08-182024-07-23Asana, Inc.Systems and methods to characterize units of work based on business objectives
US11734625B2 (en)2020-08-182023-08-22Asana, Inc.Systems and methods to characterize units of work based on business objectives
US11568339B2 (en)2020-08-182023-01-31Asana, Inc.Systems and methods to characterize units of work based on business objectives
US12039497B2 (en)2020-11-232024-07-16Asana, Inc.Systems and methods to provide measures of user workload when generating units of work based on chat sessions between users of a collaboration environment
US11769115B1 (en)2020-11-232023-09-26Asana, Inc.Systems and methods to provide measures of user workload when generating units of work based on chat sessions between users of a collaboration environment
US11405435B1 (en)2020-12-022022-08-02Asana, Inc.Systems and methods to present views of records in chat sessions between users of a collaboration environment
US11902344B2 (en)2020-12-022024-02-13Asana, Inc.Systems and methods to present views of records in chat sessions between users of a collaboration environment
US12131293B2 (en)2021-04-012024-10-29Asana, Inc.Systems and methods to recommend templates for project-level graphical user interfaces within a collaboration environment
US11694162B1 (en)2021-04-012023-07-04Asana, Inc.Systems and methods to recommend templates for project-level graphical user interfaces within a collaboration environment
US12299638B2 (en)2021-04-142025-05-13Asana, Inc.Systems and methods to facilitate interaction with a collaboration environment based on assignment of project-level roles
US11676107B1 (en)2021-04-142023-06-13Asana, Inc.Systems and methods to facilitate interaction with a collaboration environment based on assignment of project-level roles
US11553045B1 (en)2021-04-292023-01-10Asana, Inc.Systems and methods to automatically update status of projects within a collaboration environment
US12028420B2 (en)2021-04-292024-07-02Asana, Inc.Systems and methods to automatically update status of projects within a collaboration environment
US12124997B2 (en)2021-05-072024-10-22Asana, Inc.Systems and methods to facilitate nesting of portfolios within a collaboration environment
US11803814B1 (en)2021-05-072023-10-31Asana, Inc.Systems and methods to facilitate nesting of portfolios within a collaboration environment
US12316470B2 (en)2021-05-132025-05-27Asana, Inc.Systems and methods to link meetings with units of work of a collaboration environment
US11792028B1 (en)2021-05-132023-10-17Asana, Inc.Systems and methods to link meetings with units of work of a collaboration environment
US12141756B1 (en)2021-05-242024-11-12Asana, Inc.Systems and methods to generate project-level graphical user interfaces within a collaboration environment
US11809222B1 (en)2021-05-242023-11-07Asana, Inc.Systems and methods to generate units of work within a collaboration environment based on selection of text
US12174798B2 (en)2021-05-242024-12-24Asana, Inc.Systems and methods to generate units of work within a collaboration environment based on selection of text
US12093859B1 (en)2021-06-022024-09-17Asana, Inc.Systems and methods to measure and visualize workload for individual users
US12182505B1 (en)2021-06-102024-12-31Asana, Inc.Systems and methods to provide user-generated project-level graphical user interfaces within a collaboration environment
US11756000B2 (en)2021-09-082023-09-12Asana, Inc.Systems and methods to effectuate sets of automated actions within a collaboration environment including embedded third-party content based on trigger events
US12159262B1 (en)2021-10-042024-12-03Asana, Inc.Systems and methods to provide user-generated graphical user interfaces within a collaboration environment
US11635884B1 (en)2021-10-112023-04-25Asana, Inc.Systems and methods to provide personalized graphical user interfaces within a collaboration environment
US12039158B2 (en)2021-10-112024-07-16Asana, Inc.Systems and methods to provide personalized graphical user interfaces within a collaboration environment
US12093896B1 (en)2022-01-102024-09-17Asana, Inc.Systems and methods to prioritize resources of projects within a collaboration environment
US11997425B1 (en)2022-02-172024-05-28Asana, Inc.Systems and methods to generate correspondences between portions of recorded audio content and records of a collaboration environment
US12190292B1 (en)2022-02-172025-01-07Asana, Inc.Systems and methods to train and/or use a machine learning model to generate correspondences between portions of recorded audio content and work unit records of a collaboration environment
US12124998B2 (en)2022-02-172024-10-22Asana, Inc.Systems and methods to generate records within a collaboration environment
US12118514B1 (en)2022-02-172024-10-15Asana, Inc.Systems and methods to generate records within a collaboration environment based on a machine learning model trained from a text corpus
US11836681B1 (en)2022-02-172023-12-05Asana, Inc.Systems and methods to generate records within a collaboration environment
US12051045B1 (en)2022-04-282024-07-30Asana, Inc.Systems and methods to characterize work unit records of a collaboration environment based on stages within a workflow
US12288171B1 (en)2022-07-182025-04-29Asana, Inc.Systems and methods to provide records for new users of a collaboration environment
US12412156B1 (en)2022-07-212025-09-09Asana, Inc.Systems and methods to characterize work unit records of a collaboration environment based on freeform arrangement of visual content items
US11863601B1 (en)2022-11-182024-01-02Asana, Inc.Systems and methods to execute branching automation schemes in a collaboration environment
US12287849B1 (en)2022-11-282025-04-29Asana, Inc.Systems and methods to automatically classify records managed by a collaboration environment
US12401655B1 (en)2023-04-242025-08-26Asana, Inc.Systems and methods to manage access to assets of a computer environment based on user and asset grouping
US12423121B1 (en)2023-11-092025-09-23Asana, Inc.Systems and methods to customize a user interface of a collaboration environment based on ranking of work unit records managed by the collaboration environment

Similar Documents

PublicationPublication DateTitle
US9152668B1 (en)Asynchronous computation batching
US8627199B1 (en)Incremental computing of changes to computer user interfaces
US8479178B2 (en)Compiler in a managed application context
US8108848B2 (en)Automatic and transparent memoization
US10489170B2 (en)Application warmup engine
US9372688B1 (en)Automatic discovery of a JavaScript API
US8631394B2 (en)Static resource processing
AU2012256399B2 (en)Registration and execution of highly concurrent processing tasks
US11475004B2 (en)Optimizing database queries
US20230026391A1 (en)Automatic machine learning feature backward stripping
CN112506602B (en) Page generation method and device, electronic device, computer readable medium
US8578355B1 (en)Scenario based optimization
US11934287B2 (en)Method, electronic device and computer program product for processing data
US20170344363A1 (en)Dependency management
US11188364B1 (en)Compilation strategy for a sharable application snapshot
WO2020132833A1 (en)Methods and apparatus to process machine learning model in multi-process web browser environment
JP6379654B2 (en) Process execution program, process execution method, and information processing apparatus
US10324908B2 (en)Exposing database artifacts
US20110302285A1 (en)Update server to update rendered content
KR20220054398A (en) Custom route processes for application groups
US11232105B2 (en)Unified metrics computation platform
US10268461B2 (en)Global data flow optimization for machine learning programs
US10013259B2 (en)User initiated data rollback using operating system partitions
CN108431769A (en)The database and service upgrade of no shutdown time
EP4083785A1 (en)Profiling and optimization of compiler-generated code

Legal Events

DateCodeTitleDescription
ASAssignment

Owner name:ASANA, INC., CALIFORNIA

Free format text:ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:MOSKOVITZ, DUSTIN;ROSENSTEIN, JUSTIN;REEL/FRAME:024256/0941

Effective date:20100413

FEPPFee payment procedure

Free format text:PAYOR NUMBER ASSIGNED (ORIGINAL EVENT CODE: ASPN); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

STCFInformation on status: patent grant

Free format text:PATENTED CASE

MAFPMaintenance fee payment

Free format text:PAYMENT OF MAINTENANCE FEE, 4TH YR, SMALL ENTITY (ORIGINAL EVENT CODE: M2551); ENTITY STATUS OF PATENT OWNER: SMALL ENTITY

Year of fee payment:4

FEPPFee payment procedure

Free format text:ENTITY STATUS SET TO UNDISCOUNTED (ORIGINAL EVENT CODE: BIG.); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

Free format text:ENTITY STATUS SET TO SMALL (ORIGINAL EVENT CODE: SMAL); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

ASAssignment

Owner name:SILICON VALLEY BANK, AS ADMINISTRATIVE AGENT, CALIFORNIA

Free format text:SECURITY INTEREST;ASSIGNOR:ASANA, INC.;REEL/FRAME:061898/0346

Effective date:20221107

MAFPMaintenance fee payment

Free format text:PAYMENT OF MAINTENANCE FEE, 8TH YEAR, LARGE ENTITY (ORIGINAL EVENT CODE: M1552); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

Year of fee payment:8


[8]ページ先頭

©2009-2025 Movatter.jp