US20120330915A1 - Streaming transaction notifications - Google Patents

Streaming transaction notifications Download PDF

Info

Publication number
US20120330915A1
US20120330915A1 US13/529,700 US201213529700A US2012330915A1 US 20120330915 A1 US20120330915 A1 US 20120330915A1 US 201213529700 A US201213529700 A US 201213529700A US 2012330915 A1 US2012330915 A1 US 2012330915A1
Authority
US
United States
Prior art keywords
data
notification
database
query
client device
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.)
Abandoned
Application number
US13/529,700
Inventor
Vinod Mehra
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.)
Salesforce Inc
Original Assignee
Salesforce com 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 Salesforce com Inc filed Critical Salesforce com Inc
Priority to US13/529,700 priority Critical patent/US20120330915A1/en
Assigned to SALESFORCE.COM, INC. reassignment SALESFORCE.COM, INC. ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: MEHRA, VINOD
Publication of US20120330915A1 publication Critical patent/US20120330915A1/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/24Querying
    • G06F16/245Query processing
    • G06F16/2455Query execution
    • G06F16/24568Data stream processing; Continuous queries
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/23Updating
    • G06F16/2358Change logging, detection, and notification
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/25Integrating or interfacing systems involving database management systems
    • G06F16/252Integrating or interfacing systems involving database management systems between a Database Management System and a front-end application

Definitions

  • Embodiments of the subject matter described herein relate generally to computer systems configured to support on-demand applications, and more particularly, embodiments of the subject matter relate to methods and systems for providing notifications of data transactions substantially in real-time.
  • a “cloud” computing model allows applications to be provided over the network “as a service” or “on-demand” by an infrastructure provider.
  • the infrastructure provider typically abstracts the underlying hardware and other resources used to deliver a customer-developed application so that the customer no longer needs to operate and support dedicated server hardware.
  • the cloud computing model can often provide substantial cost savings to the customer over the life of the application because the customer no longer needs to provide dedicated network infrastructure, electrical and temperature controls, physical security and other logistics in support of dedicated server hardware.
  • Multi-tenant cloud-based architectures have been developed to improve collaboration, integration, and community-based cooperation between customer tenants without sacrificing data security.
  • multi-tenancy refers to a system where a single hardware and software platform simultaneously supports multiple user groups (also referred to as “organizations” or “tenants”) from a common data storage element (also referred to as a “multi-tenant database”).
  • the multi-tenant design provides a number of advantages over conventional server virtualization systems. First, the multi-tenant platform operator can often make improvements to the platform based upon collective information from the entire tenant community.
  • the multi-tenant architecture therefore allows convenient and cost effective sharing of similar application features between multiple sets of users.
  • FIG. 1 is a block diagram of an exemplary application system
  • FIG. 2 is a flow diagram of an exemplary transaction identification process suitable for implementation by the application system of FIG. 1 ;
  • FIG. 3 depicts an exemplary definition table suitable for use with the transaction identification process of FIG. 2 ;
  • FIG. 4 depicts an exemplary notification table suitable for use with the transaction identification process of FIG. 2 ;
  • FIG. 5 is a flow diagram of an exemplary transaction notification process suitable for implementation by the application system of FIG. 1 ;
  • FIG. 6 is a diagram illustrating communications within the application system of FIG. 1 in accordance with one exemplary embodiment of the transaction identification process of FIG. 2 in conjunction with the transaction notification process of FIG. 5 ;
  • FIG. 7 is a block diagram of an exemplary multi-tenant system suitable for implementation by the application system of FIG. 1 in accordance with one or more embodiments.
  • Embodiments of the subject matter described herein generally relate to identifying data transactions that satisfy registered streaming queries and providing notification of those data transactions to users subscribed to those streaming queries substantially in real-time.
  • a streaming query is associated with a query statement that is used to identify data transactions that users who are subscribed to that streaming query should be notified of substantially in real-time.
  • a data transaction that satisfies a query statement associated with a streaming query and any notification qualifier associated with the streaming query may be understood as a notification-triggering data transaction that results in notifications provided to subscribed users.
  • an application server monitors data transactions performed on behalf of client devices accessing the database via the application server for data transactions that satisfy one or more of the query statements associated with the streaming queries.
  • the application server In response to identifying a data transaction that satisfies a streaming query, the application server automatically updates the database substantially in real-time to indicate the entry (or record) in the database that is associated with that notification-triggering data transaction along with the association between that database entry (or record) and the streaming query that the notification-triggering data transaction satisfied.
  • other application servers monitor the database on a substantially continuous basis (e.g., by periodically polling the database) for indications of data transactions satisfying streaming queries that are subscribed to by client devices accessing the database via these other application servers.
  • an application server identifies an indication of a data transaction satisfying a streaming query that is subscribed to by a client device accessing the database via that application server
  • the application server automatically obtains, from the database, the data associated with the database entry (or record) associated with the data transaction that satisfied the streaming query and provides at least a portion of the obtained data to the subscribed client device.
  • a streaming connection (or channel) is established with the subscribed client device upon receiving a subscription request for the streaming query, so that the application server may provide the portion of the obtained data to the subscribed client device with limited delay.
  • a long-polling request is held open by the application server, thereby allowing the application server to push the obtained data to the subscribed client device by providing a long-polling response message that includes the obtained data. In this manner, a portion of the data associated with a notification-triggering data transaction can be provided to the subscribed client device without having to perform additional handshaking or other signaling to establish the connection.
  • the users of the subscribed client devices may be notified of those data transactions substantially in real-time without having to continuously query the database for those data transactions, thereby conserving database resources.
  • the application servers are part of a multi-tenant system and provide instances of virtual applications to multiple different tenants, wherein the database is realized as a multi-tenant database maintaining data associated with the different tenants.
  • the database is realized as a multi-tenant database maintaining data associated with the different tenants.
  • an exemplary on-demand application system 100 includes one or more application servers 102 , 104 that dynamically create and support virtual applications that are provided to one or more client devices 106 , 108 via a communications network 112 , such as a wired and/or wireless computer network, a cellular network, a mobile broadband network, a radio network, or the like.
  • a communications network 112 such as a wired and/or wireless computer network, a cellular network, a mobile broadband network, a radio network, or the like.
  • each respective application server 102 , 104 includes or otherwise implements an application platform 122 , 132 that generates respective instances of virtual applications 124 , 134 at run-time (e.g., or “on-demand”) based upon data stored or otherwise maintained by a database 110 (e.g., in data tables 114 ) that is communicatively coupled to the application servers 102 , 104 via the network 112 .
  • the database 110 is realized as a multi-tenant database that is shared between multiple tenants, that is, the database 110 may store or otherwise maintain data associated with a number of different tenants, as described in greater detail below in the context of FIG. 7 .
  • practical embodiments of the application system 100 may include any number of client devices, with the application servers 102 , 104 providing multiple instances of virtual applications to multiple tenants supported by the database 110 .
  • the application system 100 is configured to support users of client devices subscribing to streaming queries so that subscribed users receive substantially real-time notifications of transactions with respect to the database 110 that satisfy a streaming query that a respective user has subscribed to.
  • the first application server 102 monitors data transactions initiated or otherwise performed on behalf of its associated client devices 106 , identifies when a data transaction satisfies a streaming query, and updates a notification table 116 in the database 110 to indicate that data transaction.
  • the first application server 102 may alternatively be referred to herein as the originating application server.
  • the second application server 104 receives, from the client device 108 , a subscription request for a streaming query, monitors the notification table 116 for indication of data transactions satisfying a subscribed streaming query, and in response to identifying a data transaction satisfying a subscribed query, obtains data for the database entry associated with that data transaction from the database 110 and provides at least a portion of the obtained data to the subscribing client device 108 .
  • the second application server 104 may alternatively be referred to herein as the distributing application server.
  • FIG. 1 is merely one simplified representation of the application system 100 provided for purposes of explanation and is not intended to limit the subject matter described herein in any way.
  • the originating application server 102 may perform the processes, tasks, functionality and/or other features described in the context of the distributing application server 104 , and vice versa.
  • the originating application server 102 may also function as a distributing application server (e.g., by performing the processes, tasks, functionality and/or other features described in the context of the distributing application server 104 in parallel), and similarly, the distributing application server 104 may also function as an originating application server.
  • the database 110 may be realized as a relational database or another suitable database capable of supporting the operations of the application system 100 described herein.
  • the database 110 maintains one or more data tables 114 which contain data associated with users and/or tenants in the application system 100 to support instances of virtual applications 124 , 134 generated by the application servers 102 , 104 .
  • the database 110 may include a database management system or other equivalent software that supports querying the data tables 114 (e.g., determining an optimal query plan and retrieving a particular subset of data from the data tables 114 in response to a query initiated or otherwise provided by a virtual application) and outputting the result of a query statement to a querying application server 102 , 104 .
  • the database 110 also includes or otherwise maintains a definition table 118 that stores or otherwise maintains definition information pertaining to the streaming queries supported by the application system 100 , as described in greater detail below in the context of FIGS. 2-3 .
  • each row or entry in the definition table 118 may correspond to a streaming query that was previously registered or otherwise defined by a user of a client device 106 , 108 , an administrator within the application system 100 , or the like.
  • the definition information for a respective streaming query includes the query statement associated with the streaming query, metadata for the query statement, one or more notification qualifiers for the streaming query, a unique identifier associated with the streaming query, and a tenant identifier associated with the tenant that defined the streaming query or is otherwise associated with the streaming query.
  • a user or administrator associated with a particular tenant may create or otherwise define a streaming query (e.g., by inputting or otherwise providing the query statement, notification qualifiers, and the like via a virtual application), wherein the identifier associated with that tenant (e.g., that tenant's organization identifier) is stored or otherwise maintained in association with that streaming query.
  • the metadata for the query statement includes the names or identifiers for the fields of data that are referenced or otherwise involved in the query statement and/or the names or identifiers for the type of object(s) referenced or otherwise involved in the query statement.
  • the application server 102 and/or application platform 122 may parse or otherwise analyze the query statement to identify the database object(s) referenced in the query statement along with the field(s) of the database object(s) referenced in the query statement, and store that identified metadata in association with the other definition information for the streaming query in the definition table 118 .
  • the notification qualifiers for the query statement limit or otherwise qualify the streaming query to particular types of data transactions that will result in notifications being provided to subscribers to that streaming query.
  • the notification qualifier may indicate that the streaming query is only applicable to updates or modifications of existing data entries in the data tables 114 that satisfy the query statement, in which case the creation or instantiation of new data entries in the data tables 114 that satisfy the query statement would not result in real-time notifications, as described in greater detail below.
  • the notification qualifier may indicate that the streaming query is only applicable to creation of new data entries in the data tables 114 that satisfy the query statement, in which case the modifications to existing entries in the data tables 114 that satisfy the query statement would not result in real-time notifications.
  • the database 110 also includes or otherwise maintains a notification table 116 that stores or otherwise maintains information pertaining to the data transactions satisfying a streaming query supported by the application system 100 that provide the basis for notifications provided to subscribed client devices.
  • a notification table 116 that stores or otherwise maintains information pertaining to the data transactions satisfying a streaming query supported by the application system 100 that provide the basis for notifications provided to subscribed client devices.
  • each row or entry in the notification table 118 corresponds to a notification-triggering data transaction, and each entry may include an identifier for the database entry (or record) in the data tables 114 associated with that notification-triggering data transaction, an identifier for the streaming query satisfied by that notification-triggering data transaction, the data transaction type, and a timestamp or another indication of the relative time at which the notification-triggering data transaction occurred.
  • a database transaction identification number is obtained from the database 110 and stored in association with the remaining information indicative of the notification-triggering data transaction.
  • the originating application server 102 generally represents a computing system or another combination of other processing logic, circuitry, hardware, firmware and/or other components configured to implement an application platform 122 that accesses the database 110 and generates or otherwise supports a virtual application 124 provided to the client device 106 via the network 112 .
  • the originating application server 102 may include a processing system (e.g., a processor, controller, or the like) that includes or otherwise accesses a memory or another non-transitory computer-readable medium of storing programming instructions for execution by the processing system that, when read and executed by the processing system, cause the application server 102 and/or application platform 122 to generate an instance of the virtual application 124 that is provided to the client device 106 and perform various additional tasks, operations, functions, and processes described in greater detail below.
  • a processing system e.g., a processor, controller, or the like
  • the originating application server 102 and/or application platform 122 accesses the database 110 to obtain or otherwise copy the streaming query definition information from the definition table 118 and caches or otherwise maintains the streaming query definition information in a local definition table 128 that is representative of the definition table 118 maintained by the database 110 .
  • the transaction monitoring engine 126 generally represents a software module or another feature that is generated or otherwise implemented by the application platform 122 to continuously monitor data transactions that are initiated or otherwise performed by the virtual application 124 on behalf of the client device 106 and identify data transactions that satisfy a streaming query based on the definition information maintained in definition table 128 .
  • the transaction monitoring engine 126 updates the notification table 116 in the database 110 by creating a new entry in the notification table 116 corresponding to that data transaction.
  • the client device 106 generally represents an electronic device that is utilized by a user to access the virtual application 124 and input and/or receive data pertaining to the virtual application 124 .
  • the client device 106 can be realized as any sort of personal computer, mobile telephone, tablet or other network-enabled electronic device.
  • the client device 106 includes a display device, such as a monitor, screen, or another conventional electronic display, capable of graphically presenting data and/or information provided by the virtual application 124 (including data retrieved from the database 110 ) along with a user input device, such as a keyboard, a mouse, a touchscreen, or the like, capable of receiving input data and/or other information from the user of the client device 106 .
  • the user manipulates the client device 106 to execute a web browser application 107 and contact the application server 102 using a networking protocol, such as the hypertext transport protocol (HTTP) or the like, to request access to the virtual application 124 , wherein the application platform 122 authenticates the user and generates the virtual application 124 at run time based upon information provided by the user of the client device 106 and/or data associated with the user (or the user's tenant) maintained by the database 110 (e.g., in one or more of the data tables 114 ).
  • the virtual application 124 includes code, data and/or other dynamic web content provided to the client device 106 that can be parsed, executed or otherwise presented by the browser application 107 running on the client device 106 .
  • the user of the client device 106 utilizes the virtual application 124 to interface with the database 110 to create, save, update, or otherwise modify data in one or more of the data tables 114 , wherein each data transaction initiated by the user of the client device 106 is monitored by the transaction monitoring engine 126 and compared to the list of streaming queries maintained in the definition table 128 to identify data transactions satisfying a streaming query.
  • the transaction monitoring engine 126 updates the notification table 116 by creating a new entry in the notification table 116 that indicates the notification-triggering data transaction (e.g., a new entry including the identifier associated with the database entry associated with the data transaction used for locating the database entry in the data tables 114 , the data transaction type, the identifier associated with the streaming query, and the like).
  • the distributing application server 104 is realized as a computing system or another combination of processing logic, circuitry, hardware, firmware and/or other components that implements an application platform 132 that accesses the database 110 and generates or otherwise supports a virtual application 134 provided to a second client device 108 via the network 112 .
  • the second client device 108 represents another electronic device that is utilized by another user to access an instance of a virtual application 134 and input and/or receive data pertaining to the virtual application 134 .
  • the distributing application server 104 includes a processing system that includes or otherwise accesses a memory or another non-transitory computer-readable medium of storing programming instructions for execution by the processing system that, when read and executed by the processing system, cause the application server 104 and/or application platform 132 to generate the virtual application 134 that is provided to the client device 108 and perform various additional tasks, operations, functions, and processes described in greater detail below.
  • the application platform 132 and/or virtual application 134 generates or otherwise provides a streaming engine 136 that is utilized to establish a streaming connection with the client device 108 for providing data used to generate substantially real-time notifications of data transactions satisfying a streaming query that the user of the client device 108 is subscribed to.
  • the user of the client device 108 may interact with the virtual application 134 presented by the browser application 109 indicate a streaming query that the user would like to be subscribed to, wherein the browser application 109 communicates with the streaming engine 136 to provide the subscription request for that streaming query and establish a streaming connection with the distributing application server 104 associated with that subscription request.
  • the subscription request includes an identifier associated with the streaming query the user would like to be subscribed to, wherein the application platform 132 and/or virtual application 134 generates or otherwise provides a subscription engine 137 that is coupled to the streaming engine 136 to receive the subscription request and an identifier associated with the client device 108 .
  • the identifier associated with the client device 108 is generated by the distributing application server 104 (e.g., by the streaming engine 136 in response to receiving a request from the client device 108 ) and assigned to the client device 108 by the distributing application server 104 .
  • the subscription engine 137 updates a subscription table 138 maintained by the distributing application server 104 and/or application platform 132 (e.g., in memory) to include the identifier associated with the streaming query and the identifier for associated with the client device 108 subscribed to that streaming query.
  • the subscription table 138 reflects the streaming queries that are currently subscribed to by client devices accessing the distributing application server 104 and the respective client device(s) associated with (or subscribed to) each streaming query. As described in greater detail below in the context of FIG.
  • the subscription engine 137 monitors the notification table 116 for data transactions that correspond to a streaming query that is subscribed to by the client device 108 , in response to identifying a data transaction satisfying the client device 108 user's subscribed streaming query, the subscription engine 137 obtains, from the data tables 114 , data associated with that notification-triggering data transaction and provides at least a portion of the obtained data to the streaming engine 136 along with the identifier for the subscribed client device 108 that should receive the obtained data.
  • the streaming engine 136 communicates or otherwise provides the portion of the obtained data to the browser application 109 via the streaming connection associated with the received subscribed client device identifier, and in turn, the browser application 109 generates or otherwise provides a notification of the data transaction that satisfied the subscribed streaming query to the user of the client device 108 substantially in real-time based on the portion of obtained data provided by the streaming engine 136 on the application server 104 .
  • the streaming engine 136 and the subscription engine 137 are allocated separate thread pools by the processing system of the distributing application server 104 .
  • FIG. 2 depicts an exemplary embodiment of a transaction identification process 200 suitable for implementation by an application system, such as application system 100 , to identify data transactions satisfying a streaming query for providing substantially real-time notifications of those data transactions on subscribed client devices, as described in greater detail below in the context of FIG. 5 .
  • the various tasks performed in connection with the illustrated process 200 may be performed by hardware, firmware and/or software executed by processing circuitry, or any combination thereof.
  • the following description may refer to elements mentioned above in connection with FIG. 1 .
  • portions of the transaction identification process 200 may be performed by different elements of the application system 100 . That said, in exemplary embodiments, the transaction identification process 200 is performed by the originating application server 102 and/or application platform 122 .
  • the transaction identification process 200 may include any number of additional or alternative tasks, the tasks need not be performed in the illustrated order and/or the tasks may be performed concurrently, and/or the transaction identification process 200 may be incorporated into a more comprehensive procedure or process having additional functionality not described in detail herein. Moreover, one or more of the tasks shown and described in the context of FIG. 2 could be omitted from a practical embodiment of the transaction identification process 200 as long as the intended overall functionality remains intact.
  • the transaction identification process 200 initializes or otherwise begins by obtaining definition information for streaming queries supported by the application system (task 202 ).
  • the originating application server 102 and/or application platform 122 accesses the database 110 to obtain or otherwise copy the streaming query definition information from the definition table 118 and caches or otherwise maintains the streaming query definition information in the local definition table 128 .
  • the local definition table 128 may maintain the query statement corresponding to that respective streaming query, metadata for that respective query statement, the tenant identifier associated with that respective streaming query, notification qualifiers for that respective streaming query, and an identifier associated with that respective streaming query.
  • FIG. 3 depicts an exemplary definition table 300 that may be maintained by the originating application server 102 .
  • the table 300 For a first streaming query assigned or otherwise allocated a first entry (or row) in the table 300 , the table 300 maintains an association between an identifier assigned to the first streaming query (e.g., ‘QUERY_ID_ 1 ’), the query statement associated with the first streaming query that was defined by the user or administrator who created the first streaming query (e.g., ‘QUERY_STATEMENT_ 1 ’), the data transaction type notification qualifier that was defined by the user or administrator who created the first streaming query (e.g., ‘UPDATE’ transactions only), the tenant identifier associated with the first streaming query (e.g., ‘ORGID_ 1 ’), along with metadata pertaining to the query statement associated with the first streaming query (e.g., ‘METADATA_ 1 ’).
  • an identifier assigned to the first streaming query e.g., ‘QUERY_ID_ 1 ’
  • the query statement associated with the first streaming query that was defined by the user or administrator who created the first streaming query e.g., ‘QUERY
  • the metadata pertaining to the query statement may include information pertaining to the object types and/or the data fields that are referenced by the query statement (e.g., the fields of the objects referenced by ‘QUERY_STATEMENT_ 1 ’).
  • the metadata may be identified by the originating application server 102 and/or application platform 122 parsing the query statement to extract the referenced database objects and/or data fields.
  • the table 300 includes a second entry associated with a second streaming query that includes the identifier assigned to the second streaming query (e.g., ‘QUERY_ID_ 2 ’), its associated query statement (e.g., ‘QUERY_STATEMENT_ 2 ’), its associated data transaction type notification qualifier (e.g., ‘CREATE’ transactions only), its associated tenant identifier (e.g., ‘ORGID_ 2 ’), and metadata pertaining to its query statement (e.g., ‘METADATA_ 2 ’), and so on for additional streaming queries defined by administrators or users within the application system 100 .
  • the identifier assigned to the second streaming query e.g., ‘QUERY_ID_ 2 ’
  • its associated query statement e.g., ‘QUERY_STATEMENT_ 2 ’
  • its associated data transaction type notification qualifier e.g., ‘CREATE’ transactions only
  • its associated tenant identifier e.g., ‘ORGID_ 2 ’
  • metadata pertaining to its query statement
  • the transaction identification process 200 continues by receiving input data from a user and performing or otherwise initiating a data transaction to update the database to reflect the received input data (tasks 204 , 206 ).
  • the originating application server 102 and/or application platform 122 generates or otherwise provides an instance of a virtual application 124 in a browser application 107 on a client device 106 that is utilized by the user of the client device 106 to interface with the database 110 to create, save, update, or otherwise modify data associated with the user and/or the user's tenant in one or more of the data tables 114 .
  • the application platform 122 and/or virtual application 124 in response to receiving input data from the user, initiates or otherwise performs the appropriate data transaction to update one or more of the data tables 114 to reflect the user input data. For example, when the user is attempting to create a new instance of an object within the virtual application 124 , the application platform 122 and/or the virtual application 124 creates a new entry for that type of object in one of the data tables 114 that includes the received user input data defining attributes for the various fields of the new instance of the object.
  • the application platform 122 and/or the virtual application 124 updates or otherwise modifies the existing entry for that object in one of the data tables 114 by overwriting one or more fields of the existing entry to reflect the received user input data.
  • the transaction identification process 200 continues by monitoring the data transactions initiated or otherwise performed on behalf of client devices for data transactions that satisfy an existing streaming query.
  • the transaction identification process 200 determines or otherwise identifies whether a data transaction is relevant to an existing streaming query based on the metadata and tenant identifiers associated with the existing streaming queries by comparing the data fields, object types, tenant identifier and/or other metadata associated with the respective data transaction to the metadata and tenant identifiers associated with the existing streaming queries (task 208 ).
  • the transaction monitoring engine 126 monitors each data transaction initiated or otherwise performed by the application platform 122 , and for each data transaction, the transaction monitoring engine 126 identifies the data fields and/or other metadata involved in the data transaction and compares the data fields and/or other metadata for a respective data transaction to the metadata for each of the streaming queries maintained in the definition table 128 to identify data transactions having associated data fields and/or other metadata that match the metadata of a streaming query in the definition table 128 . In this regard, if the data fields and/or other metadata associated with the data transaction do not match all of the metadata for a particular streaming query, the transaction monitoring engine 126 determines that data transaction is not relevant to that particular streaming query.
  • the transaction monitoring engine 126 may identify or otherwise determine that the data transaction is relevant to that streaming query. However, if the tenant identifier for that streaming query is different from the tenant identifier associated with the user responsible for the data transaction, the transaction monitoring engine 126 may determine the data transaction is not relevant to the streaming query because the tenant associated with the data transaction does not match the tenant associated with the streaming query.
  • the transaction identification process 200 determines a data transaction is not relevant to any streaming queries, the data transaction is effectively filtered out from further processing and/or analysis and the transaction identification process 200 exits or repeats the loop defined by tasks 202 , 204 , 206 and 208 to maintain updated streaming query definitions and continuously monitor subsequent data transactions performed on behalf of client devices.
  • the transaction identification process 200 determines or otherwise identifies whether the data transaction satisfies the notification qualifiers for that streaming query (task 210 ). In this regard, if the data transaction involves updating or otherwise modifying an existing entry in the database 110 and the notification qualifier indicates that streaming query is limited to the creation of new entries in the database 110 , the transaction monitoring engine 126 determines that the data transaction does not satisfy the notification qualifier for the streaming query. Similarly, if the data transaction involves creating a new entry in the database 110 and the notification qualifier indicates that streaming query is limited to updating or otherwise modifying existing entries in the database 110 , the transaction monitoring engine 126 determines that the data transaction does not satisfy the notification qualifier for the streaming query.
  • the transaction monitoring engine 126 determines the data transaction does not satisfy the notification qualifier for the streaming query.
  • the transaction identification process 200 determines a relevant data transaction does not satisfy the notification qualifier for a streaming query, the data transaction is effectively filtered out and the transaction identification process 200 exits or repeats to continuously monitor subsequent data transactions performed on behalf of client devices.
  • the transaction monitoring engine 126 determines the data transaction satisfies the notification qualifier for the streaming query.
  • the transaction identification process 200 determines a data transaction is both relevant to a particular streaming query and satisfies the notification qualifier for that particular streaming query, the transaction identification process 200 continues by determining or otherwise identifying whether the data transaction satisfies the query statement for that particular streaming query and updating the notification table in the database to indicate the entry associated with the data transaction when the data transaction satisfies the query statement (tasks 212 , 214 ).
  • the transaction monitoring engine 126 compares the values for data fields of the database entry associated with the data transaction to the query statement to identify whether the values for the database entry match or otherwise are within the range provided by the query statement.
  • the transaction monitoring engine 126 effectively executes or otherwise performs the query statement on the database entry associated with the data transaction to determine whether the query statement would return the database entry associated with the data transaction as a result of the query statement if the query statement where executed by the database 110 . It should be noted that by virtue of the transaction identification process 200 filtering out data transactions that are not relevant to the streaming query or otherwise do not satisfy the notification qualifiers for a streaming query, processing resources of the application server 102 are conserved by not evaluating the query statements for each of the streaming queries on each of the data transactions initiated by the application platform 122 .
  • the transaction monitoring engine 126 determines that the database entry associated with a data transaction would be returned as a result of executing the query statement associated with the streaming query, the transaction monitoring engine 126 updates the notification table 116 to indicate the database entry associated with the data transaction.
  • the transaction monitoring engine 126 creates a new entry (or row) in the notification table 116 that includes a unique numerical identifier (or record identifier) corresponding to the location of the database entry associated with the notification-triggering data transaction in one or more of the data tables 114 , the identifier associated with the streaming query, and the transaction type associated with the data transaction.
  • the new entry in the notification table 116 is timestamped with a transaction identifier generated by the database 110 upon creation of the new entry in the notification table 116 .
  • the transaction monitoring engine 126 may determine the data transaction satisfies the query statement in addition to the notification qualifier thereby satisfies the streaming query.
  • the transaction monitoring engine 126 In response to identifying the data transaction satisfies the query statement, the transaction monitoring engine 126 creates a new entry in the table 116 that includes a numerical identifier corresponding to the location of the new ‘Account’ object in the data tables 114 , the streaming query identifier associated with the query statement, and the transaction type as the creation of a new entry in the database 110 . Conversely, if the data transaction involved creating a new ‘Account’ object having a value for the account value field of 5,000 and the query statement is intended to return ‘Account’ objects having a value for the account value field greater than 10,000, the transaction monitoring engine 126 would determine the data transaction does not satisfy the query statement and the transaction identification process 200 exits or continues by monitoring subsequent data transactions without updating the notification table 116 .
  • FIG. 4 depicts an exemplary notification table 400 that may be updated by the transaction monitoring engine 126 and maintained by the database 110 in conjunction with the transaction identification process 200 .
  • the transaction monitoring engine 126 in response to identifying a data transaction to create a new entry in the database 110 that satisfies the query statement associated with the second entry in the definition table 300 (e.g., ‘QUERY_STATEMENT_ 2 ’), creates an entry in the notification table 400 that includes the unique numerical identifier corresponding to the location of that new database entry in the data tables 114 (e.g., ‘RECORD_ID_ 3 ’), the streaming query identifier associated with the second query statement (e.g., ‘QUERY_ID_ 2 ’), and the transaction type as the creation of a new entry in the database 110 (e.g., ‘CREATE’).
  • the entry in the notification table 400 includes a timestamp corresponding to the database time when the entry in the notification table 400 was created (e.g., ‘DB_TIME_ 1 ’
  • the transaction identification process 200 repeats throughout operation of the application system 100 to update the local definition table 128 maintained by the originating application server 102 and continuously monitor data transactions initiated on behalf of the client device 106 .
  • the application server 102 and/or application platform 122 periodically accesses the database 110 to identify or otherwise determine if any changes have been made to the definition table 118 relative to the instance of the definition table 128 maintained locally, and in response to identifying changes to the definition table 118 maintained by the database 110 , the application server 102 and/or application platform 122 updates, overwrites, or otherwise modifies the local definition table 128 to reflect the updated definition table 118 .
  • the table 128 is updated so that the transaction monitoring engine 126 utilizes the most recent streaming query definition information when monitoring subsequent data transactions.
  • the transaction monitoring engine 126 identifies a data transaction performed to update an existing entry in the database 110 as satisfying the query statement associated with the first entry in the definition table 300 (e.g., ‘QUERY_STATEMENT_ 1 ’).
  • the transaction monitoring engine 126 updates the table 400 by creating a second entry that includes the unique numerical identifier corresponding to the location of the existing entry in the data tables 114 that was modified (e.g., ‘RECORD_ID_ 2 ’), the streaming query identifier associated with the first query statement (e.g., ‘QUERY_ID_ 1 ’) the transaction type as the updating or modification of an existing entry in the database 110 (e.g., ‘UPDATE’), and a timestamp corresponding to the subsequent database time when the entry in the notification table 400 was created (e.g., ‘DB_TIME_ 2 ’).
  • the transaction monitoring engine 126 updates the table 400 by creating a second entry that includes the unique numerical identifier corresponding to the location of the existing entry in the data tables 114 that was modified (e.g., ‘RECORD_ID_ 2 ’), the streaming query identifier associated with the first query statement (e.g., ‘QUERY_ID_ 1 ’) the transaction type as the updating or modification of an existing entry in
  • the transaction monitoring engine 126 identifies a data transaction performed to update an existing entry in the database 110 as satisfying the query statement associated with the third entry in the definition table 300 (e.g., ‘QUERY_STATEMENT_ 3 ’), and in response, the transaction monitoring engine 126 updates the table 400 by creating a third entry that includes the unique numerical identifier corresponding to the location of the existing entry in the data tables 114 that was modified (e.g., ‘RECORD_ID_ 1 ’), the streaming query identifier associated with the third query statement (e.g., ‘QUERY_ID_ 3 ’), the transaction type as the updating or modification of an existing entry in the database 110 (e.g., ‘UPDATE’), and a timestamp corresponding to the subsequent database time when the third entry in the notification table 400 was created (e.g., ‘DB_TIME_ 3 ’).
  • FIG. 5 depicts an exemplary embodiment of a transaction notification process 500 suitable for implementation by an application system, such as application system 100 , to provide substantially real-time notifications of data transactions satisfying one or more streaming queries on one or more subscribed client devices.
  • the various tasks performed in connection with the illustrated process 500 may be hardware, firmware and/or software executed by processing circuitry, or any combination thereof.
  • the following description may refer to elements mentioned above in connection with FIG. 1 .
  • portions of the transaction notification process 500 may be performed by different elements of the application system 100 . That said, in exemplary embodiments, the transaction notification process 500 is performed by the distributing application server 104 and/or application platform 132 .
  • the transaction notification process 500 may include any number of additional or alternative tasks, the tasks need not be performed in the illustrated order and/or the tasks may be performed concurrently, and/or the transaction notification process 500 may be incorporated into a more comprehensive procedure or process having additional functionality not described in detail herein. Moreover, one or more of the tasks shown and described in the context of FIG. 5 could be omitted from a practical embodiment of the transaction notification process 500 as long as the intended overall functionality remains intact.
  • the transaction notification process 500 begins by receiving a subscription request for a streaming query from a user of a client device (task 502 ).
  • the distributing application server 104 and/or application platform 132 generates or otherwise provides an instance of a virtual application 134 in a browser application 109 on a client device 108 .
  • the user of the client device 108 utilizes the browser application 109 to interface with the application server 104 to indicate a streaming query that the user of the client device 108 would like to be subscribed to.
  • the application platform 132 and/or virtual application 134 may access the definition table 118 of the database 110 and generate or otherwise provide, within the browser application 109 , a list of existing streaming queries that the user may subscribe to along with graphical user interface elements to allow the user to select or otherwise indicate the streaming query the user would like to subscribe to.
  • the application platform 132 and/or virtual application 134 may list or otherwise provide only those streaming queries that are accessible to the user's tenant (e.g., streaming query entries in the definition table 118 having an associated tenant identifier matching the tenant identifier for the user's tenant), so that the subscription request corresponds to a streaming query associated with a tenant identifier that matches the tenant identifier associated with the user of the subscribing client device 108 .
  • the distributing application server 104 may provide a list of a plurality of streaming queries associated with the same tenant identifier as the user of the client device 108 , wherein the client device 108 and/or browser application 109 displays or otherwise presents the list on the client device 108 and generates the subscription request in response to identifying selection of a streaming query from the list by the user of the client device 108 .
  • the application platform 132 and/or virtual application 134 rejects or otherwise denies a subscription request for a streaming query that is associated with a tenant identifier that is different from the tenant identifier associated with the user of the subscribing client device 108 .
  • the transaction notification process 500 continues by updating a list of streaming query subscriptions currently being supported by the application server (task 504 ).
  • the distributing application server 104 maintains a subscription table 138 containing a listing of the subscribed streaming queries being monitored by the distributing application server 104 and the client devices accessing the distributing application server 104 that are associated with those subscriptions. For example, referring to FIG.
  • the virtual application 134 and/or subscription engine 137 in response to receiving a subscription request corresponding to the first streaming query in the definition table 300 , creates an entry in the active subscription table 138 that maintains an association between the identifier assigned to the first streaming query (e.g., ‘QUERY_ID_ 1 ’) and an identifier associated with the client device 108 .
  • the table 138 maintains a listing of the streaming queries that are subscribed to by a client device interfacing with the database 110 via the distributing application server 104 along with the respective client device that is subscribed the streaming query.
  • the transaction notification process 500 continues by establishing a delivery protocol with the client device for providing data associated with data transactions triggering real-time notifications (task 506 ).
  • the browser application 109 on the client device 108 automatically attempts to establish a streaming connection with the distributing application server 104 using long-polling.
  • the browser application 109 on the client device 108 may initiate a handshake with the streaming engine 136 and/or application platform 132 using the Bayeux Protocol or CometD programming language to request a long-polling connection associated with the subscribed streaming query that will be held open by the streaming engine 136 and/or application platform 132 , as described in greater detail below in the context of FIG. 6 .
  • the streaming engine 136 and/or application platform 132 determines that the long-polling connection is allowable, the streaming engine 136 and/or application platform 132 does not immediately respond to the client device 108 and holds the long-polling request open.
  • the streaming engine 136 and/or application platform 132 also generates an identifier that is associated with client device 108 that may be utilized to establish an association between the client device 108 and/or the streaming connection and the streaming query the client device 108 is subscribed to.
  • the transaction notification process 500 continues by monitoring the notification table maintained by the database for pending notification entries indicative of recent data transactions satisfying one or more streaming queries supported by the application system (task 508 ).
  • a pending notification entry should be understood as referring to an entry in the notification table that was created after the most recent (or preceding) polling of the notification table, and thus, any notifications associated with this entry that are pending and have not yet been provided to or otherwise generated by subscribed client devices accessing the distributing application server.
  • the subscription engine 137 polls or otherwise accesses the database 110 to determine if there are any recently created entries in the notification table 116 having a timestamp corresponding to notification-triggering data transactions occurring after the previous polling of the notification table 116 , and in response to identifying pending notification entries in the notification table 116 , the subscription engine 137 obtains or otherwise copies those pending notification entries in the notification table 116 to the distributing application server 104 .
  • the subscription engine 137 polls or otherwise accesses the database 110 to determine if there are any recently created entries in the notification table 116 having a timestamp corresponding to notification-triggering data transactions occurring after the previous polling of the notification table 116 , and in response to identifying pending notification entries in the notification table 116 , the subscription engine 137 obtains or otherwise copies those pending notification entries in the notification table 116 to the distributing application server 104 .
  • the subscription engine 137 polls or otherwise accesses the database 110 to determine if there are any recently created entries in the notification table 116 having a
  • the subscription engine 137 may initially poll the notification table 400 in the database at an initial time that precedes the creation of the first entry of the notification table 400 and obtain, from the database, the current transaction identifier indicative of the current database time (e.g., ‘DB_TIME_ 0 ’) for use as an indication of the most recent polling time.
  • the subscription engine 137 stores or otherwise maintains the obtained transaction identifier (e.g., ‘DB_TIME_ 0 ’), and after waiting for some amount of time, the subscription engine 137 subsequently polls the notification table 400 for any entries having an associated transaction identifier that is greater than the previously obtained transaction identifier.
  • the subscription engine 137 polls the notification table 400 at some database time after creation of one or more entries in the notification table 400 , the subscription engine 137 identifies those entries having a timestamp preceded by the most recent polling time as new pending notification entries, obtains or otherwise copies the values for the columns of those pending notification entries to the distributing application server 104 , and updates the most recent polling time indicator to be equal to the transaction identifier associated with the most recent (or latest) entry in the notification table 400 .
  • the subscription engine 137 polls the notification table 400 at some database time after creation of the second entry in the notification table 400 but before creation of the third entry in the notification table 400 , the subscription engine 137 maintains the timestamp of the second entry in the notification table 400 (e.g., ‘DB_TIME_ 2 ’) as the indication of the most recent polling time.
  • the subscription engine 137 subsequently polls the notification table 400 , the subscription engine 137 identifies any entries having a timestamp that is preceded by the timestamp of the second entry (e.g., ‘DB_TIME_ 2 ’) as pending notification entries and disregards entries in the notification table 400 having timestamps that precede the most recent polling time.
  • the transaction notification process 500 continues by determining or otherwise identifying whether any of the pending notification entries correspond to a subscribed streaming query and grouping any pending notification entries that corresponding to a subscribed streaming query by their associated streaming query (tasks 510 , 512 ).
  • the subscription engine 137 compares the streaming query identifiers associated with the pending notification entries to the streaming query identifiers in the active subscription table 138 to identify whether any of the pending notification entries are associated with a streaming query that is subscribed to by a client device accessing the distributing application server 104 .
  • the subscription engine 137 may discard or delete the obtained information pertaining to pending notification entries that are not associated with a subscribed streaming query supported by the distributing application server 104 .
  • the transaction notification process 500 may continue periodically polling or otherwise monitoring the notification table 116 until identifying pending notification queries that correspond to a subscribed streaming query (e.g., task 508 ).
  • the subscription engine 137 utilizes the streaming query identifiers associated with the obtained pending notification entries to group the pending notification entries by their associated streaming query. For example, referring again to FIG. 4 , if the first four entries of the notification table 400 are identified as new pending notification entries, the subscription engine 137 may group the first and fourth entries by virtue of both entries being associated with the second streaming query (e.g., ‘QUERY_ID_ 2 ’).
  • the transaction notification process 500 continues by querying the database for the data and/or information associated with the respective database entries that corresponds to the respective pending notification entries of the group using the identifiers associated with the respective database entries and the query statement for its associated streaming query (task 514 ).
  • the subscription engine 137 utilizes the identifier corresponding to the location of the corresponding database entry in the database 110 to obtain, from the data tables 114 in the database 110 , the data and/or other information associated with the database entry that corresponds to the notification-triggering data transaction corresponding to that pending notification entry.
  • the subscription engine 137 may utilize the unique identifier corresponding to the location of the database entry associated with first notification entry (e.g., ‘RECORD_ID_ 3 ’) and the unique identifier corresponding to the location of the database entry associated with the fourth notification entry (e.g., ‘RECORD_ID_ 4 ’) to query the database 110 using the associated query statement (e.g., ‘QUERY_STATEMENT_ 2 ’) to obtain the data and/or information for those database entries from the data tables 114 .
  • the associated query statement e.g., ‘QUERY_STATEMENT_ 2 ’
  • the query statement associated with a streaming query is executed or otherwise performed by the database 110 only once to obtain the relevant data fields identified by that query statement for all of the database entries associated with that streaming query, and the efficiency of the querying is improved by providing the modified query statement that includes the identifiers for the location of those database entries in the database 110 .
  • the subscription engine 137 provides a modified query statement to the database 110 that consists of the query statement associated with a respective streaming query modified to utilize the identifiers for the database entries that satisfy that streaming query as the row selection parameters (e.g., WHERE parameters) for the query.
  • the row selection parameters e.g., WHERE parameters
  • the application platform 134 and/or distributing application server 104 may include or otherwise implement a local definition table representative of the definition table 118 by obtaining the definition information from the definition table 118 in a similar manner as described above to maintain the query statement associated with a subscribed streaming query and support the subscription engine 137 generating modified query statements.
  • the previous row selection parameter e.g., value >10000
  • the transaction notification process 500 continues by determining, for each respective user subscribed to that streaming query, which of the database entries are viewable or otherwise accessible to that respective user based on that respective user's permissions within the application system and/or security settings for the respective database entries (task 516 ). In this manner, the database entries are mapped or otherwise allocated the database entries to each user subscribed to that streaming query by performing row level security checks to filter database entries from individual users.
  • the subscription engine 137 performs row level security checks to ensure a user subscribed to a particular streaming query has access to each database entry associated with that streaming query to ensure the user does not receive data and/or information that the user is not authorized to access and/or view.
  • the subscription engine 137 determines whether the user is authorized to access each of the database entries based on the user's privileges, rights and/or permissions within the application system 100 and the security settings for each respective database entry.
  • the subscription engine 137 may not map or otherwise allocate that database entry to the user of the client device 108 .
  • the client device 108 may only receive data corresponding to the database entry associated with ‘RECORD_ID_ 3 ’ while other users subscribed to the streaming query ‘QUERY_ID_ 2 ’ having administrator privileges may receive data corresponding to the database entry associated with ‘RECORD_ID_ 4 ’ in addition to data corresponding to the database entry associated with ‘RECORD_ID_ 3 ’.
  • the transaction notification process 500 continues by determining, for each respective user, which of the fields of the database entries are viewable or otherwise accessible to that respective user based on that respective user's permissions within the application system before providing data to that subscribed user's client device (tasks 518 , 520 ).
  • the subscription engine 137 performs field level security checks to ensure a user subscribed to a particular streaming query is only provided data for fields that are viewable or otherwise accessible to that user. In other words, field level security checks are performed for each subscribed user to filter out fields of data for the database entries mapped to that user that that subscribed user does not have permission to view and/or access.
  • the subscription engine 137 determines what fields of the database entry that the user is authorized to view based on the user's privileges, rights and/or permissions within the application system 100 and/or the security settings for the database entry associated with ‘RECORD_ID_ 3 ’.
  • the subscription engine 137 filters or otherwise prevents those fields of data from the remaining data to be provided to the client device 108 .
  • the subscription engine 137 filters or otherwise prevents the value for the contact name field of the database entry associated with ‘RECORD_ID_ 3 ’ from being provided to the client device 108 while the values for the name and account value fields of the database entry associated with ‘RECORD_ID_ 3 ’ are provided to the client device 108 .
  • the client device 108 is only provided the subset of the data obtained from the database 110 that is viewable by the user of the client device 108 , and only for those database entries that are viewable by the user of the client device 108 .
  • the subscription engine 137 provides the fields of obtained data that are viewable by the user of the client device 108 to the streaming engine 136 , which, in turn, provides those fields of data to the user of the client device 108 according to the delivery protocol established with the browser application 109 on the client device 108 .
  • the streaming engine 136 pushes the fields of data to the client device 108 by transmitting or otherwise providing a response to the long-polling request (e.g., a long-polling response message) that contains the fields of data provided by the subscription engine 137 .
  • the browser application 109 Upon receiving the fields of data from the application platform 132 and/or distributing application server 104 , the browser application 109 generates or otherwise provides a notification of the data transactions that satisfy the subscribed streaming query based on the received fields of data associated with those data transactions. For example, referring again to FIG.
  • the browser application 109 may present or otherwise display, on the client device 108 , a graphical indication that a new ‘Account’ having a value of 12,500 was created using the values for the account name and account value fields retrieved from the database 110 and provided to the client device 108 by the subscription engine 137 via the streaming engine 136 .
  • the loop defined by tasks 508 , 510 , 512 , 514 , 516 , 518 and 520 repeats throughout operation of the application system 100 to continually monitor for new pending notification entries in the notification table 116 that satisfy actively subscribed-to streaming queries and provide, to the client device associated with each user subscribed to a particular streaming query, fields of data viewable by the respective user that are obtained from the database 110 for database entries accessible by the respective user that correspond to data transactions satisfying the subscribed streaming query.
  • the subscription engine 137 polls the notification table 137 with a relatively high frequency (e.g., every few seconds) so that data is provided to subscribed client devices substantially in real-time (e.g., with little delay between the occurrence of the data transaction and the corresponding notification being presented on the client device 108 ).
  • a relatively high frequency e.g., every few seconds
  • FIG. 6 illustrates an exemplary sequence 600 of communications within the application system 100 in accordance with an exemplary embodiment of the transaction identification process 200 of FIG. 2 in conjunction with the transaction notification process 500 of FIG. 5 .
  • the illustrated sequence 600 begins with the subscribing client device 108 transmitting or otherwise communicating, to the distributing application server 104 , a handshake request for negotiating a streaming connection (or channel) with the distributing application server 104 , wherein the streaming engine 136 transmits or otherwise communicates a handshake response message that indicates the types of connections supported by the distributing application server 104 .
  • the streaming engine 136 in response to receiving the handshake request, transmits a handshake response message indicating that the streaming engine 136 will support a long-polling streaming connection with the subscribing client device 108 .
  • the subscribing client device 108 transmits or otherwise communicates a subscription request 604 identifying the streaming query that the user of the client device 108 would like to subscribe to, wherein the streaming engine 136 receives the streaming request and provides the streaming request to the subscription engine 137 for updating the active subscription table 138 to maintain an association between the subscribing client device 108 and the streaming query that the subscribing client device 108 is subscribing to.
  • the subscription engine 137 creates an entry in the table 138 maintaining an association between an identifier associated with the subscribing client device 108 and the streaming query identifier for the second streaming query (e.g., ‘QUERY_ID_ 2 ’).
  • the identifier associated with the subscribing client device 108 may be generated and assigned to the subscribing client device 108 by the distributing application server 104 .
  • the subscribing client device 108 transmits or otherwise communicates a long-polling request 606 to the streaming engine 136 to initiate or otherwise establish the long-polling streaming connection to the distributing application server 104 associated with the subscription request 604 .
  • streaming engine 136 does not immediately respond to the long-polling request 606 and holds the long-polling streaming connection open until identifying notification-generating data transactions associated with the subscription request, as described in greater detail below.
  • the subscription engine 137 polls 608 the notification table 116 of the database 110 and obtain any entries created after the most recent polling of the notification table 116 .
  • entries created after the most recent polling of the notification table 116 correspond to data transactions satisfying a streaming query that occurred after the previous polling of the notification table 116 by the subscription engine 137 .
  • a user associated with the same tenant as the user of the subscribing client device 108 utilizes the utilizes the virtual application 124 on the originating client device 106 to input or otherwise provide data 610 for storage in the database 110 .
  • the application platform 122 and/or virtual application 124 initiates or otherwise performs a data transaction 612 on behalf of the client device 106 to store the received user input data in one or more of the data tables 114 in the appropriate manner, for example, by creating a new database entry in one of the data tables 114 that contains the user input data or by modifying an existing database entry in one of the data tables 114 to reflect the user input data.
  • a data transaction 612 on behalf of the client device 106 to store the received user input data in one or more of the data tables 114 in the appropriate manner, for example, by creating a new database entry in one of the data tables 114 that contains the user input data or by modifying an existing database entry in one of the data tables 114 to reflect the user input data.
  • the transaction monitoring engine 126 compares the data transaction 612 to the streaming queries maintained in the definition table 128 , and in response to determining the data transaction 612 satisfies a streaming query, the transaction monitoring engine 126 creates a new entry 614 in the notification table 116 that indicates the database entry associated with the data transaction 612 and the streaming query that the data transaction 612 satisfies.
  • the transaction monitoring engine 126 determines whether the data transaction is relevant to the second streaming query before determining whether the data transaction satisfies the query statement associated with the second streaming query (e.g., ‘QUERY_STATEMENT_ 2 ’), as described above.
  • the subscription engine 137 creates a new notification entry 614 in the table 400 that includes the unique identifier associated with the created database entry (e.g., ‘RECORD_ID_ 3 ’), the identifier associated with the streaming query satisfied by the data transaction (e.g., ‘QUERY_ID_ 2 ’), the type of data transaction involved, and the transaction identifier (e.g., ‘DB_TIME_ 1 ’) indicative of the time when the data transaction occurred.
  • the unique identifier associated with the created database entry e.g., ‘RECORD_ID_ 3 ’
  • the identifier associated with the streaming query satisfied by the data transaction e.g., ‘QUERY_ID_ 2 ’
  • the type of data transaction involved e.g., ‘DB_TIME_ 1 ’
  • the subscription engine 137 periodically polls the notification table 116 for pending notification entries that were created after the most recent polling of the notification table 116 .
  • the subscription engine 137 polls 616 the notification table 116 to obtain any pending notification entries created after the preceding polling 608 of the notification table 116 .
  • the subscription engine 137 on the distributing application server 104 identifies the pending notification entry associated with the second streaming query statement as corresponding to the subscribed streaming query associated with the subscribing client device 108 and obtains the data 618 for the data transaction associated with the pending notification entry from one or more data tables 114 of the database 110 by querying the database 110 by modifying the query statement associated with the subscribed streaming query (e.g., ‘QUERY_STATEMENT_ 2 ’) to use the unique identifier associated with the database entry (e.g., ‘RECORD_ID_ 3 ’) that was obtained 616 from the notification table 116 .
  • the query statement associated with the subscribed streaming query e.g., ‘QUERY_STATEMENT_ 2 ’
  • the unique identifier associated with the database entry e.g., ‘RECORD_ID_ 3 ’
  • the subscription engine 137 After obtaining the data from the database 610 , the subscription engine 137 performs row level security checks to verify that the user of the subscribing client device 108 is capable of viewing or otherwise accessing the database entry associated with the pending notification entry, and then performs field level security checks to filter any fields of data that the user is not capable of viewing or otherwise accessing.
  • the subscription engine 137 provides the data for those fields of the ‘RECORD_ID_ 3 ’ database entry that was obtained from the database 110 to the streaming engine 136 when the user of the subscribing client device 108 is subscribed to the ‘QUERY_ID_ 2 ’ streaming query before the ‘RECORD_ID_ 3 ’ database entry is created.
  • the streaming engine 136 provides the obtained data 620 to the subscribing client device 108 by responding to the long-polling request with the obtained data, wherein the browser application 109 on the subscribing client device 108 generates or otherwise provides a notification to the user of creation of the ‘RECORD_ID_ 3 ’ database entry in the database 110 based on the portions of obtained data received from the distributing application server 104 .
  • the user of the originating client device 106 inputs or otherwise provides data 622 for storage in the database 110 , wherein the application platform 122 and/or virtual application 124 initiates or otherwise performs a data transaction 624 to create a new database entry in the database 110 that contains the received user input data.
  • the transaction monitoring engine 126 compares the data transaction 624 to the streaming queries maintained in the definition table 128 , and in response to determining the data transaction 624 satisfies the second streaming query, the transaction monitoring engine 126 creates a new entry 626 in the notification table 116 that indicates the database entry associated with the data transaction 624 (e.g., ‘RECORD_ID_ 4 ’) and the second streaming query (e.g., ‘QUERY_ID_ 2 ’).
  • the subscribing client device 108 After receiving the response 620 to the initial long-polling request 606 , transmits or otherwise communicates a long-polling request 628 to the streaming engine 136 to maintain the long-polling streaming connection to the distributing application server 104 .
  • the subscription engine 137 polls 630 the notification table 116 for pending notification entries that were created after the preceding polling 616 of the notification table 116 , identifies the pending notification entry associated with the ‘RECORD_ID_ 4 ’ database entry as corresponding to the subscribed streaming query associated with the subscribing client device 108 , queries the database 110 by modifying the query statement associated with the subscribed query to use the ‘RECORD_ID_ 4 ’ identifier to obtain the data 632 associated with the ‘RECORD_ID_ 4 ’ database entry, and provides the portions of the obtained data 632 viewable or otherwise accessible by the user of the subscribing client device 108 to the streaming engine 136 , which, in turn, provides 634 those portions of obtained data to the subscribing client device 108 as a response to the long-polling request 628 , as described above.
  • the database 110 is realized as a multi-tenant database that stores or otherwise maintains data associated with a plurality of tenants as part of a multi-tenant system, and the application servers 102 , 104 provide instances of virtual applications 124 , 134 to users of multiple different tenants, as described in greater detail below.
  • a server 702 (which may be an originating application server 102 and/or a distributing application server 104 ) that dynamically creates and supports virtual applications 728 (e.g., virtual applications 124 , 134 ) based upon data 732 from a common database 730 (e.g., database 110 ) that is shared between multiple tenants, alternatively referred to herein as a multi-tenant database.
  • Data and services generated by the virtual applications 728 are provided via a network 745 (e.g., network 112 ) to any number of client devices 740 (e.g., originating client devices 106 and/or subscribing client devices 108 ), as desired.
  • Each virtual application 728 is suitably generated at run-time (or on-demand) using a common application platform 710 that securely provides access to the data 732 in the database 730 for each of the various tenants subscribing to the multi-tenant system 700 .
  • the multi-tenant system 700 is implemented in the form of an on-demand multi-tenant customer relationship management (CRM) system that can support any number of authenticated users of multiple tenants.
  • CRM customer relationship management
  • a “tenant” or an “organization” should be understood as referring to a group of one or more users that shares access to common subset of the data within the multi-tenant database 730 .
  • each tenant includes one or more users associated with, assigned to, or otherwise belonging to that respective tenant.
  • each respective user within the multi-tenant system 700 is associated with, assigned to, or otherwise belongs to a particular tenant of the plurality of tenants supported by the multi-tenant system 700 .
  • Tenants may represent customers, customer departments, business or legal organizations, and/or any other entities that maintain data for particular sets of users within the multi-tenant system 700 .
  • the server 702 and the database 730 may share access to the server 702 and the database 730 , the particular data and services provided from the server 702 to each tenant can be securely isolated from those provided to other tenants.
  • the multi-tenant architecture therefore allows different sets of users to share functionality and hardware resources without necessarily sharing any of the data 732 belonging to or otherwise associated with other tenants.
  • the multi-tenant database 730 is any sort of repository or other data storage system capable of storing and managing the data 732 associated with any number of tenants.
  • the database 730 may be implemented using any type of conventional database server hardware.
  • the database 730 shares processing hardware 704 with the server 702 .
  • the database 730 is implemented using separate physical and/or virtual database server hardware that communicates with the server 702 to perform the various functions described herein.
  • the database 730 includes a database management system or other equivalent software capable of determining an optimal query plan for retrieving and providing a particular subset of the data 732 to an instance of virtual application 728 in response to a query initiated or otherwise provided by a virtual application 728 .
  • the multi-tenant database 730 may alternatively be referred to herein as an on-demand database, in that the multi-tenant database 730 provides (or is available to provide) data at run-time to on-demand virtual applications 728 generated by the application platform 710 .
  • the data 732 may be organized and formatted in any manner to support the application platform 710 .
  • the data 732 is suitably organized into a relatively small number of large data tables to maintain a semi-amorphous “heap”-type format.
  • the data 732 can then be organized as needed for a particular virtual application 728 .
  • conventional data relationships are established using any number of pivot tables 734 that establish indexing, uniqueness, relationships between entities, and/or other aspects of conventional database organization as desired. Further data manipulation and report formatting is generally performed at run-time using a variety of metadata constructs.
  • Metadata within a universal data directory (UDD) 736 can be used to describe any number of forms, reports, workflows, user access privileges, business logic and other constructs that are common to multiple tenants. Tenant-specific formatting, functions and other constructs may be maintained as tenant-specific metadata 738 for each tenant, as desired. Rather than forcing the data 732 into an inflexible global structure that is common to all tenants and applications, the database 730 is organized to be relatively amorphous, with the pivot tables 734 and the metadata 738 providing additional structure on an as-needed basis.
  • the application platform 710 suitably uses the pivot tables 734 and/or the metadata 738 to generate “virtual” components of the virtual applications 728 to logically obtain, process, and present the relatively amorphous data 732 from the database 730 .
  • the server 702 is implemented using one or more actual and/or virtual computing systems that collectively provide the dynamic application platform 710 for generating the virtual applications 728 .
  • the server 702 may be implemented using a cluster of actual and/or virtual servers operating in conjunction with each other, typically in association with conventional network communications, cluster management, load balancing and other features as appropriate.
  • the server 702 operates with any sort of conventional processing hardware 704 , such as a processor 705 , memory 706 , input/output features 707 and the like.
  • the input/output features 707 generally represent the interface(s) to networks (e.g., to the network 745 , or any other local area, wide area or other network), mass storage, display devices, data entry devices and/or the like.
  • the processor 705 may be implemented using any suitable processing system, such as one or more processors, controllers, microprocessors, microcontrollers, processing cores and/or other computing resources spread across any number of distributed or integrated systems, including any number of “cloud-based” or other virtual systems.
  • the memory 706 represents any non-transitory short or long term storage or other computer-readable media capable of storing programming instructions for execution on the processor 705 , including any sort of random access memory (RAM), read only memory (ROM), flash memory, magnetic or optical mass storage, and/or the like.
  • the computer-executable programming instructions when read and executed by the server 702 and/or processor 705 , cause the server 702 and/or processor 705 to create, generate, or otherwise facilitate the application platform 710 and/or virtual applications 728 and perform one or more additional tasks, operations, functions, and/or processes described herein.
  • the memory 706 represents one suitable implementation of such computer-readable media, and alternatively or additionally, the server 702 could receive and cooperate with external computer-readable media that is realized as a portable or mobile component or application platform, e.g., a portable hard drive, a USB flash drive, an optical disc, or the like.
  • the application platform 710 is any sort of software application or other data processing engine that generates the virtual applications 728 that provide data and/or services to the client devices 740 .
  • the application platform 710 gains access to processing resources, communications interfaces and other features of the processing hardware 704 using any sort of conventional or proprietary operating system 708 .
  • the virtual applications 728 are typically generated at run-time in response to input received from the client devices 740 .
  • the application platform 710 includes a bulk data processing engine 712 , a query generator 714 , a search engine 716 that provides text indexing and other search functionality, and a runtime application generator 720 .
  • Each of these features may be implemented as a separate process or other module, and many equivalent embodiments could include different and/or additional features, components or other modules as desired.
  • the runtime application generator 720 dynamically builds and executes the virtual applications 728 in response to specific requests received from the client devices 740 .
  • the virtual applications 728 are typically constructed in accordance with the tenant-specific metadata 738 , which describes the particular tables, reports, interfaces and/or other features of the particular application 728 .
  • each virtual application 728 generates dynamic web content that can be served to a browser or other client program 742 associated with its client device 740 , as appropriate.
  • the runtime application generator 720 suitably interacts with the query generator 714 to efficiently obtain multi-tenant data 732 from the database 730 as needed in response to input queries initiated or otherwise provided by users of the client devices 740 .
  • the query generator 714 considers the identity of the user requesting a particular function (along with the user's associated tenant), and then builds and executes queries to the database 730 using system-wide metadata 736 , tenant specific metadata 738 , pivot tables 734 , and/or any other available resources.
  • the query generator 714 in this example therefore maintains security of the common database 730 by ensuring that queries are consistent with access privileges granted to the user and/or tenant that initiated the request.
  • the query generator 714 suitably obtains requested subsets of data 732 accessible to a user and/or tenant from the database 730 as needed to populate the tables, reports or other features of the particular virtual application 728 for that user and/or tenant.
  • the data processing engine 712 performs bulk processing operations on the data 732 such as uploads or downloads, updates, online transaction processing, and/or the like.
  • less urgent bulk processing of the data 732 can be scheduled to occur as processing resources become available, thereby giving priority to more urgent data processing by the query generator 714 , the search engine 716 , the virtual applications 728 , etc.
  • the application platform 710 is utilized to create and/or generate data-driven virtual applications 728 for the tenants that they support.
  • virtual applications 728 may make use of interface features such as custom (or tenant-specific) screens 724 , standard (or universal) screens 722 or the like. Any number of custom and/or standard objects 726 may also be available for integration into tenant-developed virtual applications 728 .
  • custom should be understood as meaning that a respective object or application is tenant-specific (e.g., only available to users associated with a particular tenant in the multi-tenant system) or user-specific (e.g., only available to a particular subset of users within the multi-tenant system), whereas “standard” or “universal” applications or objects are available across multiple tenants in the multi-tenant system.
  • the data 732 associated with each virtual application 728 is provided to the database 730 , as appropriate, and stored until it is requested or is otherwise needed, along with the metadata 738 that describes the particular features (e.g., reports, tables, functions, objects, fields, formulas, code, etc.) of that particular virtual application 728 .
  • a virtual application 728 may include a number of objects 726 accessible to a tenant, wherein for each object 726 accessible to the tenant, information pertaining to its object type along with values for various fields associated with that respective object type are maintained as metadata 738 in the database 730 .
  • the object type defines the structure (e.g., the formatting, functions and other constructs) of each respective object 726 and the various fields associated therewith.
  • the data and services provided by the server 702 can be retrieved using any sort of personal computer, mobile telephone, tablet or other network-enabled client device 740 on the network 745 .
  • the client device 740 includes a display device, such as a monitor, screen, or another conventional electronic display capable of graphically presenting data and/or information retrieved from the multi-tenant database 730 .
  • the user operates a conventional browser application or other client program 742 executed by the client device 740 to contact the server 702 via the network 745 using a networking protocol, such as the hypertext transport protocol (HTTP) or the like.
  • HTTP hypertext transport protocol
  • the user typically authenticates his or her identity to the server 702 to obtain a session identifier (“SessionID”) that identifies the user in subsequent communications with the server 702 .
  • SessionID session identifier
  • the runtime application generator 720 suitably creates the application at run time based upon the metadata 738 , as appropriate.
  • the virtual application 728 may contain Java, ActiveX, or other content that can be presented using conventional client software running on the client device 740 ; other embodiments may simply provide dynamic web or other content that can be presented and viewed by the user, as desired.
  • one advantage of the subject matter described herein is that when the application system 100 is a multi-tenant system, users associated with the same tenant can be notified of data transactions initiated on behalf of other users associated with that tenant substantially in real-time while reducing the load on the multi-tenant database and the application server(s).
  • the application server 102 matches the user's associated tenant identifier (which is the first tenant's identifier) to the tenant identifier associated with that registered streaming query before determining whether the data transaction satisfies the query statement associated with that streaming query.
  • the application server 102 may avoid unnecessarily comparing query statements associated with the first tenant to data transactions performed on behalf of other tenants and vice versa, and similarly, the multi-tenant database 110 is not burdened by having to compare each transaction to the query statements associated with the registered streaming queries for all the tenants supported by the multi-tenant database 110 .
  • the application server 104 queries the multi-tenant database 110 using the unique identifier for the database entry associated with that data transaction, thereby improving the efficiency of the query and reducing the load on the multi-tenant database 110 .
  • database entries associated with the same query statement are grouped so that the multi-tenant database 110 executes a single query statement to obtain the data for all of the recent data transactions that satisfy that query statement, rather than executing the query statement for each individual data transaction when there are multiple pending notifications associated with that query statement or executing the query statement for each individual user subscribed to that query.
  • Another advantage of the subject matter described herein is that the notification data is provided to subscribed users in accordance with their permissions and/or security settings, which may be established by an administrator associated with that tenant. For example, as described above, row level and field level security checks are applied based on the permissions and/or security settings associated with the user of the client device 108 before providing data to the client device 108 . In this manner, the client device 108 is only provided fields of data that are viewable or accessible by the user of the client device 108 , and those fields of data are only provided for database entries that are viewable or accessible by the user of the client device 108 .
  • Embodiments of the subject matter may be described herein in terms of functional and/or logical block components, and with reference to symbolic representations of operations, processing tasks, and functions that may be performed by various computing components or devices. Such operations, tasks, and functions are sometimes referred to as being computer-executed, computerized, software-implemented, or computer-implemented.
  • operations, tasks, and functions are sometimes referred to as being computer-executed, computerized, software-implemented, or computer-implemented.
  • the various block components shown in the figures may be realized by any number of hardware, software, and/or firmware components configured to perform the specified functions.
  • an embodiment of a system or a component may employ various integrated circuit components, e.g., memory elements, digital signal processing elements, logic elements, look-up tables, or the like, which may carry out a variety of functions under the control of one or more microprocessors or other control devices.
  • the subject matter described herein can be implemented in the context of any computer-implemented system and/or in connection with two or more separate and distinct computer-implemented systems that cooperate and communicate with one another. That said, in one or more exemplary embodiments, the subject matter described herein is implemented in conjunction with a virtual customer relationship management (CRM) application in a multi-tenant environment.
  • CRM virtual customer relationship management

Abstract

Methods and systems are provided for identifying data transactions satisfying a streaming query and providing data corresponding to those data transactions to subscribed client devices. One exemplary method involves receiving a subscription request for a streaming query from a client device, monitoring a database for indication of a data transaction corresponding to the streaming query, and in response to identifying the indication of the data transaction corresponding to the streaming query, obtaining data for an entry associated with the data transaction from the database and providing at least a portion of the obtained data to the client device.

Description

    CROSS-REFERENCE TO RELATED APPLICATION(S)
  • This application claims the benefit of U.S. provisional patent application Ser. No. 61/499,576, filed Jun. 21, 2011, the entire content of which is incorporated by reference herein.
  • The subject matter described herein is related to the subject matter described in U.S. patent application Ser. No. ______ (attorney docket 634US1 (102.0063)), filed concurrently herewith.
  • TECHNICAL FIELD
  • Embodiments of the subject matter described herein relate generally to computer systems configured to support on-demand applications, and more particularly, embodiments of the subject matter relate to methods and systems for providing notifications of data transactions substantially in real-time.
  • BACKGROUND
  • Modern software development is evolving away from the client-server model toward network-based processing systems that provide access to data and services via the Internet or other networks. In contrast to traditional systems that host networked applications on dedicated server hardware, a “cloud” computing model allows applications to be provided over the network “as a service” or “on-demand” by an infrastructure provider. The infrastructure provider typically abstracts the underlying hardware and other resources used to deliver a customer-developed application so that the customer no longer needs to operate and support dedicated server hardware. The cloud computing model can often provide substantial cost savings to the customer over the life of the application because the customer no longer needs to provide dedicated network infrastructure, electrical and temperature controls, physical security and other logistics in support of dedicated server hardware.
  • Multi-tenant cloud-based architectures have been developed to improve collaboration, integration, and community-based cooperation between customer tenants without sacrificing data security. Generally speaking, multi-tenancy refers to a system where a single hardware and software platform simultaneously supports multiple user groups (also referred to as “organizations” or “tenants”) from a common data storage element (also referred to as a “multi-tenant database”). The multi-tenant design provides a number of advantages over conventional server virtualization systems. First, the multi-tenant platform operator can often make improvements to the platform based upon collective information from the entire tenant community. Additionally, because all users in the multi-tenant environment execute applications within a common processing space, it is relatively easy to grant or deny access to specific sets of data for any user within the multi-tenant platform, thereby improving collaboration and integration between applications and the data managed by the various applications. The multi-tenant architecture therefore allows convenient and cost effective sharing of similar application features between multiple sets of users.
  • In practice, it may be desirable to notify users substantially in real-time when their tenant's data maintained in the multi-tenant database is updated or changed. For example, when one user creates a new record or modifies an existing record in the multi-tenant database, other users associated with the same tenant as that user may desire to be apprised of the update to their tenant's data. However, the performance costs associated with each individual user continuously and/or periodically querying the multi-tenant database for the desired information pertaining to those records and/or transactions is undesirably high, particularly as the number of tenants and/or users supported by the multi-tenant system increases.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • A more complete understanding of the subject matter may be derived by referring to the detailed description and claims when considered in conjunction with the following figures, wherein like reference numbers refer to similar elements throughout the figures.
  • FIG. 1 is a block diagram of an exemplary application system;
  • FIG. 2 is a flow diagram of an exemplary transaction identification process suitable for implementation by the application system of FIG. 1;
  • FIG. 3 depicts an exemplary definition table suitable for use with the transaction identification process of FIG. 2;
  • FIG. 4 depicts an exemplary notification table suitable for use with the transaction identification process of FIG. 2;
  • FIG. 5 is a flow diagram of an exemplary transaction notification process suitable for implementation by the application system of FIG. 1;
  • FIG. 6 is a diagram illustrating communications within the application system of FIG. 1 in accordance with one exemplary embodiment of the transaction identification process of FIG. 2 in conjunction with the transaction notification process of FIG. 5; and
  • FIG. 7 is a block diagram of an exemplary multi-tenant system suitable for implementation by the application system of FIG. 1 in accordance with one or more embodiments.
  • DETAILED DESCRIPTION
  • Embodiments of the subject matter described herein generally relate to identifying data transactions that satisfy registered streaming queries and providing notification of those data transactions to users subscribed to those streaming queries substantially in real-time. As described in greater detail below, a streaming query is associated with a query statement that is used to identify data transactions that users who are subscribed to that streaming query should be notified of substantially in real-time. In this regard, a data transaction that satisfies a query statement associated with a streaming query and any notification qualifier associated with the streaming query may be understood as a notification-triggering data transaction that results in notifications provided to subscribed users. As described in greater detail below, rather than continuously querying the database using the query statements for the streaming queries, in exemplary embodiments, an application server monitors data transactions performed on behalf of client devices accessing the database via the application server for data transactions that satisfy one or more of the query statements associated with the streaming queries. In response to identifying a data transaction that satisfies a streaming query, the application server automatically updates the database substantially in real-time to indicate the entry (or record) in the database that is associated with that notification-triggering data transaction along with the association between that database entry (or record) and the streaming query that the notification-triggering data transaction satisfied.
  • At the same time, other application servers monitor the database on a substantially continuous basis (e.g., by periodically polling the database) for indications of data transactions satisfying streaming queries that are subscribed to by client devices accessing the database via these other application servers. When an application server identifies an indication of a data transaction satisfying a streaming query that is subscribed to by a client device accessing the database via that application server, the application server automatically obtains, from the database, the data associated with the database entry (or record) associated with the data transaction that satisfied the streaming query and provides at least a portion of the obtained data to the subscribed client device. In exemplary embodiments, a streaming connection (or channel) is established with the subscribed client device upon receiving a subscription request for the streaming query, so that the application server may provide the portion of the obtained data to the subscribed client device with limited delay. For example, in accordance with one or more embodiments, a long-polling request is held open by the application server, thereby allowing the application server to push the obtained data to the subscribed client device by providing a long-polling response message that includes the obtained data. In this manner, a portion of the data associated with a notification-triggering data transaction can be provided to the subscribed client device without having to perform additional handshaking or other signaling to establish the connection. Accordingly, by virtue of application servers updating the database to indicate notification-triggering data transactions substantially in real-time as they occur and the other application servers pushing data associated with those notification-triggering data transactions to subscribed client devices, the users of the subscribed client devices may be notified of those data transactions substantially in real-time without having to continuously query the database for those data transactions, thereby conserving database resources.
  • In one or more embodiments, the application servers are part of a multi-tenant system and provide instances of virtual applications to multiple different tenants, wherein the database is realized as a multi-tenant database maintaining data associated with the different tenants. However, it should be noted that although the subject matter may be described herein in the context of a multi-tenant implementation, the subject matter is not intended to be limited to multi-tenant systems unless clearly indicated by the context.
  • Turning now to FIG. 1, an exemplary on-demand application system 100 includes one or more application servers 102, 104 that dynamically create and support virtual applications that are provided to one or more client devices 106, 108 via a communications network 112, such as a wired and/or wireless computer network, a cellular network, a mobile broadband network, a radio network, or the like. In exemplary embodiments, each respective application server 102, 104 includes or otherwise implements an application platform 122, 132 that generates respective instances of virtual applications 124, 134 at run-time (e.g., or “on-demand”) based upon data stored or otherwise maintained by a database 110 (e.g., in data tables 114) that is communicatively coupled to the application servers 102, 104 via the network 112. In accordance with one or more embodiments, the database 110 is realized as a multi-tenant database that is shared between multiple tenants, that is, the database 110 may store or otherwise maintain data associated with a number of different tenants, as described in greater detail below in the context of FIG. 7. In this regard, practical embodiments of the application system 100 may include any number of client devices, with the application servers 102, 104 providing multiple instances of virtual applications to multiple tenants supported by the database 110.
  • As described in greater detail below in the context of FIGS. 2-6, the application system 100 is configured to support users of client devices subscribing to streaming queries so that subscribed users receive substantially real-time notifications of transactions with respect to the database 110 that satisfy a streaming query that a respective user has subscribed to. In the illustrated embodiment, the first application server 102 monitors data transactions initiated or otherwise performed on behalf of its associated client devices 106, identifies when a data transaction satisfies a streaming query, and updates a notification table 116 in the database 110 to indicate that data transaction. For convenience, but without limitation, the first application server 102 may alternatively be referred to herein as the originating application server. In the illustrated embodiment, the second application server 104 receives, from the client device 108, a subscription request for a streaming query, monitors the notification table 116 for indication of data transactions satisfying a subscribed streaming query, and in response to identifying a data transaction satisfying a subscribed query, obtains data for the database entry associated with that data transaction from the database 110 and provides at least a portion of the obtained data to the subscribing client device 108. Accordingly, for convenience, but without limitation, the second application server 104 may alternatively be referred to herein as the distributing application server.
  • It should be understood that FIG. 1 is merely one simplified representation of the application system 100 provided for purposes of explanation and is not intended to limit the subject matter described herein in any way. In this regard, while various processes, tasks, functionality and/or other features may be described in the context of being performed by either the originating application server 102 or the distributing application server 104 for purposes of explanation, in practice, the originating application server 102 may perform the processes, tasks, functionality and/or other features described in the context of the distributing application server 104, and vice versa. To put it another way, the originating application server 102 may also function as a distributing application server (e.g., by performing the processes, tasks, functionality and/or other features described in the context of the distributing application server 104 in parallel), and similarly, the distributing application server 104 may also function as an originating application server.
  • Depending on the embodiment, the database 110 may be realized as a relational database or another suitable database capable of supporting the operations of the application system 100 described herein. In the illustrated embodiment, the database 110 maintains one or more data tables 114 which contain data associated with users and/or tenants in the application system 100 to support instances of virtual applications 124, 134 generated by the application servers 102, 104. In practice, the database 110 may include a database management system or other equivalent software that supports querying the data tables 114 (e.g., determining an optimal query plan and retrieving a particular subset of data from the data tables 114 in response to a query initiated or otherwise provided by a virtual application) and outputting the result of a query statement to a querying application server 102, 104.
  • In the illustrated embodiment, the database 110 also includes or otherwise maintains a definition table 118 that stores or otherwise maintains definition information pertaining to the streaming queries supported by the application system 100, as described in greater detail below in the context of FIGS. 2-3. For example, each row or entry in the definition table 118 may correspond to a streaming query that was previously registered or otherwise defined by a user of a client device 106, 108, an administrator within the application system 100, or the like. In exemplary embodiments, the definition information for a respective streaming query includes the query statement associated with the streaming query, metadata for the query statement, one or more notification qualifiers for the streaming query, a unique identifier associated with the streaming query, and a tenant identifier associated with the tenant that defined the streaming query or is otherwise associated with the streaming query. For example, a user or administrator associated with a particular tenant may create or otherwise define a streaming query (e.g., by inputting or otherwise providing the query statement, notification qualifiers, and the like via a virtual application), wherein the identifier associated with that tenant (e.g., that tenant's organization identifier) is stored or otherwise maintained in association with that streaming query. In exemplary embodiments, the metadata for the query statement includes the names or identifiers for the fields of data that are referenced or otherwise involved in the query statement and/or the names or identifiers for the type of object(s) referenced or otherwise involved in the query statement. For example, upon definition of a query statement for a streaming query that is being defined by a user of client device 106 via the virtual application 124, the application server 102 and/or application platform 122 may parse or otherwise analyze the query statement to identify the database object(s) referenced in the query statement along with the field(s) of the database object(s) referenced in the query statement, and store that identified metadata in association with the other definition information for the streaming query in the definition table 118. As described in greater detail below, the notification qualifiers for the query statement limit or otherwise qualify the streaming query to particular types of data transactions that will result in notifications being provided to subscribers to that streaming query. For example, the notification qualifier may indicate that the streaming query is only applicable to updates or modifications of existing data entries in the data tables 114 that satisfy the query statement, in which case the creation or instantiation of new data entries in the data tables 114 that satisfy the query statement would not result in real-time notifications, as described in greater detail below. Alternatively, the notification qualifier may indicate that the streaming query is only applicable to creation of new data entries in the data tables 114 that satisfy the query statement, in which case the modifications to existing entries in the data tables 114 that satisfy the query statement would not result in real-time notifications.
  • In exemplary embodiments, the database 110 also includes or otherwise maintains a notification table 116 that stores or otherwise maintains information pertaining to the data transactions satisfying a streaming query supported by the application system 100 that provide the basis for notifications provided to subscribed client devices. For example, as described in greater detail below in the context of FIGS. 2 and 4, each row or entry in the notification table 118 corresponds to a notification-triggering data transaction, and each entry may include an identifier for the database entry (or record) in the data tables 114 associated with that notification-triggering data transaction, an identifier for the streaming query satisfied by that notification-triggering data transaction, the data transaction type, and a timestamp or another indication of the relative time at which the notification-triggering data transaction occurred. In this regard, in exemplary embodiments, each time a new entry is created in or otherwise added to the notification table 118, a database transaction identification number is obtained from the database 110 and stored in association with the remaining information indicative of the notification-triggering data transaction.
  • In the illustrated embodiment of FIG. 1, the originating application server 102 generally represents a computing system or another combination of other processing logic, circuitry, hardware, firmware and/or other components configured to implement an application platform 122 that accesses the database 110 and generates or otherwise supports a virtual application 124 provided to the client device 106 via the network 112. In this regard, the originating application server 102 may include a processing system (e.g., a processor, controller, or the like) that includes or otherwise accesses a memory or another non-transitory computer-readable medium of storing programming instructions for execution by the processing system that, when read and executed by the processing system, cause the application server 102 and/or application platform 122 to generate an instance of the virtual application 124 that is provided to the client device 106 and perform various additional tasks, operations, functions, and processes described in greater detail below. In an exemplary embodiment, the originating application server 102 and/or application platform 122 accesses the database 110 to obtain or otherwise copy the streaming query definition information from the definition table 118 and caches or otherwise maintains the streaming query definition information in a local definition table 128 that is representative of the definition table 118 maintained by the database 110. The transaction monitoring engine 126 generally represents a software module or another feature that is generated or otherwise implemented by the application platform 122 to continuously monitor data transactions that are initiated or otherwise performed by the virtual application 124 on behalf of the client device 106 and identify data transactions that satisfy a streaming query based on the definition information maintained in definition table 128. As described in greater detail below in the context of FIG. 2, in response to identifying a data transaction satisfying a streaming query, the transaction monitoring engine 126 updates the notification table 116 in the database 110 by creating a new entry in the notification table 116 corresponding to that data transaction.
  • The client device 106 generally represents an electronic device that is utilized by a user to access the virtual application 124 and input and/or receive data pertaining to the virtual application 124. In practice, the client device 106 can be realized as any sort of personal computer, mobile telephone, tablet or other network-enabled electronic device. In an exemplary embodiment, the client device 106 includes a display device, such as a monitor, screen, or another conventional electronic display, capable of graphically presenting data and/or information provided by the virtual application 124 (including data retrieved from the database 110) along with a user input device, such as a keyboard, a mouse, a touchscreen, or the like, capable of receiving input data and/or other information from the user of the client device 106. In an exemplary embodiment, the user manipulates the client device 106 to execute a web browser application 107 and contact the application server 102 using a networking protocol, such as the hypertext transport protocol (HTTP) or the like, to request access to the virtual application 124, wherein the application platform 122 authenticates the user and generates the virtual application 124 at run time based upon information provided by the user of the client device 106 and/or data associated with the user (or the user's tenant) maintained by the database 110 (e.g., in one or more of the data tables 114). In this regard, the virtual application 124 includes code, data and/or other dynamic web content provided to the client device 106 that can be parsed, executed or otherwise presented by the browser application 107 running on the client device 106.
  • As described in greater detail below in the context of FIG. 2, the user of the client device 106 utilizes the virtual application 124 to interface with the database 110 to create, save, update, or otherwise modify data in one or more of the data tables 114, wherein each data transaction initiated by the user of the client device 106 is monitored by the transaction monitoring engine 126 and compared to the list of streaming queries maintained in the definition table 128 to identify data transactions satisfying a streaming query. In this regard, when the user of the client device 106 initiates or otherwise performs a data transaction (e.g., creating a new entry or updating an existing entry in one of the data tables 114) that satisfies a streaming query (e.g., by satisfying both the notification qualifiers and the query statement), the transaction monitoring engine 126 updates the notification table 116 by creating a new entry in the notification table 116 that indicates the notification-triggering data transaction (e.g., a new entry including the identifier associated with the database entry associated with the data transaction used for locating the database entry in the data tables 114, the data transaction type, the identifier associated with the streaming query, and the like).
  • Still referring to FIG. 1, similar to the originating application server 102 described above, the distributing application server 104 is realized as a computing system or another combination of processing logic, circuitry, hardware, firmware and/or other components that implements an application platform 132 that accesses the database 110 and generates or otherwise supports a virtual application 134 provided to a second client device 108 via the network 112. In this regard, the second client device 108 represents another electronic device that is utilized by another user to access an instance of a virtual application 134 and input and/or receive data pertaining to the virtual application 134. As described above, in one or more exemplary embodiments, the distributing application server 104 includes a processing system that includes or otherwise accesses a memory or another non-transitory computer-readable medium of storing programming instructions for execution by the processing system that, when read and executed by the processing system, cause the application server 104 and/or application platform 132 to generate the virtual application 134 that is provided to the client device 108 and perform various additional tasks, operations, functions, and processes described in greater detail below.
  • In the illustrated embodiment, the application platform 132 and/or virtual application 134 generates or otherwise provides a streaming engine 136 that is utilized to establish a streaming connection with the client device 108 for providing data used to generate substantially real-time notifications of data transactions satisfying a streaming query that the user of the client device 108 is subscribed to. In this regard, the user of the client device 108 may interact with the virtual application 134 presented by the browser application 109 indicate a streaming query that the user would like to be subscribed to, wherein the browser application 109 communicates with the streaming engine 136 to provide the subscription request for that streaming query and establish a streaming connection with the distributing application server 104 associated with that subscription request. In exemplary embodiments, the subscription request includes an identifier associated with the streaming query the user would like to be subscribed to, wherein the application platform 132 and/or virtual application 134 generates or otherwise provides a subscription engine 137 that is coupled to the streaming engine 136 to receive the subscription request and an identifier associated with the client device 108. In some embodiments, the identifier associated with the client device 108 is generated by the distributing application server 104 (e.g., by the streaming engine 136 in response to receiving a request from the client device 108) and assigned to the client device 108 by the distributing application server 104. The subscription engine 137 updates a subscription table 138 maintained by the distributing application server 104 and/or application platform 132 (e.g., in memory) to include the identifier associated with the streaming query and the identifier for associated with the client device 108 subscribed to that streaming query. In this manner, the subscription table 138 reflects the streaming queries that are currently subscribed to by client devices accessing the distributing application server 104 and the respective client device(s) associated with (or subscribed to) each streaming query. As described in greater detail below in the context of FIG. 5, the subscription engine 137 monitors the notification table 116 for data transactions that correspond to a streaming query that is subscribed to by the client device 108, in response to identifying a data transaction satisfying the client device 108 user's subscribed streaming query, the subscription engine 137 obtains, from the data tables 114, data associated with that notification-triggering data transaction and provides at least a portion of the obtained data to the streaming engine 136 along with the identifier for the subscribed client device 108 that should receive the obtained data. The streaming engine 136 communicates or otherwise provides the portion of the obtained data to the browser application 109 via the streaming connection associated with the received subscribed client device identifier, and in turn, the browser application 109 generates or otherwise provides a notification of the data transaction that satisfied the subscribed streaming query to the user of the client device 108 substantially in real-time based on the portion of obtained data provided by the streaming engine 136 on the application server 104. In some embodiments, the streaming engine 136 and the subscription engine 137 are allocated separate thread pools by the processing system of the distributing application server 104.
  • FIG. 2 depicts an exemplary embodiment of a transaction identification process 200 suitable for implementation by an application system, such as application system 100, to identify data transactions satisfying a streaming query for providing substantially real-time notifications of those data transactions on subscribed client devices, as described in greater detail below in the context of FIG. 5. The various tasks performed in connection with the illustrated process 200 may be performed by hardware, firmware and/or software executed by processing circuitry, or any combination thereof. For illustrative purposes, the following description may refer to elements mentioned above in connection with FIG. 1. In practice, portions of the transaction identification process 200 may be performed by different elements of the application system 100. That said, in exemplary embodiments, the transaction identification process 200 is performed by the originating application server 102 and/or application platform 122. It should be appreciated that the transaction identification process 200 may include any number of additional or alternative tasks, the tasks need not be performed in the illustrated order and/or the tasks may be performed concurrently, and/or the transaction identification process 200 may be incorporated into a more comprehensive procedure or process having additional functionality not described in detail herein. Moreover, one or more of the tasks shown and described in the context of FIG. 2 could be omitted from a practical embodiment of the transaction identification process 200 as long as the intended overall functionality remains intact.
  • Referring to FIG. 2, and with continued reference to FIG. 1, in an exemplary embodiment, the transaction identification process 200 initializes or otherwise begins by obtaining definition information for streaming queries supported by the application system (task 202). In exemplary embodiments, the originating application server 102 and/or application platform 122 accesses the database 110 to obtain or otherwise copy the streaming query definition information from the definition table 118 and caches or otherwise maintains the streaming query definition information in the local definition table 128. In this regard, for each streaming query that has been registered or otherwise defined by an administrator or another user within the application system 100, the local definition table 128 may maintain the query statement corresponding to that respective streaming query, metadata for that respective query statement, the tenant identifier associated with that respective streaming query, notification qualifiers for that respective streaming query, and an identifier associated with that respective streaming query. For example, FIG. 3 depicts an exemplary definition table 300 that may be maintained by the originating application server 102. For a first streaming query assigned or otherwise allocated a first entry (or row) in the table 300, the table 300 maintains an association between an identifier assigned to the first streaming query (e.g., ‘QUERY_ID_1’), the query statement associated with the first streaming query that was defined by the user or administrator who created the first streaming query (e.g., ‘QUERY_STATEMENT_1’), the data transaction type notification qualifier that was defined by the user or administrator who created the first streaming query (e.g., ‘UPDATE’ transactions only), the tenant identifier associated with the first streaming query (e.g., ‘ORGID_1’), along with metadata pertaining to the query statement associated with the first streaming query (e.g., ‘METADATA_1’). In this regard, the metadata pertaining to the query statement may include information pertaining to the object types and/or the data fields that are referenced by the query statement (e.g., the fields of the objects referenced by ‘QUERY_STATEMENT_1’). As described above, in some embodiments, the metadata may be identified by the originating application server 102 and/or application platform 122 parsing the query statement to extract the referenced database objects and/or data fields. Similarly, the table 300 includes a second entry associated with a second streaming query that includes the identifier assigned to the second streaming query (e.g., ‘QUERY_ID_2’), its associated query statement (e.g., ‘QUERY_STATEMENT_2’), its associated data transaction type notification qualifier (e.g., ‘CREATE’ transactions only), its associated tenant identifier (e.g., ‘ORGID_2’), and metadata pertaining to its query statement (e.g., ‘METADATA_2’), and so on for additional streaming queries defined by administrators or users within the application system 100.
  • Referring again to FIG. 2, in an exemplary embodiment, the transaction identification process 200 continues by receiving input data from a user and performing or otherwise initiating a data transaction to update the database to reflect the received input data (tasks 204, 206). As described above, the originating application server 102 and/or application platform 122 generates or otherwise provides an instance of a virtual application 124 in a browser application 107 on a client device 106 that is utilized by the user of the client device 106 to interface with the database 110 to create, save, update, or otherwise modify data associated with the user and/or the user's tenant in one or more of the data tables 114. In this regard, in response to receiving input data from the user, the application platform 122 and/or virtual application 124 initiates or otherwise performs the appropriate data transaction to update one or more of the data tables 114 to reflect the user input data. For example, when the user is attempting to create a new instance of an object within the virtual application 124, the application platform 122 and/or the virtual application 124 creates a new entry for that type of object in one of the data tables 114 that includes the received user input data defining attributes for the various fields of the new instance of the object. In other embodiments, when the user is attempting to modify or otherwise update data for an existing instance of an object within the virtual application 124, the application platform 122 and/or the virtual application 124 updates or otherwise modifies the existing entry for that object in one of the data tables 114 by overwriting one or more fields of the existing entry to reflect the received user input data.
  • In exemplary embodiments, the transaction identification process 200 continues by monitoring the data transactions initiated or otherwise performed on behalf of client devices for data transactions that satisfy an existing streaming query. The transaction identification process 200 determines or otherwise identifies whether a data transaction is relevant to an existing streaming query based on the metadata and tenant identifiers associated with the existing streaming queries by comparing the data fields, object types, tenant identifier and/or other metadata associated with the respective data transaction to the metadata and tenant identifiers associated with the existing streaming queries (task 208). For example, in accordance with one or more embodiments, the transaction monitoring engine 126 monitors each data transaction initiated or otherwise performed by the application platform 122, and for each data transaction, the transaction monitoring engine 126 identifies the data fields and/or other metadata involved in the data transaction and compares the data fields and/or other metadata for a respective data transaction to the metadata for each of the streaming queries maintained in the definition table 128 to identify data transactions having associated data fields and/or other metadata that match the metadata of a streaming query in the definition table 128. In this regard, if the data fields and/or other metadata associated with the data transaction do not match all of the metadata for a particular streaming query, the transaction monitoring engine 126 determines that data transaction is not relevant to that particular streaming query. For example, if a data transaction involves modifying the account value field of an ‘Account’ object or defining the account value field of a new ‘Account’ object and the metadata for a streaming query indicates that the ‘Account’ object account value field is referenced in the query statement, the transaction monitoring engine 126 may identify or otherwise determine that the data transaction is relevant to that streaming query. However, if the tenant identifier for that streaming query is different from the tenant identifier associated with the user responsible for the data transaction, the transaction monitoring engine 126 may determine the data transaction is not relevant to the streaming query because the tenant associated with the data transaction does not match the tenant associated with the streaming query. When the transaction identification process 200 determines a data transaction is not relevant to any streaming queries, the data transaction is effectively filtered out from further processing and/or analysis and the transaction identification process 200 exits or repeats the loop defined by tasks 202, 204, 206 and 208 to maintain updated streaming query definitions and continuously monitor subsequent data transactions performed on behalf of client devices.
  • When the transaction identification process 200 determines a data transaction is relevant to a streaming query, the transaction identification process 200 determines or otherwise identifies whether the data transaction satisfies the notification qualifiers for that streaming query (task 210). In this regard, if the data transaction involves updating or otherwise modifying an existing entry in the database 110 and the notification qualifier indicates that streaming query is limited to the creation of new entries in the database 110, the transaction monitoring engine 126 determines that the data transaction does not satisfy the notification qualifier for the streaming query. Similarly, if the data transaction involves creating a new entry in the database 110 and the notification qualifier indicates that streaming query is limited to updating or otherwise modifying existing entries in the database 110, the transaction monitoring engine 126 determines that the data transaction does not satisfy the notification qualifier for the streaming query. For example, continuing the above example, if the data transaction involves modifying the account value field of an existing ‘Account’ object and the notification qualifier for the streaming query limits the streaming query to creation of new ‘Account’ objects, the transaction monitoring engine 126 determines the data transaction does not satisfy the notification qualifier for the streaming query. In a similar manner as described above, when the transaction identification process 200 determines a relevant data transaction does not satisfy the notification qualifier for a streaming query, the data transaction is effectively filtered out and the transaction identification process 200 exits or repeats to continuously monitor subsequent data transactions performed on behalf of client devices. Conversely, when the data transaction involves creating a new ‘Account’ object having some user input value for the account value field and the notification qualifier for the streaming query limits the streaming query to creation of new ‘Account’ objects, the transaction monitoring engine 126 determines the data transaction satisfies the notification qualifier for the streaming query.
  • In exemplary embodiments, when the transaction identification process 200 determines a data transaction is both relevant to a particular streaming query and satisfies the notification qualifier for that particular streaming query, the transaction identification process 200 continues by determining or otherwise identifying whether the data transaction satisfies the query statement for that particular streaming query and updating the notification table in the database to indicate the entry associated with the data transaction when the data transaction satisfies the query statement (tasks 212, 214). In exemplary embodiments, the transaction monitoring engine 126 compares the values for data fields of the database entry associated with the data transaction to the query statement to identify whether the values for the database entry match or otherwise are within the range provided by the query statement. To put it another way, the transaction monitoring engine 126 effectively executes or otherwise performs the query statement on the database entry associated with the data transaction to determine whether the query statement would return the database entry associated with the data transaction as a result of the query statement if the query statement where executed by the database 110. It should be noted that by virtue of the transaction identification process 200 filtering out data transactions that are not relevant to the streaming query or otherwise do not satisfy the notification qualifiers for a streaming query, processing resources of the application server 102 are conserved by not evaluating the query statements for each of the streaming queries on each of the data transactions initiated by the application platform 122.
  • When the transaction monitoring engine 126 determines that the database entry associated with a data transaction would be returned as a result of executing the query statement associated with the streaming query, the transaction monitoring engine 126 updates the notification table 116 to indicate the database entry associated with the data transaction. In an exemplary embodiment, the transaction monitoring engine 126 creates a new entry (or row) in the notification table 116 that includes a unique numerical identifier (or record identifier) corresponding to the location of the database entry associated with the notification-triggering data transaction in one or more of the data tables 114, the identifier associated with the streaming query, and the transaction type associated with the data transaction. Additionally, in exemplary embodiments, the new entry in the notification table 116 is timestamped with a transaction identifier generated by the database 110 upon creation of the new entry in the notification table 116.
  • For example, continuing the above example, if the data transaction involves creating a new ‘Account’ object having a value for the account value field of 12,500 and the query statement is intended to return ‘Account’ objects having a value for the account value field greater than 10,000 (e.g., ‘SELECT name, value from account WHERE value >10000’), the transaction monitoring engine 126 may determine the data transaction satisfies the query statement in addition to the notification qualifier thereby satisfies the streaming query. In response to identifying the data transaction satisfies the query statement, the transaction monitoring engine 126 creates a new entry in the table 116 that includes a numerical identifier corresponding to the location of the new ‘Account’ object in the data tables 114, the streaming query identifier associated with the query statement, and the transaction type as the creation of a new entry in the database 110. Conversely, if the data transaction involved creating a new ‘Account’ object having a value for the account value field of 5,000 and the query statement is intended to return ‘Account’ objects having a value for the account value field greater than 10,000, the transaction monitoring engine 126 would determine the data transaction does not satisfy the query statement and the transaction identification process 200 exits or continues by monitoring subsequent data transactions without updating the notification table 116.
  • FIG. 4 depicts an exemplary notification table 400 that may be updated by the transaction monitoring engine 126 and maintained by the database 110 in conjunction with the transaction identification process 200. In this regard, in response to identifying a data transaction to create a new entry in the database 110 that satisfies the query statement associated with the second entry in the definition table 300 (e.g., ‘QUERY_STATEMENT_2’), the transaction monitoring engine 126 creates an entry in the notification table 400 that includes the unique numerical identifier corresponding to the location of that new database entry in the data tables 114 (e.g., ‘RECORD_ID_3’), the streaming query identifier associated with the second query statement (e.g., ‘QUERY_ID_2’), and the transaction type as the creation of a new entry in the database 110 (e.g., ‘CREATE’). Additionally, the entry in the notification table 400 includes a timestamp corresponding to the database time when the entry in the notification table 400 was created (e.g., ‘DB_TIME_1’).
  • Referring again to FIG. 2, in exemplary embodiments, the transaction identification process 200 repeats throughout operation of the application system 100 to update the local definition table 128 maintained by the originating application server 102 and continuously monitor data transactions initiated on behalf of the client device 106. In an exemplary embodiment, the application server 102 and/or application platform 122 periodically accesses the database 110 to identify or otherwise determine if any changes have been made to the definition table 118 relative to the instance of the definition table 128 maintained locally, and in response to identifying changes to the definition table 118 maintained by the database 110, the application server 102 and/or application platform 122 updates, overwrites, or otherwise modifies the local definition table 128 to reflect the updated definition table 118. In this regard, as new streaming queries are added or existing streaming queries are deleted or modified, the table 128 is updated so that the transaction monitoring engine 126 utilizes the most recent streaming query definition information when monitoring subsequent data transactions.
  • Referring again to FIG. 4, and with continued reference to FIGS. 1-3, in the illustrated embodiment, at some subsequent time after updating the notification table 400 to reflect the data transaction satisfying the second streaming query, the transaction monitoring engine 126 identifies a data transaction performed to update an existing entry in the database 110 as satisfying the query statement associated with the first entry in the definition table 300 (e.g., ‘QUERY_STATEMENT_1’). In response, the transaction monitoring engine 126 updates the table 400 by creating a second entry that includes the unique numerical identifier corresponding to the location of the existing entry in the data tables 114 that was modified (e.g., ‘RECORD_ID_2’), the streaming query identifier associated with the first query statement (e.g., ‘QUERY_ID_1’) the transaction type as the updating or modification of an existing entry in the database 110 (e.g., ‘UPDATE’), and a timestamp corresponding to the subsequent database time when the entry in the notification table 400 was created (e.g., ‘DB_TIME_2’). Subsequently, the transaction monitoring engine 126 identifies a data transaction performed to update an existing entry in the database 110 as satisfying the query statement associated with the third entry in the definition table 300 (e.g., ‘QUERY_STATEMENT_3’), and in response, the transaction monitoring engine 126 updates the table 400 by creating a third entry that includes the unique numerical identifier corresponding to the location of the existing entry in the data tables 114 that was modified (e.g., ‘RECORD_ID_1’), the streaming query identifier associated with the third query statement (e.g., ‘QUERY_ID_3’), the transaction type as the updating or modification of an existing entry in the database 110 (e.g., ‘UPDATE’), and a timestamp corresponding to the subsequent database time when the third entry in the notification table 400 was created (e.g., ‘DB_TIME_3’).
  • FIG. 5 depicts an exemplary embodiment of a transaction notification process 500 suitable for implementation by an application system, such as application system 100, to provide substantially real-time notifications of data transactions satisfying one or more streaming queries on one or more subscribed client devices. The various tasks performed in connection with the illustrated process 500 may be hardware, firmware and/or software executed by processing circuitry, or any combination thereof. For illustrative purposes, the following description may refer to elements mentioned above in connection with FIG. 1. In practice, portions of the transaction notification process 500 may be performed by different elements of the application system 100. That said, in exemplary embodiments, the transaction notification process 500 is performed by the distributing application server 104 and/or application platform 132. It should be appreciated that the transaction notification process 500 may include any number of additional or alternative tasks, the tasks need not be performed in the illustrated order and/or the tasks may be performed concurrently, and/or the transaction notification process 500 may be incorporated into a more comprehensive procedure or process having additional functionality not described in detail herein. Moreover, one or more of the tasks shown and described in the context of FIG. 5 could be omitted from a practical embodiment of the transaction notification process 500 as long as the intended overall functionality remains intact.
  • In an exemplary embodiment, the transaction notification process 500 begins by receiving a subscription request for a streaming query from a user of a client device (task 502). As described above in the context of FIG. 1, the distributing application server 104 and/or application platform 132 generates or otherwise provides an instance of a virtual application 134 in a browser application 109 on a client device 108. In an exemplary embodiment, the user of the client device 108 utilizes the browser application 109 to interface with the application server 104 to indicate a streaming query that the user of the client device 108 would like to be subscribed to. For example, the application platform 132 and/or virtual application 134 may access the definition table 118 of the database 110 and generate or otherwise provide, within the browser application 109, a list of existing streaming queries that the user may subscribe to along with graphical user interface elements to allow the user to select or otherwise indicate the streaming query the user would like to subscribe to. In this regard, the application platform 132 and/or virtual application 134 may list or otherwise provide only those streaming queries that are accessible to the user's tenant (e.g., streaming query entries in the definition table 118 having an associated tenant identifier matching the tenant identifier for the user's tenant), so that the subscription request corresponds to a streaming query associated with a tenant identifier that matches the tenant identifier associated with the user of the subscribing client device 108. For example, the distributing application server 104 may provide a list of a plurality of streaming queries associated with the same tenant identifier as the user of the client device 108, wherein the client device 108 and/or browser application 109 displays or otherwise presents the list on the client device 108 and generates the subscription request in response to identifying selection of a streaming query from the list by the user of the client device 108. In some embodiments, the application platform 132 and/or virtual application 134 rejects or otherwise denies a subscription request for a streaming query that is associated with a tenant identifier that is different from the tenant identifier associated with the user of the subscribing client device 108.
  • After receiving the subscription request from the user, the transaction notification process 500 continues by updating a list of streaming query subscriptions currently being supported by the application server (task 504). As described above in the context of FIG. 1, in exemplary embodiments, the distributing application server 104 maintains a subscription table 138 containing a listing of the subscribed streaming queries being monitored by the distributing application server 104 and the client devices accessing the distributing application server 104 that are associated with those subscriptions. For example, referring to FIG. 3, in response to receiving a subscription request corresponding to the first streaming query in the definition table 300, the virtual application 134 and/or subscription engine 137 creates an entry in the active subscription table 138 that maintains an association between the identifier assigned to the first streaming query (e.g., ‘QUERY_ID_1’) and an identifier associated with the client device 108. In this manner, the table 138 maintains a listing of the streaming queries that are subscribed to by a client device interfacing with the database 110 via the distributing application server 104 along with the respective client device that is subscribed the streaming query.
  • In an exemplary embodiment, the transaction notification process 500 continues by establishing a delivery protocol with the client device for providing data associated with data transactions triggering real-time notifications (task 506). In accordance with one or more embodiments, the browser application 109 on the client device 108 automatically attempts to establish a streaming connection with the distributing application server 104 using long-polling. For example, the browser application 109 on the client device 108 may initiate a handshake with the streaming engine 136 and/or application platform 132 using the Bayeux Protocol or CometD programming language to request a long-polling connection associated with the subscribed streaming query that will be held open by the streaming engine 136 and/or application platform 132, as described in greater detail below in the context of FIG. 6. In this regard, when the streaming engine 136 and/or application platform 132 determines that the long-polling connection is allowable, the streaming engine 136 and/or application platform 132 does not immediately respond to the client device 108 and holds the long-polling request open. In accordance with one or more embodiments, the streaming engine 136 and/or application platform 132 also generates an identifier that is associated with client device 108 that may be utilized to establish an association between the client device 108 and/or the streaming connection and the streaming query the client device 108 is subscribed to.
  • Still referring to FIG. 5, in exemplary embodiments, the transaction notification process 500 continues by monitoring the notification table maintained by the database for pending notification entries indicative of recent data transactions satisfying one or more streaming queries supported by the application system (task 508). In this regard, a pending notification entry should be understood as referring to an entry in the notification table that was created after the most recent (or preceding) polling of the notification table, and thus, any notifications associated with this entry that are pending and have not yet been provided to or otherwise generated by subscribed client devices accessing the distributing application server. In exemplary embodiments, the subscription engine 137 polls or otherwise accesses the database 110 to determine if there are any recently created entries in the notification table 116 having a timestamp corresponding to notification-triggering data transactions occurring after the previous polling of the notification table 116, and in response to identifying pending notification entries in the notification table 116, the subscription engine 137 obtains or otherwise copies those pending notification entries in the notification table 116 to the distributing application server 104. For example, referring again to FIG. 4, the subscription engine 137 may initially poll the notification table 400 in the database at an initial time that precedes the creation of the first entry of the notification table 400 and obtain, from the database, the current transaction identifier indicative of the current database time (e.g., ‘DB_TIME_0’) for use as an indication of the most recent polling time. The subscription engine 137 stores or otherwise maintains the obtained transaction identifier (e.g., ‘DB_TIME_0’), and after waiting for some amount of time, the subscription engine 137 subsequently polls the notification table 400 for any entries having an associated transaction identifier that is greater than the previously obtained transaction identifier. Thus, when the subscription engine 137 polls the notification table 400 at some database time after creation of one or more entries in the notification table 400, the subscription engine 137 identifies those entries having a timestamp preceded by the most recent polling time as new pending notification entries, obtains or otherwise copies the values for the columns of those pending notification entries to the distributing application server 104, and updates the most recent polling time indicator to be equal to the transaction identifier associated with the most recent (or latest) entry in the notification table 400. For example, when the subscription engine 137 polls the notification table 400 at some database time after creation of the second entry in the notification table 400 but before creation of the third entry in the notification table 400, the subscription engine 137 maintains the timestamp of the second entry in the notification table 400 (e.g., ‘DB_TIME_2’) as the indication of the most recent polling time. Thus, when the subscription engine 137 subsequently polls the notification table 400, the subscription engine 137 identifies any entries having a timestamp that is preceded by the timestamp of the second entry (e.g., ‘DB_TIME_2’) as pending notification entries and disregards entries in the notification table 400 having timestamps that precede the most recent polling time.
  • Referring again to FIG. 5, in the illustrated embodiment, the transaction notification process 500 continues by determining or otherwise identifying whether any of the pending notification entries correspond to a subscribed streaming query and grouping any pending notification entries that corresponding to a subscribed streaming query by their associated streaming query (tasks 510, 512). In this regard, the subscription engine 137 compares the streaming query identifiers associated with the pending notification entries to the streaming query identifiers in the active subscription table 138 to identify whether any of the pending notification entries are associated with a streaming query that is subscribed to by a client device accessing the distributing application server 104. The subscription engine 137 may discard or delete the obtained information pertaining to pending notification entries that are not associated with a subscribed streaming query supported by the distributing application server 104. In this regard, when none of the pending notification entries match a subscribed streaming query supported by the distributing application server 104, the transaction notification process 500 may continue periodically polling or otherwise monitoring the notification table 116 until identifying pending notification queries that correspond to a subscribed streaming query (e.g., task 508). For the pending notification entries having a streaming query identifier that matches a streaming query identifier in the table 138, the subscription engine 137 utilizes the streaming query identifiers associated with the obtained pending notification entries to group the pending notification entries by their associated streaming query. For example, referring again to FIG. 4, if the first four entries of the notification table 400 are identified as new pending notification entries, the subscription engine 137 may group the first and fourth entries by virtue of both entries being associated with the second streaming query (e.g., ‘QUERY_ID_2’).
  • Still referring to FIG. 5, and with continued reference to FIGS. 1 and 4, in an exemplary embodiment, after grouping the pending notification entries by their associated streaming query, for each group of pending notifications, the transaction notification process 500 continues by querying the database for the data and/or information associated with the respective database entries that corresponds to the respective pending notification entries of the group using the identifiers associated with the respective database entries and the query statement for its associated streaming query (task 514). In this regard, the subscription engine 137 utilizes the identifier corresponding to the location of the corresponding database entry in the database 110 to obtain, from the data tables 114 in the database 110, the data and/or other information associated with the database entry that corresponds to the notification-triggering data transaction corresponding to that pending notification entry.
  • For example, referring again to FIG. 4, after grouping the first and fourth notification entries in the table 400 by their streaming query identifier, the subscription engine 137 may utilize the unique identifier corresponding to the location of the database entry associated with first notification entry (e.g., ‘RECORD_ID_3’) and the unique identifier corresponding to the location of the database entry associated with the fourth notification entry (e.g., ‘RECORD_ID_4’) to query the database 110 using the associated query statement (e.g., ‘QUERY_STATEMENT_2’) to obtain the data and/or information for those database entries from the data tables 114. In this manner, the query statement associated with a streaming query is executed or otherwise performed by the database 110 only once to obtain the relevant data fields identified by that query statement for all of the database entries associated with that streaming query, and the efficiency of the querying is improved by providing the modified query statement that includes the identifiers for the location of those database entries in the database 110. In accordance with one or more embodiments, the subscription engine 137 provides a modified query statement to the database 110 that consists of the query statement associated with a respective streaming query modified to utilize the identifiers for the database entries that satisfy that streaming query as the row selection parameters (e.g., WHERE parameters) for the query. In this regard, although not illustrated in FIG. 1, in practice, the application platform 134 and/or distributing application server 104 may include or otherwise implement a local definition table representative of the definition table 118 by obtaining the definition information from the definition table 118 in a similar manner as described above to maintain the query statement associated with a subscribed streaming query and support the subscription engine 137 generating modified query statements. For example, if ‘QUERY_STATEMENT_2’ corresponds to ‘SELECT name, value from account WHERE value >10000’, the modified query statement provided to the database 110 by the subscription engine 137 may be ‘SELECT name, value from account WHERE record id=RECORD_ID_3 or RECORD_ID_4’ to obtain the name and value data fields corresponding to the first and fourth notification entries because the previous row selection parameter (e.g., value >10000) has already been identified as being satisfied for those entries by the originating application server 102 and/or transaction monitoring engine 126 during the transaction identification process 200, as described above.
  • In an exemplary embodiment, after querying the database to obtain the data and/or information associated with the database entries that correspond to the pending notification entries for a subscribed streaming query, the transaction notification process 500 continues by determining, for each respective user subscribed to that streaming query, which of the database entries are viewable or otherwise accessible to that respective user based on that respective user's permissions within the application system and/or security settings for the respective database entries (task 516). In this manner, the database entries are mapped or otherwise allocated the database entries to each user subscribed to that streaming query by performing row level security checks to filter database entries from individual users. In exemplary embodiments, the subscription engine 137 performs row level security checks to ensure a user subscribed to a particular streaming query has access to each database entry associated with that streaming query to ensure the user does not receive data and/or information that the user is not authorized to access and/or view. Referring again to FIG. 4, when the user of the client device 108 is subscribed to the second streaming query (e.g., ‘QUERY_ID_2’), after obtaining the data associated with the database entries satisfying the second streaming query (e.g., ‘RECORD_ID_3’ and ‘RECORD_ID_4’), the subscription engine 137 determines whether the user is authorized to access each of the database entries based on the user's privileges, rights and/or permissions within the application system 100 and the security settings for each respective database entry. For example, if the security settings for the database entry associated with ‘RECORD_ID_4’ indicate that object is only viewable to individuals designated as administrators and the user of the client device 108 does not have administrator privileges, the subscription engine 137 may not map or otherwise allocate that database entry to the user of the client device 108. Thus, the client device 108 may only receive data corresponding to the database entry associated with ‘RECORD_ID_3’ while other users subscribed to the streaming query ‘QUERY_ID_2’ having administrator privileges may receive data corresponding to the database entry associated with ‘RECORD_ID_4’ in addition to data corresponding to the database entry associated with ‘RECORD_ID_3’.
  • After filtering database entries that are not viewable to the different users subscribed to a particular streaming query, the transaction notification process 500 continues by determining, for each respective user, which of the fields of the database entries are viewable or otherwise accessible to that respective user based on that respective user's permissions within the application system before providing data to that subscribed user's client device (tasks 518, 520). In this regard, in exemplary embodiments, the subscription engine 137 performs field level security checks to ensure a user subscribed to a particular streaming query is only provided data for fields that are viewable or otherwise accessible to that user. In other words, field level security checks are performed for each subscribed user to filter out fields of data for the database entries mapped to that user that that subscribed user does not have permission to view and/or access. Referring again to FIG. 4, after mapping the database entry associated with ‘RECORD_ID_3’ to the user of the client device 108, the subscription engine 137 determines what fields of the database entry that the user is authorized to view based on the user's privileges, rights and/or permissions within the application system 100 and/or the security settings for the database entry associated with ‘RECORD_ID_3’. When the user of the client device 108 does not have permission to view one or more fields of the database entry associated with ‘RECORD_ID_3’, the subscription engine 137 filters or otherwise prevents those fields of data from the remaining data to be provided to the client device 108. For example, if the database entry associated with ‘RECORD_ID_3’ is an ‘Account’ object and the user of the subscribing client device 108 has permission to view the values for the name field and account value field of the ‘Account’ object but does not have permission to view the contact name field of the ‘Account’ object, the subscription engine 137 filters or otherwise prevents the value for the contact name field of the database entry associated with ‘RECORD_ID_3’ from being provided to the client device 108 while the values for the name and account value fields of the database entry associated with ‘RECORD_ID_3’ are provided to the client device 108. In this manner, the client device 108 is only provided the subset of the data obtained from the database 110 that is viewable by the user of the client device 108, and only for those database entries that are viewable by the user of the client device 108.
  • In exemplary embodiments, the subscription engine 137 provides the fields of obtained data that are viewable by the user of the client device 108 to the streaming engine 136, which, in turn, provides those fields of data to the user of the client device 108 according to the delivery protocol established with the browser application 109 on the client device 108. In this regard, if a long-polling connection has been established and held open by the streaming engine 136 and/or application platform 132, the streaming engine 136 pushes the fields of data to the client device 108 by transmitting or otherwise providing a response to the long-polling request (e.g., a long-polling response message) that contains the fields of data provided by the subscription engine 137. Upon receiving the fields of data from the application platform 132 and/or distributing application server 104, the browser application 109 generates or otherwise provides a notification of the data transactions that satisfy the subscribed streaming query based on the received fields of data associated with those data transactions. For example, referring again to FIG. 4, if the data transaction associated with the database entry ‘RECORD_ID_3’ that satisfied the query statement ‘QUERY_STATEMENT_2’ was the creation of a new ‘Account’ object having an account value greater than 10,000, the browser application 109 may present or otherwise display, on the client device 108, a graphical indication that a new ‘Account’ having a value of 12,500 was created using the values for the account name and account value fields retrieved from the database 110 and provided to the client device 108 by the subscription engine 137 via the streaming engine 136.
  • Still referring to FIG. 5, in exemplary embodiments, the loop defined by tasks 508, 510, 512, 514, 516, 518 and 520 repeats throughout operation of the application system 100 to continually monitor for new pending notification entries in the notification table 116 that satisfy actively subscribed-to streaming queries and provide, to the client device associated with each user subscribed to a particular streaming query, fields of data viewable by the respective user that are obtained from the database 110 for database entries accessible by the respective user that correspond to data transactions satisfying the subscribed streaming query. In exemplary embodiments, the subscription engine 137 polls the notification table 137 with a relatively high frequency (e.g., every few seconds) so that data is provided to subscribed client devices substantially in real-time (e.g., with little delay between the occurrence of the data transaction and the corresponding notification being presented on the client device 108).
  • FIG. 6 illustrates an exemplary sequence 600 of communications within the application system 100 in accordance with an exemplary embodiment of the transaction identification process 200 of FIG. 2 in conjunction with the transaction notification process 500 of FIG. 5. Referring to FIG. 6, and with continued reference to FIGS. 1-5, the illustrated sequence 600 begins with the subscribing client device 108 transmitting or otherwise communicating, to the distributing application server 104, a handshake request for negotiating a streaming connection (or channel) with the distributing application server 104, wherein the streaming engine 136 transmits or otherwise communicates a handshake response message that indicates the types of connections supported by the distributing application server 104. In exemplary embodiments, in response to receiving the handshake request, the streaming engine 136 transmits a handshake response message indicating that the streaming engine 136 will support a long-polling streaming connection with the subscribing client device 108. In response, the subscribing client device 108 transmits or otherwise communicates a subscription request 604 identifying the streaming query that the user of the client device 108 would like to subscribe to, wherein the streaming engine 136 receives the streaming request and provides the streaming request to the subscription engine 137 for updating the active subscription table 138 to maintain an association between the subscribing client device 108 and the streaming query that the subscribing client device 108 is subscribing to. For example, if the subscription request indicates that the client device 108 would like to subscribe to the second streaming query from the definition table 300 and the tenant identifier associated with the user of the subscribing client device 108 indicates the subscribing user is associated with the same tenant that the second streaming query is associated with (e.g., ‘ORGID_2’), the subscription engine 137 creates an entry in the table 138 maintaining an association between an identifier associated with the subscribing client device 108 and the streaming query identifier for the second streaming query (e.g., ‘QUERY_ID_2’). As described above, the identifier associated with the subscribing client device 108 may be generated and assigned to the subscribing client device 108 by the distributing application server 104. After providing the subscription request 604, the subscribing client device 108 transmits or otherwise communicates a long-polling request 606 to the streaming engine 136 to initiate or otherwise establish the long-polling streaming connection to the distributing application server 104 associated with the subscription request 604. In the illustrated embodiment, streaming engine 136 does not immediately respond to the long-polling request 606 and holds the long-polling streaming connection open until identifying notification-generating data transactions associated with the subscription request, as described in greater detail below.
  • After updating the table 138 to indicate the streaming query subscribed to by the subscribing client device 108, the subscription engine 137 polls 608 the notification table 116 of the database 110 and obtain any entries created after the most recent polling of the notification table 116. In this regard, entries created after the most recent polling of the notification table 116 correspond to data transactions satisfying a streaming query that occurred after the previous polling of the notification table 116 by the subscription engine 137. In the illustrated embodiment, at some point after the first polling 608 by the subscription engine 137, a user associated with the same tenant as the user of the subscribing client device 108 (e.g., ‘ORGID_2’) utilizes the utilizes the virtual application 124 on the originating client device 106 to input or otherwise provide data 610 for storage in the database 110. In response to receiving the user input data 610, the application platform 122 and/or virtual application 124 initiates or otherwise performs a data transaction 612 on behalf of the client device 106 to store the received user input data in one or more of the data tables 114 in the appropriate manner, for example, by creating a new database entry in one of the data tables 114 that contains the user input data or by modifying an existing database entry in one of the data tables 114 to reflect the user input data. As described above in the context of FIG. 2, the transaction monitoring engine 126 compares the data transaction 612 to the streaming queries maintained in the definition table 128, and in response to determining the data transaction 612 satisfies a streaming query, the transaction monitoring engine 126 creates a new entry 614 in the notification table 116 that indicates the database entry associated with the data transaction 612 and the streaming query that the data transaction 612 satisfies. For example, after determining the tenant identifier associated with the user of the originating client device 106 responsible for the data transaction matches the tenant identifier associated with the second streaming query (e.g., ‘ORGID_2’), the transaction monitoring engine 126 determines whether the data transaction is relevant to the second streaming query before determining whether the data transaction satisfies the query statement associated with the second streaming query (e.g., ‘QUERY_STATEMENT_2’), as described above. In this manner, when the data transaction 612 corresponds to the creation of a new database entry having a value for one or more fields that satisfies the query statement associated with the second streaming query (e.g., ‘QUERY_STATEMENT_2’), the subscription engine 137 creates a new notification entry 614 in the table 400 that includes the unique identifier associated with the created database entry (e.g., ‘RECORD_ID_3’), the identifier associated with the streaming query satisfied by the data transaction (e.g., ‘QUERY_ID_2’), the type of data transaction involved, and the transaction identifier (e.g., ‘DB_TIME_1’) indicative of the time when the data transaction occurred.
  • As described above in the context of FIG. 5, in exemplary embodiments, the subscription engine 137 periodically polls the notification table 116 for pending notification entries that were created after the most recent polling of the notification table 116. In this regard, in the illustrated embodiment, after the transaction monitoring engine 126 creates the notification entry 614 corresponding to the data transaction performed 612 on behalf of the originating client device 106, the subscription engine 137 polls 616 the notification table 116 to obtain any pending notification entries created after the preceding polling 608 of the notification table 116. As described above in the context of FIG. 5, the subscription engine 137 on the distributing application server 104 identifies the pending notification entry associated with the second streaming query statement as corresponding to the subscribed streaming query associated with the subscribing client device 108 and obtains the data 618 for the data transaction associated with the pending notification entry from one or more data tables 114 of the database 110 by querying the database 110 by modifying the query statement associated with the subscribed streaming query (e.g., ‘QUERY_STATEMENT_2’) to use the unique identifier associated with the database entry (e.g., ‘RECORD_ID_3’) that was obtained 616 from the notification table 116. After obtaining the data from the database 610, the subscription engine 137 performs row level security checks to verify that the user of the subscribing client device 108 is capable of viewing or otherwise accessing the database entry associated with the pending notification entry, and then performs field level security checks to filter any fields of data that the user is not capable of viewing or otherwise accessing. In this manner, for the fields of the ‘RECORD_ID_3’ database entry that are viewable and/or accessible by the user of the subscribing client device 108, the subscription engine 137 provides the data for those fields of the ‘RECORD_ID_3’ database entry that was obtained from the database 110 to the streaming engine 136 when the user of the subscribing client device 108 is subscribed to the ‘QUERY_ID_2’ streaming query before the ‘RECORD_ID_3’ database entry is created. In the illustrated embodiment, the streaming engine 136 provides the obtained data 620 to the subscribing client device 108 by responding to the long-polling request with the obtained data, wherein the browser application 109 on the subscribing client device 108 generates or otherwise provides a notification to the user of creation of the ‘RECORD_ID_3’ database entry in the database 110 based on the portions of obtained data received from the distributing application server 104.
  • Still referring to FIG. 6, in the illustrated embodiment, at some point after the ‘RECORD_ID_3’ database entry is created on behalf of the originating client device 106, the user of the originating client device 106 inputs or otherwise provides data 622 for storage in the database 110, wherein the application platform 122 and/or virtual application 124 initiates or otherwise performs a data transaction 624 to create a new database entry in the database 110 that contains the received user input data. As described above, the transaction monitoring engine 126 compares the data transaction 624 to the streaming queries maintained in the definition table 128, and in response to determining the data transaction 624 satisfies the second streaming query, the transaction monitoring engine 126 creates a new entry 626 in the notification table 116 that indicates the database entry associated with the data transaction 624 (e.g., ‘RECORD_ID_4’) and the second streaming query (e.g., ‘QUERY_ID_2’). After receiving the response 620 to the initial long-polling request 606, the subscribing client device 108 transmits or otherwise communicates a long-polling request 628 to the streaming engine 136 to maintain the long-polling streaming connection to the distributing application server 104. As described above, the subscription engine 137 polls 630 the notification table 116 for pending notification entries that were created after the preceding polling 616 of the notification table 116, identifies the pending notification entry associated with the ‘RECORD_ID_4’ database entry as corresponding to the subscribed streaming query associated with the subscribing client device 108, queries the database 110 by modifying the query statement associated with the subscribed query to use the ‘RECORD_ID_4’ identifier to obtain the data 632 associated with the ‘RECORD_ID_4’ database entry, and provides the portions of the obtained data 632 viewable or otherwise accessible by the user of the subscribing client device 108 to the streaming engine 136, which, in turn, provides 634 those portions of obtained data to the subscribing client device 108 as a response to the long-polling request 628, as described above.
  • Referring now to FIG. 7, in accordance with one or more embodiments, the database 110 is realized as a multi-tenant database that stores or otherwise maintains data associated with a plurality of tenants as part of a multi-tenant system, and the application servers 102, 104 provide instances of virtual applications 124, 134 to users of multiple different tenants, as described in greater detail below. The illustrated multi-tenant system 700 of FIG. 7 includes a server 702 (which may be an originating application server 102 and/or a distributing application server 104) that dynamically creates and supports virtual applications 728 (e.g., virtual applications 124, 134) based upon data 732 from a common database 730 (e.g., database 110) that is shared between multiple tenants, alternatively referred to herein as a multi-tenant database. Data and services generated by the virtual applications 728 are provided via a network 745 (e.g., network 112) to any number of client devices 740 (e.g., originating client devices 106 and/or subscribing client devices 108), as desired. Each virtual application 728 is suitably generated at run-time (or on-demand) using a common application platform 710 that securely provides access to the data 732 in the database 730 for each of the various tenants subscribing to the multi-tenant system 700. In accordance with one non-limiting example, the multi-tenant system 700 is implemented in the form of an on-demand multi-tenant customer relationship management (CRM) system that can support any number of authenticated users of multiple tenants.
  • As used herein, a “tenant” or an “organization” should be understood as referring to a group of one or more users that shares access to common subset of the data within the multi-tenant database 730. In this regard, each tenant includes one or more users associated with, assigned to, or otherwise belonging to that respective tenant. To put it another way, each respective user within the multi-tenant system 700 is associated with, assigned to, or otherwise belongs to a particular tenant of the plurality of tenants supported by the multi-tenant system 700. Tenants may represent customers, customer departments, business or legal organizations, and/or any other entities that maintain data for particular sets of users within the multi-tenant system 700. Although multiple tenants may share access to the server 702 and the database 730, the particular data and services provided from the server 702 to each tenant can be securely isolated from those provided to other tenants. The multi-tenant architecture therefore allows different sets of users to share functionality and hardware resources without necessarily sharing any of the data 732 belonging to or otherwise associated with other tenants.
  • The multi-tenant database 730 is any sort of repository or other data storage system capable of storing and managing the data 732 associated with any number of tenants. The database 730 may be implemented using any type of conventional database server hardware. In various embodiments, the database 730 shares processing hardware 704 with the server 702. In other embodiments, the database 730 is implemented using separate physical and/or virtual database server hardware that communicates with the server 702 to perform the various functions described herein. In an exemplary embodiment, the database 730 includes a database management system or other equivalent software capable of determining an optimal query plan for retrieving and providing a particular subset of the data 732 to an instance of virtual application 728 in response to a query initiated or otherwise provided by a virtual application 728. The multi-tenant database 730 may alternatively be referred to herein as an on-demand database, in that the multi-tenant database 730 provides (or is available to provide) data at run-time to on-demand virtual applications 728 generated by the application platform 710.
  • In practice, the data 732 may be organized and formatted in any manner to support the application platform 710. In various embodiments, the data 732 is suitably organized into a relatively small number of large data tables to maintain a semi-amorphous “heap”-type format. The data 732 can then be organized as needed for a particular virtual application 728. In various embodiments, conventional data relationships are established using any number of pivot tables 734 that establish indexing, uniqueness, relationships between entities, and/or other aspects of conventional database organization as desired. Further data manipulation and report formatting is generally performed at run-time using a variety of metadata constructs. Metadata within a universal data directory (UDD) 736, for example, can be used to describe any number of forms, reports, workflows, user access privileges, business logic and other constructs that are common to multiple tenants. Tenant-specific formatting, functions and other constructs may be maintained as tenant-specific metadata 738 for each tenant, as desired. Rather than forcing the data 732 into an inflexible global structure that is common to all tenants and applications, the database 730 is organized to be relatively amorphous, with the pivot tables 734 and the metadata 738 providing additional structure on an as-needed basis. To that end, the application platform 710 suitably uses the pivot tables 734 and/or the metadata 738 to generate “virtual” components of the virtual applications 728 to logically obtain, process, and present the relatively amorphous data 732 from the database 730.
  • The server 702 is implemented using one or more actual and/or virtual computing systems that collectively provide the dynamic application platform 710 for generating the virtual applications 728. For example, the server 702 may be implemented using a cluster of actual and/or virtual servers operating in conjunction with each other, typically in association with conventional network communications, cluster management, load balancing and other features as appropriate. The server 702 operates with any sort of conventional processing hardware 704, such as a processor 705, memory 706, input/output features 707 and the like. The input/output features 707 generally represent the interface(s) to networks (e.g., to the network 745, or any other local area, wide area or other network), mass storage, display devices, data entry devices and/or the like. The processor 705 may be implemented using any suitable processing system, such as one or more processors, controllers, microprocessors, microcontrollers, processing cores and/or other computing resources spread across any number of distributed or integrated systems, including any number of “cloud-based” or other virtual systems. The memory 706 represents any non-transitory short or long term storage or other computer-readable media capable of storing programming instructions for execution on the processor 705, including any sort of random access memory (RAM), read only memory (ROM), flash memory, magnetic or optical mass storage, and/or the like. The computer-executable programming instructions, when read and executed by the server 702 and/or processor 705, cause the server 702 and/or processor 705 to create, generate, or otherwise facilitate the application platform 710 and/or virtual applications 728 and perform one or more additional tasks, operations, functions, and/or processes described herein. It should be noted that the memory 706 represents one suitable implementation of such computer-readable media, and alternatively or additionally, the server 702 could receive and cooperate with external computer-readable media that is realized as a portable or mobile component or application platform, e.g., a portable hard drive, a USB flash drive, an optical disc, or the like.
  • The application platform 710 is any sort of software application or other data processing engine that generates the virtual applications 728 that provide data and/or services to the client devices 740. In a typical embodiment, the application platform 710 gains access to processing resources, communications interfaces and other features of the processing hardware 704 using any sort of conventional or proprietary operating system 708. The virtual applications 728 are typically generated at run-time in response to input received from the client devices 740. For the illustrated embodiment, the application platform 710 includes a bulk data processing engine 712, a query generator 714, a search engine 716 that provides text indexing and other search functionality, and a runtime application generator 720. Each of these features may be implemented as a separate process or other module, and many equivalent embodiments could include different and/or additional features, components or other modules as desired.
  • The runtime application generator 720 dynamically builds and executes the virtual applications 728 in response to specific requests received from the client devices 740. The virtual applications 728 are typically constructed in accordance with the tenant-specific metadata 738, which describes the particular tables, reports, interfaces and/or other features of the particular application 728. In various embodiments, each virtual application 728 generates dynamic web content that can be served to a browser or other client program 742 associated with its client device 740, as appropriate.
  • The runtime application generator 720 suitably interacts with the query generator 714 to efficiently obtain multi-tenant data 732 from the database 730 as needed in response to input queries initiated or otherwise provided by users of the client devices 740. In a typical embodiment, the query generator 714 considers the identity of the user requesting a particular function (along with the user's associated tenant), and then builds and executes queries to the database 730 using system-wide metadata 736, tenant specific metadata 738, pivot tables 734, and/or any other available resources. The query generator 714 in this example therefore maintains security of the common database 730 by ensuring that queries are consistent with access privileges granted to the user and/or tenant that initiated the request. In this manner, the query generator 714 suitably obtains requested subsets of data 732 accessible to a user and/or tenant from the database 730 as needed to populate the tables, reports or other features of the particular virtual application 728 for that user and/or tenant.
  • Still referring to FIG. 7, the data processing engine 712 performs bulk processing operations on the data 732 such as uploads or downloads, updates, online transaction processing, and/or the like. In many embodiments, less urgent bulk processing of the data 732 can be scheduled to occur as processing resources become available, thereby giving priority to more urgent data processing by the query generator 714, the search engine 716, the virtual applications 728, etc.
  • In exemplary embodiments, the application platform 710 is utilized to create and/or generate data-driven virtual applications 728 for the tenants that they support. Such virtual applications 728 may make use of interface features such as custom (or tenant-specific) screens 724, standard (or universal) screens 722 or the like. Any number of custom and/or standard objects 726 may also be available for integration into tenant-developed virtual applications 728. As used herein, “custom” should be understood as meaning that a respective object or application is tenant-specific (e.g., only available to users associated with a particular tenant in the multi-tenant system) or user-specific (e.g., only available to a particular subset of users within the multi-tenant system), whereas “standard” or “universal” applications or objects are available across multiple tenants in the multi-tenant system. The data 732 associated with each virtual application 728 is provided to the database 730, as appropriate, and stored until it is requested or is otherwise needed, along with the metadata 738 that describes the particular features (e.g., reports, tables, functions, objects, fields, formulas, code, etc.) of that particular virtual application 728. For example, a virtual application 728 may include a number of objects 726 accessible to a tenant, wherein for each object 726 accessible to the tenant, information pertaining to its object type along with values for various fields associated with that respective object type are maintained as metadata 738 in the database 730. In this regard, the object type defines the structure (e.g., the formatting, functions and other constructs) of each respective object 726 and the various fields associated therewith.
  • Still referring to FIG. 7, the data and services provided by the server 702 can be retrieved using any sort of personal computer, mobile telephone, tablet or other network-enabled client device 740 on the network 745. In an exemplary embodiment, the client device 740 includes a display device, such as a monitor, screen, or another conventional electronic display capable of graphically presenting data and/or information retrieved from the multi-tenant database 730. Typically, the user operates a conventional browser application or other client program 742 executed by the client device 740 to contact the server 702 via the network 745 using a networking protocol, such as the hypertext transport protocol (HTTP) or the like. The user typically authenticates his or her identity to the server 702 to obtain a session identifier (“SessionID”) that identifies the user in subsequent communications with the server 702. When the identified user requests access to a virtual application 728, the runtime application generator 720 suitably creates the application at run time based upon the metadata 738, as appropriate. As noted above, the virtual application 728 may contain Java, ActiveX, or other content that can be presented using conventional client software running on the client device 740; other embodiments may simply provide dynamic web or other content that can be presented and viewed by the user, as desired.
  • Referring now to FIGS. 1-7, to briefly summarize, one advantage of the subject matter described herein is that when the application system 100 is a multi-tenant system, users associated with the same tenant can be notified of data transactions initiated on behalf of other users associated with that tenant substantially in real-time while reducing the load on the multi-tenant database and the application server(s). For example, for a streaming query registered to a first tenant that the users of the client devices 106, 108 are associated with, when the user of the client device 106 initiates a data transaction, the application server 102 matches the user's associated tenant identifier (which is the first tenant's identifier) to the tenant identifier associated with that registered streaming query before determining whether the data transaction satisfies the query statement associated with that streaming query. In this manner, the application server 102 may avoid unnecessarily comparing query statements associated with the first tenant to data transactions performed on behalf of other tenants and vice versa, and similarly, the multi-tenant database 110 is not burdened by having to compare each transaction to the query statements associated with the registered streaming queries for all the tenants supported by the multi-tenant database 110. As described above, when the distributing application server 104 identifies a data transaction satisfying the query statement that the user of client device 108 is subscribed to, the application server 104 queries the multi-tenant database 110 using the unique identifier for the database entry associated with that data transaction, thereby improving the efficiency of the query and reducing the load on the multi-tenant database 110. Additionally, database entries associated with the same query statement are grouped so that the multi-tenant database 110 executes a single query statement to obtain the data for all of the recent data transactions that satisfy that query statement, rather than executing the query statement for each individual data transaction when there are multiple pending notifications associated with that query statement or executing the query statement for each individual user subscribed to that query. Another advantage of the subject matter described herein is that the notification data is provided to subscribed users in accordance with their permissions and/or security settings, which may be established by an administrator associated with that tenant. For example, as described above, row level and field level security checks are applied based on the permissions and/or security settings associated with the user of the client device 108 before providing data to the client device 108. In this manner, the client device 108 is only provided fields of data that are viewable or accessible by the user of the client device 108, and those fields of data are only provided for database entries that are viewable or accessible by the user of the client device 108.
  • The foregoing description is merely illustrative in nature and is not intended to limit the embodiments of the subject matter or the application and uses of such embodiments. Furthermore, there is no intention to be bound by any expressed or implied theory presented in the technical field, background, or the detailed description. As used herein, the word “exemplary” means “serving as an example, instance, or illustration.” Any implementation described herein as exemplary is not necessarily to be construed as preferred or advantageous over other implementations, and the exemplary embodiments described herein are not intended to limit the scope or applicability of the subject matter in any way.
  • For the sake of brevity, conventional techniques related to computer programming languages, techniques and/or protocols, computer networking, on-demand and/or multi-tenant systems or databases, authentication, data security, and other functional aspects of the systems (and the individual operating components of the systems) may not be described in detail herein. In addition, those skilled in the art will appreciate that embodiments may be practiced in conjunction with any number of system and/or network architectures, data transmission protocols, and device configurations, and that the system described herein is merely one suitable example. Furthermore, certain terminology may be used herein for the purpose of reference only, and thus is not intended to be limiting. For example, the terms “first”, “second” and other such numerical terms do not imply a sequence or order unless clearly indicated by the context.
  • Embodiments of the subject matter may be described herein in terms of functional and/or logical block components, and with reference to symbolic representations of operations, processing tasks, and functions that may be performed by various computing components or devices. Such operations, tasks, and functions are sometimes referred to as being computer-executed, computerized, software-implemented, or computer-implemented. In this regard, it should be appreciated that the various block components shown in the figures may be realized by any number of hardware, software, and/or firmware components configured to perform the specified functions. For example, an embodiment of a system or a component may employ various integrated circuit components, e.g., memory elements, digital signal processing elements, logic elements, look-up tables, or the like, which may carry out a variety of functions under the control of one or more microprocessors or other control devices. In this regard, the subject matter described herein can be implemented in the context of any computer-implemented system and/or in connection with two or more separate and distinct computer-implemented systems that cooperate and communicate with one another. That said, in one or more exemplary embodiments, the subject matter described herein is implemented in conjunction with a virtual customer relationship management (CRM) application in a multi-tenant environment.
  • While at least one exemplary embodiment has been presented in the foregoing detailed description, it should be appreciated that a vast number of variations exist. It should also be appreciated that the exemplary embodiment or embodiments described herein are not intended to limit the scope, applicability, or configuration of the claimed subject matter in any way. Rather, the foregoing detailed description will provide those skilled in the art with a convenient road map for implementing the described embodiment or embodiments. It should be understood that various changes can be made in the function and arrangement of elements without departing from the scope defined by the claims, which includes known equivalents and foreseeable equivalents at the time of filing this patent application. Accordingly, details of the exemplary embodiments or other limitations described above should not be read into the claims absent a clear intention to the contrary.

Claims (20)

1. A method of identifying data transactions satisfying a streaming query, the method comprising:
receiving, by a server, a subscription request for the streaming query from a first client device having a first user associated with a first tenant;
monitoring, by the server, a notification table in a database for an indication of a data transaction corresponding to the streaming query performed on behalf of a second client device having a second user associated with the first tenant; and
in response to identifying the indication of the data transaction corresponding to the streaming query:
obtaining, from the database, data for an entry associated with the data transaction; and
providing at least a portion of the obtained data to the first client device.
2. The method of claim 1, further comprising
initiating, by a second server coupled to the database, the data transaction for the entry in response to input data from the second client device;
determining, by the second server, a tenant identifier associated with the second user matches a tenant identifier associated with the streaming query;
determining, by the second server, the data transaction satisfies the streaming query after determining the tenant identifier associated with the second user matches the tenant identifier associated with the streaming query; and
updating, by the second server, the notification table in the database to indicate an association between the entry and the streaming query after determining the data transaction satisfies the streaming query, wherein the server obtains the data for the entry in response to the second server updating the notification table.
3. The method of claim 1, wherein monitoring the notification table comprises monitoring the notification table in the database for a notification entry associated with the streaming query.
4. The method of claim 3, the notification entry including a unique identifier for the entry in the database, wherein obtaining data for the entry comprises querying the database using the unique identifier to obtain the data associated with the entry.
5. The method of claim 1, further comprising determining the portion of the obtained data based on permissions associated with the first user.
6. The method of claim 1, further comprising maintaining an association between the first client device and the streaming query after receiving the subscription request.
7. The method of claim 1, further comprising establishing a streaming connection with the first client device, wherein providing the portion of the obtained data to the first client device comprises providing the portion of the obtained data using the streaming connection.
8. The method of claim 7, wherein:
establishing the streaming connection comprises receiving a request from the first client device; and
providing the portion of the obtained data using the streaming connection comprises providing, to the first client device, a response including the portion of the obtained data.
9. The method of claim 1, wherein monitoring the notification table comprises:
periodically polling the notification table for notification entries created after a preceding polling; and
grouping the notification entries by their associated streaming query, resulting in a group of one or more notification entries associated with the streaming query.
10. The method of claim 9, wherein providing the portion of the obtained data to the first client device comprises, for each notification entry in the group of one or more notification entries associated with the streaming query:
determining the respective entry in the database associated with the respective notification entry is viewable by the first user; and
filtering the data obtained for the respective entry based on field level permissions associated with the first user, resulting in a subset of the data obtained for the respective entry; and
providing the subset of the data obtained for the respective entry to the first client device.
11. The method of claim 9, the group including a plurality of notification entries associated with the streaming query, wherein obtaining data for the entry associated with the data transaction comprises:
generating a modified query statement using a query statement associated with the streaming query and identifiers associated with a plurality of database entries corresponding to the plurality of notification entries; and
providing the modified query statement to the database to obtain data for the plurality of database entries.
12. The method of claim 1, the server comprising an application server providing a virtual application to the first client device, the application server monitoring the database for the data transaction corresponding to the streaming query, wherein:
the virtual application receives the subscription request and provides the portion of the obtained data to a browser application on the first client device; and
the browser application generates a notification of the data transaction based on the portion of the obtained data.
13. A method of monitoring data transactions, the method comprising:
receiving, by an application server, a subscription request from a client device to subscribe the client device to a streaming query;
polling, by the application server, a notification table in a database for a notification entry associated with the streaming query, the notification entry maintaining an association between the streaming query and a unique identifier associated with a data entry in the database associated with a data transaction satisfying the streaming query; and
in response to identifying the notification entry associated with the streaming query:
querying the database to obtain data for the data entry associated with the data transaction using the unique identifier; and
providing at least a portion of the obtained data to the client device.
14. The method of claim 13, further comprising receiving, by the application server, a long-polling request from the client device, wherein providing the portion of the obtained data comprises transmitting, by the application server, a long-polling response including the portion of the obtained data to the client device.
15. The method of claim 13, wherein polling the notification table comprises polling the notification table for one or more notification entries created in the notification table after a preceding polling.
16. The method of claim 15, wherein identifying the notification entry associated with the streaming query comprises identifying the notification entry of the one or more notification entries including a streaming query identifier matching an identifier associated with the streaming query.
17. A server comprising a processing system and a memory, wherein the memory comprises computer-executable instructions that, when executed by the processing system, cause the server to:
monitor a notification table in a database for a data transaction performed on behalf of a first user associated with a tenant that satisfies a streaming query subscribed to by a second user of a client device, the second user being associated with the tenant;
obtain data for an entry associated with the data transaction from the database using a unique identifier for the entry obtained from the notification table; and
provide at least a portion of the obtained data to the client device.
18. The server of claim 17, wherein the computer-executable instructions cause the server to periodically poll the notification table of the database for a notification entry associated with the streaming query and identify the entry associated with the notification entry as the entry associated with the data transaction.
19. The server of claim 17, wherein the computer-executable instructions cause the server to maintain an association between the streaming query and the client device in response to receiving a subscription request for the streaming query from the client device.
20. The server of claim 17, wherein the computer-executable instructions cause the server to provide a long-polling response including the portion of the obtained data to the client device after receiving a long-polling request associated with the streaming query from the client device.
US13/529,700 2011-06-21 2012-06-21 Streaming transaction notifications Abandoned US20120330915A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US13/529,700 US20120330915A1 (en) 2011-06-21 2012-06-21 Streaming transaction notifications

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US201161499576P 2011-06-21 2011-06-21
US13/529,700 US20120330915A1 (en) 2011-06-21 2012-06-21 Streaming transaction notifications

Publications (1)

Publication Number Publication Date
US20120330915A1 true US20120330915A1 (en) 2012-12-27

Family

ID=47362791

Family Applications (2)

Application Number Title Priority Date Filing Date
US13/529,661 Active US9165036B2 (en) 2011-06-21 2012-06-21 Streaming transaction notifications
US13/529,700 Abandoned US20120330915A1 (en) 2011-06-21 2012-06-21 Streaming transaction notifications

Family Applications Before (1)

Application Number Title Priority Date Filing Date
US13/529,661 Active US9165036B2 (en) 2011-06-21 2012-06-21 Streaming transaction notifications

Country Status (1)

Country Link
US (2) US9165036B2 (en)

Cited By (10)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20130086251A1 (en) * 2011-09-30 2013-04-04 General Electric Company Methods and apparatus for client-side context managers
US8914422B2 (en) 2011-08-19 2014-12-16 Salesforce.Com, Inc. Methods and systems for designing and building a schema in an on-demand services environment
US8914485B2 (en) 2011-09-30 2014-12-16 General Electric Company Methods and apparatus for in-process client-side context managers
EP2819378A1 (en) * 2013-06-27 2014-12-31 Alcatel Lucent Method and device for performing streaming queries
US20150019701A1 (en) * 2013-07-11 2015-01-15 Google Inc. Systems and methods for providing notifications of changes in a cloud-based file system
CN109634986A (en) * 2018-10-29 2019-04-16 平安科技(深圳)有限公司 System monitoring method, device, computer and computer readable storage medium
US20190164634A1 (en) * 2017-11-30 2019-05-30 International Business Machines Corporation Data notification system for health data
US10324946B2 (en) 2011-06-23 2019-06-18 Salesforce.Com Inc. Methods and systems for caching data shared between organizations in a multi-tenant database system
US20210026829A1 (en) * 2019-07-24 2021-01-28 International Business Machines Corporation Self-healing accounting system
CN113157747A (en) * 2021-04-30 2021-07-23 中国银行股份有限公司 Data service method and device

Families Citing this family (86)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9311664B2 (en) * 2010-05-25 2016-04-12 Salesforce.Com, Inc. Systems and methods for automatically collection of performance data in a multi-tenant database system environment
US9372733B2 (en) * 2011-08-30 2016-06-21 Open Text S.A. System and method for a distribution manager
US9317554B2 (en) * 2012-09-26 2016-04-19 Microsoft Technology Licensing, Llc SQL generation for assert, update and delete relational trees
US20140280492A1 (en) * 2013-03-15 2014-09-18 Grant Chieh-Hsiang Yang Method and System for Distributing Data among a Multi-Tenant service with a Shared Userbase
US20150172320A1 (en) * 2013-12-17 2015-06-18 Khalifa University of Science, Technology, and Research Method and devices for access control
US10574714B2 (en) * 2014-06-25 2020-02-25 Microsoft Technology Licensing, Llc Stream-based reactive programming platform
US10305761B2 (en) * 2014-07-31 2019-05-28 Corent Technology, Inc. Multi-application SaaS metering engine
US10657136B2 (en) * 2015-12-02 2020-05-19 International Business Machines Corporation Searching data on a synchronization data stream
US10212256B2 (en) * 2015-12-14 2019-02-19 Facebook, Inc. Delegating database queries
US10599728B1 (en) * 2015-12-17 2020-03-24 EMC IP Holding Company LLC Metadata agent for query management
US20170213175A1 (en) * 2016-01-25 2017-07-27 Velocity Technology Solutions, Inc. Systems and methods for event management in enterprise resource planning systems
US20220164840A1 (en) 2016-04-01 2022-05-26 OneTrust, LLC Data processing systems and methods for integrating privacy information management systems with data loss prevention tools or other tools for privacy design
US11336697B2 (en) 2016-06-10 2022-05-17 OneTrust, LLC Data processing systems for data-transfer risk identification, cross-border visualization generation, and related methods
US11222139B2 (en) 2016-06-10 2022-01-11 OneTrust, LLC Data processing systems and methods for automatic discovery and assessment of mobile software development kits
US11295316B2 (en) 2016-06-10 2022-04-05 OneTrust, LLC Data processing systems for identity validation for consumer rights requests and related methods
US11586700B2 (en) 2016-06-10 2023-02-21 OneTrust, LLC Data processing systems and methods for automatically blocking the use of tracking tools
US11416589B2 (en) 2016-06-10 2022-08-16 OneTrust, LLC Data processing and scanning systems for assessing vendor risk
US11392720B2 (en) 2016-06-10 2022-07-19 OneTrust, LLC Data processing systems for verification of consent and notice processing and related methods
US11222142B2 (en) 2016-06-10 2022-01-11 OneTrust, LLC Data processing systems for validating authorization for personal data collection, storage, and processing
US10740487B2 (en) 2016-06-10 2020-08-11 OneTrust, LLC Data processing systems and methods for populating and maintaining a centralized database of personal data
US11403377B2 (en) 2016-06-10 2022-08-02 OneTrust, LLC Privacy management systems and methods
US11461500B2 (en) 2016-06-10 2022-10-04 OneTrust, LLC Data processing systems for cookie compliance testing with website scanning and related methods
US11354435B2 (en) 2016-06-10 2022-06-07 OneTrust, LLC Data processing systems for data testing to confirm data deletion and related methods
US11544667B2 (en) 2016-06-10 2023-01-03 OneTrust, LLC Data processing systems for generating and populating a data inventory
US11675929B2 (en) 2016-06-10 2023-06-13 OneTrust, LLC Data processing consent sharing systems and related methods
US10510031B2 (en) 2016-06-10 2019-12-17 OneTrust, LLC Data processing systems for identifying, assessing, and remediating data processing risks using data modeling techniques
US11188862B2 (en) 2016-06-10 2021-11-30 OneTrust, LLC Privacy management systems and methods
US11134086B2 (en) 2016-06-10 2021-09-28 OneTrust, LLC Consent conversion optimization systems and related methods
US10909488B2 (en) 2016-06-10 2021-02-02 OneTrust, LLC Data processing systems for assessing readiness for responding to privacy-related incidents
US11651106B2 (en) 2016-06-10 2023-05-16 OneTrust, LLC Data processing systems for fulfilling data subject access requests and related methods
US11651104B2 (en) 2016-06-10 2023-05-16 OneTrust, LLC Consent receipt management systems and related methods
US11410106B2 (en) 2016-06-10 2022-08-09 OneTrust, LLC Privacy management systems and methods
US10592648B2 (en) 2016-06-10 2020-03-17 OneTrust, LLC Consent receipt management systems and related methods
US11294939B2 (en) 2016-06-10 2022-04-05 OneTrust, LLC Data processing systems and methods for automatically detecting and documenting privacy-related aspects of computer software
US10318761B2 (en) 2016-06-10 2019-06-11 OneTrust, LLC Data processing systems and methods for auditing data request compliance
US11475136B2 (en) 2016-06-10 2022-10-18 OneTrust, LLC Data processing systems for data transfer risk identification and related methods
US11416109B2 (en) 2016-06-10 2022-08-16 OneTrust, LLC Automated data processing systems and methods for automatically processing data subject access requests using a chatbot
US11188615B2 (en) 2016-06-10 2021-11-30 OneTrust, LLC Data processing consent capture systems and related methods
US11438386B2 (en) 2016-06-10 2022-09-06 OneTrust, LLC Data processing systems for data-transfer risk identification, cross-border visualization generation, and related methods
US11343284B2 (en) 2016-06-10 2022-05-24 OneTrust, LLC Data processing systems and methods for performing privacy assessments and monitoring of new versions of computer code for privacy compliance
US11416590B2 (en) 2016-06-10 2022-08-16 OneTrust, LLC Data processing and scanning systems for assessing vendor risk
US10997318B2 (en) 2016-06-10 2021-05-04 OneTrust, LLC Data processing systems for generating and populating a data inventory for processing data access requests
US11636171B2 (en) 2016-06-10 2023-04-25 OneTrust, LLC Data processing user interface monitoring systems and related methods
US11520928B2 (en) 2016-06-10 2022-12-06 OneTrust, LLC Data processing systems for generating personal data receipts and related methods
US11301796B2 (en) 2016-06-10 2022-04-12 OneTrust, LLC Data processing systems and methods for customizing privacy training
US10878127B2 (en) 2016-06-10 2020-12-29 OneTrust, LLC Data subject access request processing systems and related methods
US11416798B2 (en) 2016-06-10 2022-08-16 OneTrust, LLC Data processing systems and methods for providing training in a vendor procurement process
US11366786B2 (en) 2016-06-10 2022-06-21 OneTrust, LLC Data processing systems for processing data subject access requests
US11562097B2 (en) 2016-06-10 2023-01-24 OneTrust, LLC Data processing systems for central consent repository and related methods
US10846433B2 (en) 2016-06-10 2020-11-24 OneTrust, LLC Data processing consent management systems and related methods
US11366909B2 (en) 2016-06-10 2022-06-21 OneTrust, LLC Data processing and scanning systems for assessing vendor risk
US10284604B2 (en) 2016-06-10 2019-05-07 OneTrust, LLC Data processing and scanning systems for generating and populating a data inventory
US11277448B2 (en) 2016-06-10 2022-03-15 OneTrust, LLC Data processing systems for data-transfer risk identification, cross-border visualization generation, and related methods
US10949565B2 (en) 2016-06-10 2021-03-16 OneTrust, LLC Data processing systems for generating and populating a data inventory
US11625502B2 (en) * 2016-06-10 2023-04-11 OneTrust, LLC Data processing systems for identifying and modifying processes that are subject to data subject access requests
US11227247B2 (en) 2016-06-10 2022-01-18 OneTrust, LLC Data processing systems and methods for bundled privacy policies
US11481710B2 (en) 2016-06-10 2022-10-25 OneTrust, LLC Privacy management systems and methods
US10909265B2 (en) 2016-06-10 2021-02-02 OneTrust, LLC Application privacy scanning systems and related methods
US11354434B2 (en) 2016-06-10 2022-06-07 OneTrust, LLC Data processing systems for verification of consent and notice processing and related methods
US11727141B2 (en) 2016-06-10 2023-08-15 OneTrust, LLC Data processing systems and methods for synching privacy-related user consent across multiple computing devices
US10685140B2 (en) 2016-06-10 2020-06-16 OneTrust, LLC Consent receipt management systems and related methods
US10678945B2 (en) 2016-06-10 2020-06-09 OneTrust, LLC Consent receipt management systems and related methods
US11418492B2 (en) 2016-06-10 2022-08-16 OneTrust, LLC Data processing systems and methods for using a data model to select a target data asset in a data migration
US11341447B2 (en) 2016-06-10 2022-05-24 OneTrust, LLC Privacy management systems and methods
US11328092B2 (en) 2016-06-10 2022-05-10 OneTrust, LLC Data processing systems for processing and managing data subject access in a distributed environment
US10459922B2 (en) 2016-11-08 2019-10-29 At&T Intellectual Property I, L.P. Unique identification generation for records in a data streaming processing system
KR101986476B1 (en) * 2017-04-17 2019-06-05 미쓰비시덴키 가부시키가이샤 Program writing device
US10013577B1 (en) 2017-06-16 2018-07-03 OneTrust, LLC Data processing systems for identifying whether cookies contain personally identifying information
US10803202B2 (en) 2018-09-07 2020-10-13 OneTrust, LLC Data processing systems for orphaned data identification and deletion and related methods
US11544409B2 (en) 2018-09-07 2023-01-03 OneTrust, LLC Data processing systems and methods for automatically protecting sensitive data within privacy management systems
US11729170B2 (en) * 2019-03-20 2023-08-15 Servicenow, Inc. Efficient and secure communication between computational instances of a remote network management platform
WO2022011142A1 (en) 2020-07-08 2022-01-13 OneTrust, LLC Systems and methods for targeted data discovery
US11444976B2 (en) 2020-07-28 2022-09-13 OneTrust, LLC Systems and methods for automatically blocking the use of tracking tools
WO2022032072A1 (en) 2020-08-06 2022-02-10 OneTrust, LLC Data processing systems and methods for automatically redacting unstructured data from a data subject access request
WO2022060860A1 (en) 2020-09-15 2022-03-24 OneTrust, LLC Data processing systems and methods for detecting tools for the automatic blocking of consent requests
US20230334158A1 (en) 2020-09-21 2023-10-19 OneTrust, LLC Data processing systems and methods for automatically detecting target data transfers and target data processing
WO2022099023A1 (en) 2020-11-06 2022-05-12 OneTrust, LLC Systems and methods for identifying data processing activities based on data discovery results
US11687528B2 (en) 2021-01-25 2023-06-27 OneTrust, LLC Systems and methods for discovery, classification, and indexing of data in a native computing system
US11442906B2 (en) 2021-02-04 2022-09-13 OneTrust, LLC Managing custom attributes for domain objects defined within microservices
WO2022170254A1 (en) 2021-02-08 2022-08-11 OneTrust, LLC Data processing systems and methods for anonymizing data samples in classification analysis
WO2022173912A1 (en) 2021-02-10 2022-08-18 OneTrust, LLC Systems and methods for mitigating risks of third-party computing system functionality integration into a first-party computing system
US11775348B2 (en) 2021-02-17 2023-10-03 OneTrust, LLC Managing custom workflows for domain objects defined within microservices
WO2022178219A1 (en) 2021-02-18 2022-08-25 OneTrust, LLC Selective redaction of media content
EP4305539A1 (en) 2021-03-08 2024-01-17 OneTrust, LLC Data transfer discovery and analysis systems and related methods
US11562078B2 (en) 2021-04-16 2023-01-24 OneTrust, LLC Assessing and managing computational risk involved with integrating third party computing functionality within a computing system
US11620142B1 (en) 2022-06-03 2023-04-04 OneTrust, LLC Generating and customizing user interfaces for demonstrating functions of interactive user environments

Citations (14)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20040064443A1 (en) * 2002-09-30 2004-04-01 David Taniguchi System and method for performing click stream analysis
US20040225564A1 (en) * 2002-05-15 2004-11-11 Stuart Walsh Systems and methods for providing an in-store media broadcast
US20060031225A1 (en) * 2004-08-06 2006-02-09 Grand Central Communications, Inc. Providing on-demand access to services in a wide area network
US7209953B2 (en) * 2002-12-12 2007-04-24 Mark Brooks E-mail system using attachment identifier generated at issuer device for retrieving appropriate file version from e-mail's issuer
US20080209330A1 (en) * 2007-02-23 2008-08-28 Wesley Cruver System and Method for Collaborative and Interactive Communication and Presentation over the Internet
US20100017380A1 (en) * 2008-07-16 2010-01-21 Alexis Naibo Systems and methods to create continuous queries associated with push-type and pull-type data
US20100262650A1 (en) * 2008-10-08 2010-10-14 Abhishek Chauhan Systems and methods for connection management for asynchronous messaging over http
US20120005205A1 (en) * 2000-09-01 2012-01-05 Mark Bobick Server system and method for discovering digital assets in enterprise information systems
US20120078868A1 (en) * 2010-09-23 2012-03-29 Qiming Chen Stream Processing by a Query Engine
US20120271660A1 (en) * 2011-03-04 2012-10-25 Harris Theodore D Cloud service facilitator apparatuses, methods and systems
US8321443B2 (en) * 2010-09-07 2012-11-27 International Business Machines Corporation Proxying open database connectivity (ODBC) calls
US8346747B2 (en) * 2010-03-23 2013-01-01 International Business Machines Corporation Extending database tables in a multi-tenant environment
US8577870B2 (en) * 2011-06-21 2013-11-05 Salesforce.Com, Inc. Statistics management for database querying
US8762302B1 (en) * 2013-02-22 2014-06-24 Bottlenose, Inc. System and method for revealing correlations between data streams

Family Cites Families (97)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5649104A (en) 1993-03-19 1997-07-15 Ncr Corporation System for allowing user of any computer to draw image over that generated by the host computer and replicating the drawn image to other computers
US5608872A (en) 1993-03-19 1997-03-04 Ncr Corporation System for allowing all remote computers to perform annotation on an image and replicating the annotated image on the respective displays of other comuters
US5577188A (en) 1994-05-31 1996-11-19 Future Labs, Inc. Method to provide for virtual screen overlay
GB2300991B (en) 1995-05-15 1997-11-05 Andrew Macgregor Ritchie Serving signals to browsing clients
US5715450A (en) 1995-09-27 1998-02-03 Siebel Systems, Inc. Method of selecting and presenting data from a database using a query language to a user of a computer system
US5821937A (en) 1996-02-23 1998-10-13 Netsuite Development, L.P. Computer method for updating a network design
US5831610A (en) 1996-02-23 1998-11-03 Netsuite Development L.P. Designing networks
US5873096A (en) 1997-10-08 1999-02-16 Siebel Systems, Inc. Method of maintaining a network of partially replicated database system
US6604117B2 (en) 1996-03-19 2003-08-05 Siebel Systems, Inc. Method of maintaining a network of partially replicated database system
WO1998038583A1 (en) 1997-02-26 1998-09-03 Siebel Systems, Inc. Method of determining visibility to a remote database client of a plurality of database transactions having variable visibility strengths
WO1998038586A1 (en) 1997-02-26 1998-09-03 Siebel Systems, Inc. Method of determining the visibility to a remote databaseclient of a plurality of database transactions using simplified visibility rules
AU6440398A (en) 1997-02-26 1998-09-18 Siebel Systems, Inc. Method of using a cache to determine the visibility to a remote database client of a plurality of database transactions
WO1998038762A2 (en) 1997-02-26 1998-09-03 Siebel Systems, Inc. Determining visibility to a remote database client
WO1998040804A2 (en) 1997-02-26 1998-09-17 Siebel Systems, Inc. Distributed relational database
AU6183798A (en) 1997-02-27 1998-09-29 Siebel Systems, Inc. Method of migrating to a successive level of a software distribution incorporating local modifications
WO1998040805A2 (en) 1997-02-27 1998-09-17 Siebel Systems, Inc. Method of synchronizing independently distributed software and database schema
AU6669198A (en) 1997-02-28 1998-09-18 Siebel Systems, Inc. Partially replicated distributed database with multiple levels of remote clients
US6169534B1 (en) 1997-06-26 2001-01-02 Upshot.Com Graphical user interface for customer information management
US6560461B1 (en) 1997-08-04 2003-05-06 Mundi Fomukong Authorized location reporting paging system
US5918159A (en) 1997-08-04 1999-06-29 Fomukong; Mundi Location reporting satellite paging system with optional blocking of location reporting
US20020059095A1 (en) 1998-02-26 2002-05-16 Cook Rachael Linette System and method for generating, capturing, and managing customer lead information over a computer network
US6732111B2 (en) 1998-03-03 2004-05-04 Siebel Systems, Inc. Method, apparatus, system, and program product for attaching files and other objects to a partially replicated database
US5963953A (en) 1998-03-30 1999-10-05 Siebel Systems, Inc. Method, and system for product configuration
CA2341871A1 (en) 1998-08-27 2000-03-09 Upshot Corporation A method and apparatus for network-based sales force management
US6601087B1 (en) 1998-11-18 2003-07-29 Webex Communications, Inc. Instant document sharing
US6728960B1 (en) 1998-11-18 2004-04-27 Siebel Systems, Inc. Techniques for managing multiple threads in a browser environment
US6549908B1 (en) 1998-11-18 2003-04-15 Siebel Systems, Inc. Methods and apparatus for interpreting user selections in the context of a relation distributed as a set of orthogonalized sub-relations
JP2002531899A (en) 1998-11-30 2002-09-24 シーベル システムズ,インコーポレイティド State model for process monitoring
EP1135723A4 (en) 1998-11-30 2005-02-16 Siebel Systems Inc Development tool, method, and system for client server applications
EP1196882A1 (en) 1998-11-30 2002-04-17 Siebel Systems, Inc. Smart scripting call centers
EP1163604A4 (en) 1998-11-30 2002-01-09 Siebel Systems Inc Assignment manager
US20020072951A1 (en) 1999-03-03 2002-06-13 Michael Lee Marketing support database management method, system and program product
US6574635B2 (en) 1999-03-03 2003-06-03 Siebel Systems, Inc. Application instantiation based upon attributes and values stored in a meta data repository, including tiering of application layers objects and components
US7698160B2 (en) 1999-05-07 2010-04-13 Virtualagility, Inc System for performing collaborative tasks
US8095413B1 (en) 1999-05-07 2012-01-10 VirtualAgility, Inc. Processing management information
US6621834B1 (en) 1999-11-05 2003-09-16 Raindance Communications, Inc. System and method for voice transmission over network protocols
US6535909B1 (en) 1999-11-18 2003-03-18 Contigo Software, Inc. System and method for record and playback of collaborative Web browsing session
US6324568B1 (en) 1999-11-30 2001-11-27 Siebel Systems, Inc. Method and system for distributing objects over a network
US6654032B1 (en) 1999-12-23 2003-11-25 Webex Communications, Inc. Instant sharing of documents on a remote server
US7266502B2 (en) 2000-03-31 2007-09-04 Siebel Systems, Inc. Feature centric release manager method and system
US6336137B1 (en) 2000-03-31 2002-01-01 Siebel Systems, Inc. Web client-server system and method for incompatible page markup and presentation languages
US6577726B1 (en) 2000-03-31 2003-06-10 Siebel Systems, Inc. Computer telephony integration hotelling method and system
US6732100B1 (en) 2000-03-31 2004-05-04 Siebel Systems, Inc. Database access method and system for user role defined access
US6842748B1 (en) 2000-04-14 2005-01-11 Rightnow Technologies, Inc. Usage based strength between related information in an information retrieval system
US7730072B2 (en) 2000-04-14 2010-06-01 Rightnow Technologies, Inc. Automated adaptive classification system for knowledge networks
US6665655B1 (en) 2000-04-14 2003-12-16 Rightnow Technologies, Inc. Implicit rating of retrieved information in an information search system
US6434550B1 (en) 2000-04-14 2002-08-13 Rightnow Technologies, Inc. Temporal updates of relevancy rating of retrieved information in an information search system
US6763501B1 (en) 2000-06-09 2004-07-13 Webex Communications, Inc. Remote document serving
KR100365357B1 (en) 2000-10-11 2002-12-18 엘지전자 주식회사 Method for data communication of mobile terminal
US7581230B2 (en) 2001-02-06 2009-08-25 Siebel Systems, Inc. Adaptive communication application programming interface
USD454139S1 (en) 2001-02-20 2002-03-05 Rightnow Technologies Display screen for a computer
US7363388B2 (en) 2001-03-28 2008-04-22 Siebel Systems, Inc. Method and system for direct server synchronization with a computing device
US6829655B1 (en) 2001-03-28 2004-12-07 Siebel Systems, Inc. Method and system for server synchronization with a computing device via a companion device
US7174514B2 (en) 2001-03-28 2007-02-06 Siebel Systems, Inc. Engine to present a user interface based on a logical structure, such as one for a customer relationship management system, across a web site
US20030018705A1 (en) 2001-03-31 2003-01-23 Mingte Chen Media-independent communication server
US20030206192A1 (en) 2001-03-31 2003-11-06 Mingte Chen Asynchronous message push to web browser
US6732095B1 (en) 2001-04-13 2004-05-04 Siebel Systems, Inc. Method and apparatus for mapping between XML and relational representations
US7761288B2 (en) 2001-04-30 2010-07-20 Siebel Systems, Inc. Polylingual simultaneous shipping of software
US6782383B2 (en) 2001-06-18 2004-08-24 Siebel Systems, Inc. System and method to implement a persistent and dismissible search center frame
US6728702B1 (en) 2001-06-18 2004-04-27 Siebel Systems, Inc. System and method to implement an integrated search center supporting a full-text search and query on a database
US6711565B1 (en) 2001-06-18 2004-03-23 Siebel Systems, Inc. Method, apparatus, and system for previewing search results
US6763351B1 (en) 2001-06-18 2004-07-13 Siebel Systems, Inc. Method, apparatus, and system for attaching search results
US20030004971A1 (en) 2001-06-29 2003-01-02 Gong Wen G. Automatic generation of data models and accompanying user interfaces
US6993712B2 (en) 2001-09-28 2006-01-31 Siebel Systems, Inc. System and method for facilitating user interaction in a browser environment
US6826582B1 (en) 2001-09-28 2004-11-30 Emc Corporation Method and system for using file systems for content management
US6724399B1 (en) 2001-09-28 2004-04-20 Siebel Systems, Inc. Methods and apparatus for enabling keyboard accelerators in applications implemented via a browser
US7761535B2 (en) 2001-09-28 2010-07-20 Siebel Systems, Inc. Method and system for server synchronization with a computing device
US6978445B2 (en) 2001-09-28 2005-12-20 Siebel Systems, Inc. Method and system for supporting user navigation in a browser environment
US6901595B2 (en) 2001-09-29 2005-05-31 Siebel Systems, Inc. Method, apparatus, and system for implementing a framework to support a web-based application
US7146617B2 (en) 2001-09-29 2006-12-05 Siebel Systems, Inc. Method, apparatus, and system for implementing view caching in a framework to support web-based applications
US8359335B2 (en) 2001-09-29 2013-01-22 Siebel Systems, Inc. Computing system and method to implicitly commit unsaved data for a world wide web application
US7962565B2 (en) 2001-09-29 2011-06-14 Siebel Systems, Inc. Method, apparatus and system for a mobile web client
US7289949B2 (en) 2001-10-09 2007-10-30 Right Now Technologies, Inc. Method for routing electronic correspondence based on the level and type of emotion contained therein
US6804330B1 (en) 2002-01-04 2004-10-12 Siebel Systems, Inc. Method and system for accessing CRM data via voice
US7058890B2 (en) 2002-02-13 2006-06-06 Siebel Systems, Inc. Method and system for enabling connectivity to a data system
US7672853B2 (en) 2002-03-29 2010-03-02 Siebel Systems, Inc. User interface for processing requests for approval
US7131071B2 (en) 2002-03-29 2006-10-31 Siebel Systems, Inc. Defining an approval process for requests for approval
US6850949B2 (en) 2002-06-03 2005-02-01 Right Now Technologies, Inc. System and method for generating a dynamic interface via a communications network
US7594181B2 (en) 2002-06-27 2009-09-22 Siebel Systems, Inc. Prototyping graphical user interfaces
US7437720B2 (en) 2002-06-27 2008-10-14 Siebel Systems, Inc. Efficient high-interactivity user interface for client-server applications
US8639542B2 (en) 2002-06-27 2014-01-28 Siebel Systems, Inc. Method and apparatus to facilitate development of a customer-specific business process model
US20040010489A1 (en) 2002-07-12 2004-01-15 Rightnow Technologies, Inc. Method for providing search-specific web pages in a network computing environment
US7251787B2 (en) 2002-08-28 2007-07-31 Siebel Systems, Inc. Method and apparatus for an integrated process modeller
US9448860B2 (en) 2003-03-21 2016-09-20 Oracle America, Inc. Method and architecture for providing data-change alerts to external applications via a push service
EP1606740A4 (en) 2003-03-24 2007-10-03 Siebel Systems Inc Common common object
WO2004086197A2 (en) 2003-03-24 2004-10-07 Siebel Systems, Inc. Custom common object
US7904340B2 (en) 2003-03-24 2011-03-08 Siebel Systems, Inc. Methods and computer-readable medium for defining a product model
US8762415B2 (en) 2003-03-25 2014-06-24 Siebel Systems, Inc. Modeling of order data
US7685515B2 (en) 2003-04-04 2010-03-23 Netsuite, Inc. Facilitating data manipulation in a browser-based user interface of an enterprise business application
US7620655B2 (en) 2003-05-07 2009-11-17 Enecto Ab Method, device and computer program product for identifying visitors of websites
US7409336B2 (en) 2003-06-19 2008-08-05 Siebel Systems, Inc. Method and system for searching data based on identified subset of categories and relevance-scored text representation-category combinations
US20040260659A1 (en) 2003-06-23 2004-12-23 Len Chan Function space reservation system
US7237227B2 (en) 2003-06-30 2007-06-26 Siebel Systems, Inc. Application user interface template with free-form layout
US7694314B2 (en) 2003-08-28 2010-04-06 Siebel Systems, Inc. Universal application network architecture
US8082301B2 (en) 2006-11-10 2011-12-20 Virtual Agility, Inc. System for supporting collaborative activity
US8484243B2 (en) * 2010-05-05 2013-07-09 Cisco Technology, Inc. Order-independent stream query processing
US9053231B2 (en) * 2010-06-07 2015-06-09 Salesforce.Com, Inc. Systems and methods for analyzing operations in a multi-tenant database system environment

Patent Citations (14)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20120005205A1 (en) * 2000-09-01 2012-01-05 Mark Bobick Server system and method for discovering digital assets in enterprise information systems
US20040225564A1 (en) * 2002-05-15 2004-11-11 Stuart Walsh Systems and methods for providing an in-store media broadcast
US20040064443A1 (en) * 2002-09-30 2004-04-01 David Taniguchi System and method for performing click stream analysis
US7209953B2 (en) * 2002-12-12 2007-04-24 Mark Brooks E-mail system using attachment identifier generated at issuer device for retrieving appropriate file version from e-mail's issuer
US20060031225A1 (en) * 2004-08-06 2006-02-09 Grand Central Communications, Inc. Providing on-demand access to services in a wide area network
US20080209330A1 (en) * 2007-02-23 2008-08-28 Wesley Cruver System and Method for Collaborative and Interactive Communication and Presentation over the Internet
US20100017380A1 (en) * 2008-07-16 2010-01-21 Alexis Naibo Systems and methods to create continuous queries associated with push-type and pull-type data
US20100262650A1 (en) * 2008-10-08 2010-10-14 Abhishek Chauhan Systems and methods for connection management for asynchronous messaging over http
US8346747B2 (en) * 2010-03-23 2013-01-01 International Business Machines Corporation Extending database tables in a multi-tenant environment
US8321443B2 (en) * 2010-09-07 2012-11-27 International Business Machines Corporation Proxying open database connectivity (ODBC) calls
US20120078868A1 (en) * 2010-09-23 2012-03-29 Qiming Chen Stream Processing by a Query Engine
US20120271660A1 (en) * 2011-03-04 2012-10-25 Harris Theodore D Cloud service facilitator apparatuses, methods and systems
US8577870B2 (en) * 2011-06-21 2013-11-05 Salesforce.Com, Inc. Statistics management for database querying
US8762302B1 (en) * 2013-02-22 2014-06-24 Bottlenose, Inc. System and method for revealing correlations between data streams

Cited By (15)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US10324946B2 (en) 2011-06-23 2019-06-18 Salesforce.Com Inc. Methods and systems for caching data shared between organizations in a multi-tenant database system
US8914422B2 (en) 2011-08-19 2014-12-16 Salesforce.Com, Inc. Methods and systems for designing and building a schema in an on-demand services environment
US8650308B2 (en) * 2011-09-30 2014-02-11 General Electric Company Methods and apparatus for client-side context managers
US8914485B2 (en) 2011-09-30 2014-12-16 General Electric Company Methods and apparatus for in-process client-side context managers
US20130086251A1 (en) * 2011-09-30 2013-04-04 General Electric Company Methods and apparatus for client-side context managers
EP2819378A1 (en) * 2013-06-27 2014-12-31 Alcatel Lucent Method and device for performing streaming queries
US10476758B2 (en) * 2013-07-11 2019-11-12 Google Llc Systems and methods for providing notifications of changes in a cloud-based file system
US20150019701A1 (en) * 2013-07-11 2015-01-15 Google Inc. Systems and methods for providing notifications of changes in a cloud-based file system
US11411837B2 (en) 2013-07-11 2022-08-09 Google Llc Systems and methods for providing notifications of changes in a cloud-based file system
US11855858B2 (en) 2013-07-11 2023-12-26 Google Llc Systems and methods for providing notifications of changes in a cloud-based file system
US20190164634A1 (en) * 2017-11-30 2019-05-30 International Business Machines Corporation Data notification system for health data
CN109634986A (en) * 2018-10-29 2019-04-16 平安科技(深圳)有限公司 System monitoring method, device, computer and computer readable storage medium
US20210026829A1 (en) * 2019-07-24 2021-01-28 International Business Machines Corporation Self-healing accounting system
US11663190B2 (en) * 2019-07-24 2023-05-30 International Business Machines Corporation Self-healing accounting system
CN113157747A (en) * 2021-04-30 2021-07-23 中国银行股份有限公司 Data service method and device

Also Published As

Publication number Publication date
US20120331000A1 (en) 2012-12-27
US9165036B2 (en) 2015-10-20

Similar Documents

Publication Publication Date Title
US9165036B2 (en) Streaming transaction notifications
US8959114B2 (en) Entitlement management in an on-demand system
US11194721B2 (en) Invalidation and refresh of multi-tier distributed caches
US9189521B2 (en) Statistics management for database querying
US10380334B2 (en) Data access rules in a database layer
US8881113B2 (en) Contextual exception management in multi-tenant systems
US10037430B2 (en) System and method for controlling the on and off state of features of business logic at runtime
US9529652B2 (en) Triaging computing systems
US10609140B2 (en) Dynamic resource management systems and methods
US9792456B2 (en) Methods and systems for regulating user engagement
US20150113134A1 (en) Monitoring entitlement usage in an on-demand system
US20140208215A1 (en) Methods and systems for providing filtered report visualizations
US20140101117A1 (en) Methods and systems for managing records in an on-demand system
US10296440B2 (en) Multi-tenant aware debugging methods and systems
US20140289286A1 (en) System and method for performance tuning of garbage collection algorithms
US9292181B2 (en) Filtering objects in a multi-tenant environment
US9195724B2 (en) Associating objects in multi-tenant systems
US20140365523A1 (en) Push subscriptions
US9706007B2 (en) System and method for querying disparate data sources in real time
US9355270B2 (en) Security configuration systems and methods for portal users in a multi-tenant database environment
US20140289332A1 (en) System and method for prefetching aggregate social media metrics using a time series cache
US11416677B2 (en) Dynamic resource management systems and form integration methods
US9237156B2 (en) Systems and methods for administrating access in an on-demand computing environment
US20210173729A1 (en) Systems and methods of application program interface (api) parameter monitoring
US20140019487A1 (en) Systems and methods with workset management in an on-demand computing environment

Legal Events

Date Code Title Description
AS Assignment

Owner name: SALESFORCE.COM, INC., CALIFORNIA

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:MEHRA, VINOD;REEL/FRAME:028932/0868

Effective date: 20120831

STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION