You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently very little structure to the returned data. We literally take all the cells that HBase spits out and spit it back at the user as a relatively arbitrary list of embedded lists. _flatten_cells was a small helper function I wrote to test the number of cells returned to make writing tests easier.
We should offer various functions to parse the returned results. Parse everything into a dictionary by key/column/column-family? Embed lists by rows (all cells in the same row will be in the same sublist)? Even offer "getRowFromResult" or similar functions?
The text was updated successfully, but these errors were encountered:
Currently very little structure to the returned data. We literally take all the cells that HBase spits out and spit it back at the user as a relatively arbitrary list of embedded lists. _flatten_cells was a small helper function I wrote to test the number of cells returned to make writing tests easier.
We should offer various functions to parse the returned results. Parse everything into a dictionary by key/column/column-family? Embed lists by rows (all cells in the same row will be in the same sublist)? Even offer "getRowFromResult" or similar functions?
The text was updated successfully, but these errors were encountered: