The Java class "org.apache.hadoop.hbase.client.Put" is a part of the Apache HBase client package. It is used to create and represent a data mutation operation to put data into an HBase table. The "Put" class provides methods to specify the row key, column family, column qualifier, timestamp, and value to be inserted into the table. It can be used to insert or update data in an HBase table by specifying the required parameters and using the appropriate methods provided by the class.
Java Put - 30 examples found. These are the top rated real world Java examples of org.apache.hadoop.hbase.client.Put extracted from open source projects. You can rate examples to help us improve the quality of examples.