IP Library Granted Patent US 9,779,158
Granted Patent B2
US 9,779,158 · App. 14/982,916 · Granted Oct 3, 2017

Method, apparatus, and computer-readable medium for optimized data subsetting

View Patent ↗
Loading inventors, assignments & file history…
Monitor This Case
Get email alerts when status or documents change.
Order Certified Copies
Most orders are placed with the USPTO same day — all within 24 business hours.
Order via The Patent Place →
Pre-filled with this patent's details
Quick Facts
Patent No.
US 9,779,158
App. No.
14/982,916
Granted
Oct 3, 2017
Kind
B2
Abstract

An apparatus, computer-readable medium, and computer-implemented method for data subsetting, including receiving a request for a subset of data from a plurality of tables, generating an entity graph corresponding to the plurality of tables, expanding the entity graph if the entity graph does not have any cycles, and performing acyclic subset processing on the expanded entity graph if the entity graph does not have any cycles and the expanded entity graph does not have any cycles.

Claims (95)

1. A method for data sub setting executed by one or more computing devices, the method comprising:

receiving, by at least one of the one or more computing devices, a request for a subset of data from a plurality of tables, the request comprising subset criteria;

generating, by at least one of the one or more computing devices, an entity graph corresponding to the plurality of tables, the entity graph comprising:

a plurality of entities, each entity representing a table in the plurality of tables;

edge data corresponding to a plurality of edges between the entities, wherein the edge data identifies a parent entity and a child entity, and each edge runs from a child entity to a parent entity; and

relationship data corresponding to a plurality of relationships between the entities, wherein the relationship data identifies whether the relationship between the parent entity and the child entity is a major relationship or a minor relationship;

expanding, by at least one of the one or more computing devices, the entity graph to generate an expanded entity graph based at least in part on a determination that the entity graph does not contain a cycle; and

performing, by at least one of the one or more computing devices, acyclic subset processing using the expanded entity graph based at least in part on a determination that the entity graph does not contain a cycle and a determination that the expanded entity graph does not contain a cycle.

2. The method of claim 1 , wherein expanding, by at least one of the one or more computing devices, the entity graph to generate an expanded entity graph comprises:

for every major relationship in the entity graph:

creating a duplicate child entity;

creating an edge from the parent entity to the duplicate child entity;

removing every outgoing edge from the child entity other than an edge between the child entity and the parent entity in that relationship; and

adding every outgoing edge removed from the child entity as an outgoing edge from the duplicate child entity.

3. The method of claim 1 , wherein acyclic subset processing comprises:

for every entity corresponding to a table that is to be subsetted, generating an entity-subset definition which defines a portion of the requested subset of data that is in the table represented by the entity, wherein the entity-subset definition comprises one or more expressions;

generating a plan space based on the entity-subset definitions, the plan space comprising one or more operators and one or more intermediate expressions required to compute one or more final subset tables corresponding to the requested subset of data;

expanding the plan space by generating one or more additional operators and one or more additional intermediate expressions that are equivalent to the one or more operators and the one or more intermediate expressions;

selecting a group of operators in the plan space that can be used to calculate the one or more final subset tables; and

calculating the one or more final subset tables using the selected group of operators.

4. The method of claim 3 , wherein selecting a group of operators comprises:

assigning costs to each of the operators in the plan space; and

selecting the group of operators that has the lowest total cost.

5. The method of claim 1 , further comprising:

performing, by at least one of the one or more computing devices, cyclic subset processing using the entity graph based at least in part on a determination that the entity graph contains a cycle; or

performing, by at least one of the one or more computing devices, cyclic subset processing using the expanded entity graph based at least in part on a determination that the expanded entity graph contains a cycle.

6. The method of claim 5 , wherein cyclic subset processing comprises:

for every entity corresponding to a table that is to be subsetted, generating an entity-subset definition which defines a portion of the requested subset of data that is in the table, wherein the entity-subset definition comprises one or more expressions;

for every entity corresponding to a table that is to be subsetted, generating a staging table from the table, wherein the staging table comprises only the columns of data required to evaluate the one or more expressions in the entity-subset definition for that entity and a column of flag values representing whether a particular row is to be included in the final subset, wherein each flag value is initially set to true if the data values in that row fulfill the subset criteria and set to false otherwise;

recursively evaluating every expression in each entity-subset definition and changing the flag values to true for each of the rows which satisfy the expression in each of the staging tables; and

generating one or more final subset tables by compiling all of the rows from the plurality of tables that correspond to rows in the staging tables which have a flag value of true.

7. An apparatus for data subsetting, the apparatus comprising:

one or more processors; and

one or more memories operatively coupled to at least one of the one or more processors and having instructions stored thereon that, when executed by at least one of the one or more processors, cause at least one of the one or more processors to:

receive a request for a subset of data from a plurality of tables, the request comprising subset criteria;

generate an entity graph corresponding to the plurality of tables, the entity graph comprising:

a plurality of entities, each entity representing a table in the plurality of tables;

edge data corresponding to a plurality of edges between the entities, wherein the edge data identifies a parent entity and a child entity, and each edge runs from a child entity to a parent entity; and

relationship data corresponding to a plurality of relationships between the entities, wherein the relationship data identifies whether the relationship between the parent entity and the child entity is a major relationship or a minor relationship;

expand the entity graph to generate an expanded entity graph based at least in part on a determination that the entity graph does not contain a cycle; and

perform acyclic subset processing on the expanded entity graph based at least in part on a determination that the entity graph does not contain a cycle and a determination that the expanded entity graph does not contain a cycle.

8. The apparatus of claim 7 , wherein expanding the entity graph to generate an expanded entity graph comprises:

for every major relationship in the entity graph:

creating a duplicate child entity;

creating an edge from the parent entity to the duplicate child entity;

removing every outgoing edge from the child entity other than an edge between the child entity and the parent entity in that relationship; and

adding every outgoing edge removed from the child entity as an outgoing edge from the duplicate child entity.

9. The apparatus of claim 7 , wherein acyclic subset processing comprises:

for every entity corresponding to a table that is to be subsetted, generating an entity-subset definition which defines a portion of the requested subset of data that is in the table represented by the entity, wherein the entity-subset definition comprises one or more expressions;

generating a plan space based on the entity-subset definitions, the plan space comprising one or more operators and one or more intermediate expressions required to compute one or more final subset tables corresponding to the requested subset of data;

expanding the plan space by generating one or more additional operators and one or more additional intermediate expressions that are equivalent to the one or more operators and the one or more intermediate expressions;

selecting a group of operators in the plan space that can be used to calculate the one or more final subset tables; and

calculating the one or more final subset tables using the selected group of operators.

10. The apparatus of claim 9 , wherein selecting a group of operators comprises:

assigning costs to each of the operators in the plan space; and

selecting the group of operators that has the lowest total cost.

11. The apparatus of claim 7 , wherein at least one of the one or more memories has further instructions stored thereon that, when executed by at least one of the one or more processors, cause at least one of the one or more processors to:

perform cyclic subset processing using the entity graph based at least in part on a determination that the entity graph contains a cycle; or

perform cyclic subset processing using the expanded entity graph based at least in part on a determination that the expanded entity graph contains a cycle.

12. The apparatus of claim 11 , wherein cyclic subset processing comprises:

for every entity corresponding to a table that is to be subsetted, generating an entity-subset definition which defines a portion of the requested subset of data that is in the table, wherein the entity-subset definition comprises one or more expressions;

for every entity corresponding to a table that is to be subsetted, generating a staging table from the table, wherein the staging table comprises only the columns of data required to evaluate the one or more expressions in the entity-subset definition for that entity and a column of flag values representing whether a particular row is to be included in the final subset, wherein each flag value is initially set to true if the data values in that row fulfill the subset criteria and set to false otherwise;

recursively evaluating every expression in each entity-subset definition and changing the flag values to true for each of the rows which satisfy the expression in each of the staging tables; and

generating one or more final subset tables by compiling all of the rows from the plurality of tables that correspond to rows in the staging tables which have a flag value of true.

13. At least one non-transitory computer-readable storage medium storing computer-readable instructions that, when executed by one or more computing devices, cause at least one of the one or more computing devices to:

receive a request for a subset of data from a plurality of tables, the request comprising subset criteria;

generate an entity graph corresponding to the plurality of tables, the entity graph comprising:

a plurality of entities, each entity representing a table in the plurality of tables;

edge data corresponding to a plurality of edges between the entities, wherein the edge data identifies a parent entity and a child entity, and each edge runs from a child entity to a parent entity; and

relationship data corresponding to a plurality of relationships between the entities, wherein the relationship data identifies whether the relationship between the parent entity and the child entity is a major relationship or a minor relationship;

expand the entity graph to generate an expanded entity graph based at least in part on a determination that the entity graph does not contain a cycle; and

perform acyclic subset processing on the expanded entity graph based at least in part on a determination that the entity graph does not contain a cycle and a determination that the expanded entity graph does not contain a cycle.

14. The at least one non-transitory computer-readable storage medium of claim 13 , wherein expanding the entity graph to generate an expanded entity graph comprises:

for every major relationship in the entity graph:

creating a duplicate child entity;

creating an edge from the parent entity to the duplicate child entity;

removing every outgoing edge from the child entity other than an edge between the child entity and the parent entity in that relationship; and

adding every outgoing edge removed from the child entity as an outgoing edge from the duplicate child entity.

15. The at least one non-transitory computer-readable storage medium of claim 13 , wherein acyclic subset processing comprises:

for every entity corresponding to a table that is to be subsetted, generating an entity-subset definition which defines a portion of the requested subset of data that is in the table represented by the entity, wherein the entity-subset definition comprises one or more expressions;

generating a plan space based on the entity-subset definitions, the plan space comprising one or more operators and one or more intermediate expressions required to compute one or more final subset tables corresponding to the requested subset of data;

expanding the plan space by generating one or more additional operators and one or more additional intermediate expressions that are equivalent to the one or more operators and the one or more intermediate expressions;

selecting a group of operators in the plan space that can be used to calculate the one or more final subset tables; and

calculating the one or more final subset tables using the selected group of operators.

16. The at least one non-transitory computer-readable storage medium of claim 15 , wherein selecting a group of operators comprises:

assigning costs to each of the operators in the plan space; and

selecting the group of operators that has the lowest total cost.

17. The at least one non-transitory computer-readable storage medium of claim 13 , further storing computer-readable instructions that, when executed by at least one of the one or more computing devices, cause at least one of the one or more computing devices to:

perform cyclic subset processing using the entity graph based at least in part on a determination that the entity graph contains a cycle; or

perform cyclic subset processing using the expanded entity graph based at least in part on a determination that the expanded entity graph contains a cycle.

18. The at least one non-transitory computer-readable medium of claim 17 , wherein cyclic subset processing comprises:

for every entity corresponding to a table that is to be subsetted, generating an entity-subset definition which defines a portion of the requested subset of data that is in the table, wherein the entity-subset definition comprises one or more expressions;

for every entity corresponding to a table that is to be subsetted, generating a staging table from the table, wherein the staging table comprises only the columns of data required to evaluate the one or more expressions in the entity-subset definition for that entity and a column of flag values representing whether a particular row is to be included in the final subset, wherein each flag value is initially set to true if the data values in that row fulfill the subset criteria and set to false otherwise;

recursively evaluating every expression in each entity-subset definition and changing the flag values to true for each of the rows which satisfy the expression in each of the staging tables; and

generating one or more final subset tables by compiling all of the rows from the plurality of tables that correspond to rows in the staging tables which have a flag value of true.

Assignments (9)
RELEASE OF SECURITY INTEREST Recorded Nov 18, 2025
From: JPMORGAN CHASE BANK, N.A.
To: INFORMATICA LLC
Reel/Frame 073597/0722 →
RELEASE OF SECURITY INTEREST Recorded Oct 29, 2021
From: NOMURA CORPORATE FUNDING AMERICAS, LLC
To: INFORMATICA LLC
Reel/Frame 057973/0507 →
RELEASE OF SECURITY INTEREST Recorded Oct 29, 2021
From: NOMURA CORPORATE FUNDING AMERICAS, LLC
To: INFORMATICA LLC
Reel/Frame 057973/0496 →
SECURITY INTEREST Recorded Oct 29, 2021
From: INFORMATICA LLC
To: JPMORGAN CHASE BANK, N.A.
Reel/Frame 057973/0568 →
SECURITY INTEREST Recorded Feb 26, 2020
From: INFORMATICA LLC
To: NOMURA CORPORATE FUNDING AMERICAS, LLC
Reel/Frame 052022/0906 →
FIRST LIEN SECURITY AGREEMENT SUPPLEMENT Recorded Feb 26, 2020
From: INFORMATICA LLC
To: NOMURA CORPORATE FUNDING AMERICAS, LLC
Reel/Frame 052019/0764 →
ASSIGNMENT OF ASSIGNOR'S INTEREST Recorded Mar 31, 2016
From: BORKAR, VINAYAK; GRONDIN, RICHARD
To: INFORMATICA LLC
Reel/Frame 038156/0353 →
EMPLOYMENT CONTRACT Recorded Mar 31, 2016
From: CHOPRA, BHUPENDRA
To: INFORMATICA BUSINESS SOLUTIONS PVT LTD
Reel/Frame 038318/0432 →
EMPLOYMENT CONTRACT Recorded Mar 31, 2016
From: GUPTA, ANKUR
To: INFORMATICA CORPORATION
Reel/Frame 038318/0163 →