ApiHBaseReplicationArguments Data Model

Replication arguments for HBase service

Properties
name data type description
sourceHBaseService ApiServiceRef
peerState HBasePeerState
hbaseClusterKey string
endPointClassName string
tables array of HBaseTableArgs
replicationProperties map of string
sourceAccount string
sourceSchedulerPool string
numMappers number

Example

{
  "sourceHBaseService" : {
    "peerName" : "...",
    "clusterName" : "...",
    "serviceName" : "...",
    "serviceDisplayName" : "...",
    "serviceType" : "..."
  },
  "peerState" : "ENABLED",
  "hbaseClusterKey" : "...",
  "endPointClassName" : "...",
  "tables" : [ {
    "tableName" : "...",
    "initialSnapshot" : true
  }, {
    "tableName" : "...",
    "initialSnapshot" : true
  } ],
  "replicationProperties" : {
    "property1" : "...",
    "property2" : "..."
  },
  "sourceAccount" : "...",
  "sourceSchedulerPool" : "...",
  "numMappers" : 12345
}