MCPcopy
hub / github.com/OpenTSDB/opentsdb / addColumn

Method addColumn

test/storage/MockBase.java:258–262  ·  view source on GitHub ↗

Add a column to the hash table using the default column family. The proper row will be created if it doesn't exist. If the column already exists, the original value will be overwritten with the new data. Uses the default table and family @param key The row key @param qualifier The qualifier @param v

(final byte[] key, final byte[] qualifier,
      final byte[] value, final long timestamp)

Source from the content-addressed store, hash-verified

256 * @param timestamp The timestamp of cell
257 */
258 public void addColumn(final byte[] key, final byte[] qualifier,
259 final byte[] value, final long timestamp) {
260 addColumn(default_table, key, default_family, qualifier, value,
261 timestamp);
262 }
263
264 /**
265 * Add a column to the hash table using the default column family.

Callers 15

writeCompactedDataMethod · 0.80
writeAppendDataPointsMethod · 0.80
globalAnnotationMethod · 0.80
noErrorsMethod · 0.80
noErrorsMultipleRowsMethod · 0.80
noErrorsAnnotationMethod · 0.80
noErrorsCompactedMethod · 0.80
noErrorsCompactedMSMethod · 0.80
noErrorsCompactedMixMethod · 0.80
singleValueCompactedMethod · 0.80

Calls 2

putMethod · 0.80
getMethod · 0.45

Tested by

no test coverage detected