Toggle navigation
Home
org.apache.hadoop.hbase.client.Table to org.apache.hadoop.hbase.client.BufferedMutator
No. of Instances - 13
No. of Commits - 2
No. of Projects - {'hbase'}
Hierarchy/Composition: SIBLING
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Rename Variable
tables
to
mutatorMap
tables
to
mutatorMap
tables
to
mutatorMap
m_table
to
m_mutator
m_table
to
m_mutator
table
to
mutator
table
to
mutator
table
to
mutator
table
to
mutator
table
to
mutator
table
to
mutator
getTable
to
getBufferedMutator
table
to
mutator
table
to
mutator
table
to
mutator
table
to
mutator
table
to
mutator
Add or Remove Method invocation
connection.getTable(TableName.valueOf(tableName))
to
connection.getBufferedMutator(new BufferedMutatorParams(TableName.valueOf(tableName)).writeBufferSize(4 * 1024 * 1024))
connection.getTable(tableName)
to
connection.getBufferedMutator(tableName)
connection.getTable(TableName.valueOf(tableName))
to
connection.getBufferedMutator(TableName.valueOf(tableName))
connection.getTable(getTableName(connection.getConfiguration()))
to
connection.getBufferedMutator(new BufferedMutatorParams(getTableName(connection.getConfiguration())).writeBufferSize(4 * 1024 * 1024))
Rename Method invocation
put
to
mutate
put
to
mutate