Oracle GoldenGate · Schema

CacheStatistics

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
processName string
cacheSize integer
cacheUsed integer
cacheHitRatio number
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-cachestatistics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CacheStatistics",
  "title": "CacheStatistics",
  "type": "object",
  "properties": {
    "processName": {
      "type": "string",
      "example": "example_value"
    },
    "cacheSize": {
      "type": "integer",
      "format": "int64",
      "example": 10
    },
    "cacheUsed": {
      "type": "integer",
      "format": "int64",
      "example": 10
    },
    "cacheHitRatio": {
      "type": "number",
      "example": 42.5
    }
  }
}