如何更新cassandra中的集合,其密钥是时间戳类型

时间:2014-12-07 14:16:21

标签: javascript node.js cassandra nosql

我正在尝试更新地图'列,但尝试这样做会导致错误:

错误:

error: database errorTypeError: Not a valid bigint, expected Long/Number/Buffer, obtained '2014-12-07T13:53:10.658Z'

尝试

var query_attendance = 'UPDATE emp_attendance SET attendace = attendace + ? where year = ? and month = ? and emp_id = ?';
var udpateAttendance = function(empId, timestampMillis, cb){
    var foundDate = new Date(timestampMillis);
    var year = foundDate.getUTCFullYear();
    var month = foundDate.getUTCMonth();
    var date = foundDate.getUTCDate();
    var attendace = {};
    attendace['2014-12-07T13:53:10.658Z'] = 'Present';
//  winston.info('attendace' + JSON.stringify(foundDate));
    var values = [attendace, year, month, empId];
    var options = {
        hints: ['map','int','int','int'],
        prepare: true
    };
    winston.info('Values: ' + JSON.stringify(values));
    client.execute(query_attendance, values, options, function(err, resultSet){
        winston.info('Query Completed');
        if(err){
            winston.error('database error' + err);
            cb(err, null);
            return;         
        }
        winston.info('Query successful');
        cb(null, resultSet);
    });
}

我的观点:

我想我需要告诉驱动程序地图集合中的键类型是时间戳类型,但我没有找到如何为驱动程序指定此类输入。

1 个答案:

答案 0 :(得分:1)

经过对cassandra驱动程序库的大量调试后,我最终发现了什么错误。

当'cassandra-driver'中的'encoder.js'收到type date的输入时,'encodeTimestamp()'会使用'instanceof'关键字检查类型。 这是我的错误导致错误的地方,因为

attendace[foundDate]
or 
attendace['2014-12-07T13:53:10.658Z']

可能正在键入'string'类型的键(是js newbie,无法确认)。 因此,问题的解决方案是i need to pass date object as key of attendace variable

注意:

虽然,我仍然无法将日期作为对象传递给另一个对象的关键,但这完全是另一个问题。 为了继续运行流程(直到我找到将日期作为对象传递的方式),我在cassandra驱动程序中对'encoder.js'的'encodeTimestamp()'进行了一些小改动。 改变

  function encodeTimestamp (value, type) {
    console.log('Encoding time stamp: ' + value + '\ttype:'+type);
    //parsing the date object, 
    var convertedDate = new Date(value);
    // check if supplied value is converted into date, if so, assign its value to value variable and continue with original process
    if((convertedDate) && (convertedDate!= NaN)){
      value = convertedDate;
    }
    if (value instanceof Date) {
      console.log('Value is date ');
      value = value.getTime();
    }else{
      console.log('input value ' + value + ' is not a date');
    }
    return encodeBigNumber (value, type);
  }

This is hack only,所以我希望必须有一些真正的解决方案,有些人会想出来,