MCPcopy Create free account
hub / github.com/OpenTSDB/asynchbase / makeMultiColumnIncrementBuffer

Method makeMultiColumnIncrementBuffer

src/HBaseClient.java:1954–1960  ·  view source on GitHub ↗

Creates the increment buffer according to current configuration.

()

Source from the content-addressed store, hash-verified

1952 * Creates the increment buffer according to current configuration.
1953 */
1954 private void makeMultiColumnIncrementBuffer() {
1955 final int size = increment_buffer_size;
1956 multi_column_increment_buffer = BufferedMultiColumnIncrement.newCache(this, size);
1957 if (LOG.isDebugEnabled()) {
1958 LOG.debug("Created multi column increment buffer of " + size + " entries");
1959 }
1960 }
1961
1962 /** Singleton callback to handle responses of incrementColumnValue RPCs */
1963 private static final Callback<Long, Object> icv_done =

Calls 1

newCacheMethod · 0.95

Tested by

no test coverage detected