You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »


Introduction


The RDB Summarizer Executor is able to process the result set associated with a job and extract each of the rows and the table schema. Each extracted row will be processed by the summarizers attached to the job.


Rows Filtering

The RDB Summarizer Executor has the option to configure a groovy script to filter which rows will be processed.

Example:

Example

Row Filter
// This script must return a boolean.
// The references of the job, doc, component, row and table objects are available.
// Javadoc references 
// Row (row) - http://{manager}/javadocs/com/accenture/aspire/services/summarization/Row.html
// Table (table) - http://{manager}/javadocs/com/accenture/aspire/services/summarization/Table.html
row.getBoolean("sensitive") == true
  • No labels