postgresql - How to transform (redesign) the table in Postgres into Hbase? -
i have table in postgres, want transform hbase, how redesign table?
id geom osm_id name type 1 00003381c75cbe6443 24254755 millenium hall office 2 00003382d5b5d76s3g ... ...
your schema looks quite simple, can create table in hbase in similar fashion. use column gets unique value rowkey(maybe geom). don't forget keep search patterns in mind while creating rowkeys.
Comments
Post a Comment