perlhypertablemutators

Perl Hypertable mutator exception


I am using Hypertable::ThriftClient, and using mutator for mass insertion. Here is the code sample: $master, $port and $namespace are all defined.

Table:

show create table users; # Table schema is below

CREATE TABLE GROUP_COMMIT_INTERVAL "100" users (
    'column_name_fake' MAX_VERSIONS 1,
    ACCESS GROUP audience ('column_name_fake'),
)

:hypertable$ SELECT * FROM users limit 1; # displays
2342345 sf_following:1000234
2342346 sf_following:1234234

Code:

my $ht = new Hypertable::ThriftClient($master, $port);
my $ns = $ht->namespace_open($namespace);
my $users_mutator = $ht->mutator_open($ns, 'table_name', 2);

Subroutine:

sub batch_insert {                                                                       
    my ($ht, $mutator, $column_family, $row, $val) = @_;

    my $keys;                                                                            
    my $cell;                                                                            
    try {                                                                                
        $keys = new Hypertable::ThriftGen::Key({
            row           => $row, 
            column_family => $column_family });

        $cell = new Hypertable::ThriftGen::Cell({key => $keys, value => $val});          
    }                                                                                    
    catch {                                                                              
        warn Dumper({ 'Error' => $_ });                                                  
    };                                                                                    
    $ht->mutator_set_cell($mutator, $cell);                                              
    $ht->mutator_flush($mutator);                                                        
    return 1;                                                                            
}                                                                                                                                                                                 

Function called:

for(.....) {    # Just for example
    batch_insert($ht, $users_mutator, '', $fs, "node:$node_u");
}

Here I get an exception,

 Hypertable::ThriftGen::ClientException=HASH(0x54d7380)

Can anyone clarify, why?

Edit: I added table structure for more clarity?


Solution

  • FIX: So, this exception is raised is a required parameter 'column_qualifier' was not
         passed as per the table design. See below:
    
    sub batch_insert {
        my ($ht, $mutator, $cf, $cq, $row, $val) = @_;
        my $keys = new Hypertable::ThriftGen::Key({
            row              => $row, 
            column_family    => $cf, 
            column_qualifier => $cq });
    
        my $cell = new Hypertable::ThriftGen::Cell({key => $keys, value => $val});
        $ht->mutator_set_cell($mutator, $cell);
        #$ht->mutator_flush($mutator);
    }
    
    Calling the above function:
    --------------------------
    batch_insert($ht, $users_mutator, 'column_family' , 'column_qualifier, 'row_key',  '');
    

    and it worked like a charm. If you are in similar types of issues, Let me know, I can help out. I spent quite a bit of time, reading about the Thrift api.