Reputation: 494
I am new to hbase . I know that HBase is key/value store which stores the data in array of bytes. couple of queries
For the first question , I saw couple of links and got confused.
Java(HBase) API: How to know the data type of a value stored in bytes
Upvotes: 1
Views: 2280
Reputation: 6855
Natively HBase does not support data types for columns everything is treated as byte arrays. Here is an excert from hbase book on supported data types. But you could use high level frameworks like phoenix and here are its supported data types.
As HBase is schema-less I would say HBase relies on schema on read mechanism.
Upvotes: 2