Schema for a replication scheduler job.

interface SchedulerJob {
    database: string;
    doc_id: string;
    history: SchedulerJobEvent[];
    id: string;
    info: SchedulerInfo;
    node: string;
    pid: string;
    source: string;
    start_time: string;
    target: string;
    user: string;
}

Properties

database: string

Replication document database.

doc_id: string

Replication document ID.

Timestamped history of events as a list of objects.

id: string

Schema for a replication job id.

Schema for scheduler document information. A JSON object that may contain additional information about the state. For error states this will contain an error field and string value.

node: string

Cluster node where the job is running.

pid: string

Replication process ID.

source: string

Replication source.

start_time: string

Timestamp of when the replication was started.

target: string

Replication target.

user: string

Name of user running replication.

Generated using TypeDoc