Monitor capacity

Use the Monitoring page to check operational capacity for asynchronous validation jobs.

This page shows queue depth, service slot usage, and waiting chunks by validation type. Use it to understand the status of bulk validation jobs, including whether jobs are waiting to be snapshotted, waiting for a service slot, or actively processing provider batches.

Service slot usage

The Service slot usage table shows capacity by service:

  • Address
  • Email
  • Phone

Select Refresh to reload the page.

Column Description
Service Validation service: Address, Email, or Phone.
Queued jobs Jobs waiting for the app to snapshot source rows.
Snapshotted jobs not finished Jobs that have moved past initial queueing and are not complete.
Cancelled jobs collecting results Cancelled jobs that may still be collecting results from provider batches already submitted.
Jobs using service slots Jobs currently consuming service-level job capacity.
Job slots open Remaining job slots for that validation service.
Chunks waiting Chunks waiting for an available service chunk slot.
Batches created, not started Provider batches created locally but not yet started.
Batches submitted to provider Provider batches that have been submitted and are awaiting completion.
Chunk slots used Service chunk slots currently in use.
Chunk slots open Remaining chunk slots for that validation service.
Per-job chunk limit Maximum number of chunks one job can use concurrently.

SQL examples

The SQL examples section provides quick checks for capacity, recent jobs, and job detail.

Use Capacity to check queue depth, service slot usage, and waiting chunks by validation type.

SELECT *
FROM TABLE(EXPERIAN_DATA_VALIDATION.JOBS.Capacity());

Use Recent jobs to list the most recent validation jobs and their overall completion state.

SELECT *
FROM TABLE(EXPERIAN_DATA_VALIDATION.JOBS.List());

Use Job detail to inspect one job after copying its job ID from the recent jobs list.

CALL EXPERIAN_DATA_VALIDATION.JOBS.Status('<job_id>');