Lines Matching refs:row
30 _start_index: Start index for the row key. It gets incremented as we
32 _end_index : End index for row key. This is incremented as we Enqueue.
84 written to a new row in the table. Each message is writte to a
85 new row
96 row = self._table_instance.row(row_key)
97 row.set_cell(self._column_family_id, column_id.encode('utf-8'),
99 row.commit()
103 """Removes and returns the first row from the table.
106 row: A row object that represents the top most row.
112 logging.info('Getting a single row by row key.')
114 row_cond = self._table_instance.row(key)