I am new to HBase. I understand the HBase is not equivalent to the RDBMS. However, I like run simple query in the HBase that is very simple in the RDBMS. I tried using Scan with Filter but I don't know how to get the column by using value.
Consider this simple MySQL query : "SELECT username FROM members WHERE email = [email protected]
"
Same in the HBase, I have table name : members. And I have two columns : username and email.
Now, I want to extract the username where the email is equal to the [email protected].
I found so many examples that can extract the value when you specify the column family and qualifier. But my case is different, when I think in the RDBMS it's super easy, but I don't how to think in the HBase. (I know there are some SQL wrapper available to use SQL over HBase, but I want without it).
Thanks in advance