MCPcopy Index your code
hub / github.com/feast-dev/feast / put

Method put

sdk/python/feast/infra/utils/hbase_utils.py:102–113  ·  view source on GitHub ↗

Store data in the hbase table. Arguments: table_name: Name of the Hbase table. row_key: Row key of the row to be inserted to hbase table. data: Mapping of column family name:column name to column values

(self, table_name: str, row_key: str, data: dict)

Source from the content-addressed store, hash-verified

100 return conn.table(table_name).batch()
101
102 def put(self, table_name: str, row_key: str, data: dict):
103 """
104 Store data in the hbase table.
105
106 Arguments:
107 table_name: Name of the Hbase table.
108 row_key: Row key of the row to be inserted to hbase table.
109 data: Mapping of column family name:column name to column values
110 """
111 with self.pool.connection() as conn:
112 table = conn.table(table_name)
113 table.put(row_key, data)
114
115 def row(
116 self,

Callers 15

broadcast_joinFunction · 0.80
upload_df_to_s3Function · 0.80
executeMethod · 0.80
updateMethod · 0.80
_delete_all_valuesFunction · 0.80
updateMethod · 0.80
online_write_batchMethod · 0.80
online_write_batchMethod · 0.80
_initialize_clusterMethod · 0.80

Calls 1

tableMethod · 0.45