HBase

HBase – Security

  • Post author:
  • Post category:HBase
  • Post comments:1 Comment

We can grant and revoke permissions to users in HBase. There are three commands for security purpose: grant, revoke, and user_permission. grant The grant command grants specific rights such as read, write,…

Continue ReadingHBase – Security

HBase – Scan

  • Post author:
  • Post category:HBase
  • Post comments:1 Comment

Scaning using HBase Shell The scan command is used to view the data in HTable. Using the scan command, you can get the table data. Its syntax is as follows: scan โ€˜<table…

Continue ReadingHBase – Scan

HBase – Delete Data

  • Post author:
  • Post category:HBase
  • Post comments:0 Comments

Deleting a Specific Cell in a Table Using the delete command, you can delete a specific cell in a table. The syntax of delete command is as follows: delete โ€˜<table name>โ€™, โ€˜<row>โ€™, โ€˜<column name…

Continue ReadingHBase – Delete Data