Type Alias SamplingConfiguration

type SamplingConfiguration = {
    executionMode?: "PUSHDOWN" | "PULLUP";
    sampleMode?: "ABSOLUTE" | "RELATIVE";
    sampleSize?: number;
}
Index

Properties

executionMode?: "PUSHDOWN" | "PULLUP"

Specifies where the data quality computation takes place. In PUSHDOWN mode, it runs within the Cloud Data Warehouse (e.g., Snowflake, Databricks), whereas in PULLUP mode, it runs in Qlik Cloud.

sampleMode?: "ABSOLUTE" | "RELATIVE"
sampleSize?: number