amazon web services - AWS Lambda fetch from ActiveMQ topic -


i have external data source activemq topic. can connect , consume messages. come pretty rarely, 1 message per 10-30 seconds.

i want collect messages , put them database. i'd have active web page can receive new messages on websockets , draw chart.

i have prototype built python/flask/mongodb/socketio, but...

i use amazon aws cloud infrastructure avoid processing data on servers.

i believe aws lambda can accept messages , store them database (dynamodb?) , send notification (maybe using sqs) being transformed websocket message. (not clear there yet, maybe simple ajax polling enough).

here question: how possible consume messages external activemq topic , process aws lambda?

i looking on kinesis, looks supports data being pushed it, not polling data protocol...

you can use lambda cron-like facility , poll on schedule. see lambda scheduled events.


Comments

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

ruby on rails - Seeing duplicate requests handled with Unicorn -