ApiHBaseReplicationArguments Data Model

Replication arguments for HBase service

Properties
name data type description
sourceHBaseService ApiServiceRef
peerState HBasePeerState
hbasePeerId string Available since API v52.
hbaseClusterKey string
endPointClassName string
tables array of HBaseTableArgs
database HBaseDatabaseArgs
replicationProperties map of string
sourceAccount string
sourceSchedulerPool string
numMappers number
snapshotScratchLocation string
validateReplicationSetup boolean

Example

{
  "sourceHBaseService" : {
    "peerName" : "...",
    "clusterName" : "...",
    "serviceName" : "...",
    "serviceDisplayName" : "...",
    "serviceType" : "..."
  },
  "peerState" : "DISABLED",
  "hbasePeerId" : "...",
  "hbaseClusterKey" : "...",
  "endPointClassName" : "...",
  "tables" : [ {
    "tableName" : "...",
    "initialSnapshot" : true,
    "snapshotSucceeded" : true
  }, {
    "tableName" : "...",
    "initialSnapshot" : true,
    "snapshotSucceeded" : true
  } ],
  "database" : {
    "failedSnapshotTables" : [ "...", "..." ],
    "initialSnapshot" : true
  },
  "replicationProperties" : {
    "property1" : "...",
    "property2" : "..."
  },
  "sourceAccount" : "...",
  "sourceSchedulerPool" : "...",
  "numMappers" : 12345,
  "snapshotScratchLocation" : "...",
  "validateReplicationSetup" : true
}