Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7730097
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T06:08:14+00:00 2026-06-01T06:08:14+00:00

I want to empty a table in hbase… eg: user . Is there any

  • 0

I want to empty a table in hbase… eg: user. Is there any command or function to empty the table without deleting it…

My table structure is :

$mutations = array(
                new Mutation( array(
                    'column' => 'username:1',
                    'value' =>$name
                ) ),
                new Mutation( array(
                    'column' => 'email:1',
                    'value' =>$email
                ) )
        );          
$hbase->mutateRow("user",$key,$mutations);

Can someone help me?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T06:08:15+00:00Added an answer on June 1, 2026 at 6:08 am

    There’s no single command to clear Hbase table, but you can use 2 workarounds: disable, delete, create table, or scan all records and delete each.

    Actually, disable, delete and create table again takes about 4 seconds.

    // get Hbase client
    $client = <Your code here>;
    $t = "table_name";
    
    $tables = $client->getTableNames();
    
    if (in_array($t, $tables)) {
      if ($client->isTableEnabled($t))
        $client->disableTable($t);
    
      $client->deleteTable($t);
    }
    
    $descriptors = array(
      new ColumnDescriptor(array("name" =>  "c1", "maxVersions" => 1)),
      new ColumnDescriptor(array("name" =>  "c2", "maxVersions" => 1))
    );
    
    $client->createTable($t, $descriptors);
    

    If there’s not a lot of data in table – scan all rows and delete each is much faster.

    $client = <Your code here>;
    $t = "table_name";
    
    // i don't remember, if list of column families is actually needed here
    $columns = array("c1", "c2");
    
    $scanner = $client->scannerOpen($t, "", $columns);
    while ($result = $client->scannerGet($scanner)) {
      $client->deleteAllRow($t, $result[0]->row);
    }
    

    In this case data is not deleted physically, actually it’s “marked as deleted” and stays in table until next major compact.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to allow users to either have there username field empty at any
I want to check if a table body ( tbody ) is empty using
I want to eliminate empty elements within my String array. This is what I
I want to declare an empty list inside a scheme function. To make this
I want my script to define an empty array. array values should be added
I want to keep a table as history and replace it with an empty
I want to show no scope bar when the table is empty (before the
I want to empty a temporary table, load it via bcp, and then modify
I want to write an XPath expression that selects all non-empty table:table-cell children of
I want that find empty tags, here is a example txt =<lol1><><lol2> rgx =

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.