Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Just a thought, considering the depleted activity in HBase should we not explore ways to avoid HBase ? --Prasen
Hbase seems activity at this time, However Yes. We should think about it. --Edward

...

Structure Considerations

A lot of columns causes huge storage expense. So I propose that we store a piece of Vector to each cell.

No Format

DenseMatrix Table scheme:

       column:                               metadata:
===============================================================================
row1   column:startLocation  <sub-vector1>   metadata:subVectorInterval <1000>
       column:startLocation  <sub-vector2>   metadata:matrixType <DenseMatrix>
       column:startLocation  <sub-vector3>   ...
       ...
row2
...
No Format

SparseMatrix Table scheme:

       column:                               metadata:
===============================================================================
row1   column:column1  <entry1>   metadata:matrixType <SparseMatrix>
       column:column2  <entry2>   ...
       column:column3  <entry3>   
       ...
row2
...

Perform matrix operations

...