exports.handler = function(event, context) {
var AWS = require('aws-sdk');
var dynamodb = new AWS.DynamoDB({apiVersion: '2012-08-10'});
var kafka = require('kafka-node');
var Consumer = kafka.Consumer,
// The client specifies the ip of the Kafka producer and uses
// the zookeeper port 2181
client = new kafka.KafkaClient({kafkaHost: '172.16.35.115:9092,172.16.35.217:9092,172.16.37.14:9092'});
// The consumer object specifies the client and topic(s) it subscribes to
consumer = new Consumer( client, [ { topic: 'BillKazTopic', partition: 0, fromOffset: 'latest'} ], { autoCommit: true });
consumer.on('message', function (message) {
console.log("hellow");
console.log(message);
// Add to Dynamo
var tableName = "dev-AM-Appointment";
console.log(JSON.stringify(event, null, ' '));
dynamodb.putItem({
"TableName": tableName,
"Item" : {
"appointment_id": {S: 'message=' + message.value}
}
}, function(err, data) {
console.log("HELLO WORLD!!!!");
if (err) {
console.log('Error putting item into dynamodb failed: '+err);
context.succeed('error');
}
else {
console.log('great success: '+JSON.stringify(data, null, ' '));
context.succeed('Done');
}
});
});
};
Я пытаюсь слушать Кафку и потреблять сообщения (работает).
Но тогда обратный вызов putItem () никогда не вызывается, так что выражение: console.log ("HELLO WORLD !!!! ");
никогда не показывает.В чем может быть проблема?