Oracle GoldenGate · Schema

ReplicatStatistics

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
processName string
totalOperations integer
inserts integer
updates integer
deletes integer
handlerStatistics object
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-replicatstatistics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReplicatStatistics",
  "title": "ReplicatStatistics",
  "type": "object",
  "properties": {
    "processName": {
      "type": "string",
      "example": "example_value"
    },
    "totalOperations": {
      "type": "integer",
      "format": "int64",
      "example": 10
    },
    "inserts": {
      "type": "integer",
      "format": "int64",
      "example": 10
    },
    "updates": {
      "type": "integer",
      "format": "int64",
      "example": 10
    },
    "deletes": {
      "type": "integer",
      "format": "int64",
      "example": 10
    },
    "handlerStatistics": {
      "type": "object",
      "properties": {
        "recordsWritten": {
          "type": "integer",
          "format": "int64"
        },
        "bytesWritten": {
          "type": "integer",
          "format": "int64"
        },
        "batchesProcessed": {
          "type": "integer",
          "format": "int64"
        }
      },
      "example": "example_value"
    }
  }
}