Интеграция событий облачных часов AWS с AWS MQ для сбора сообщений - PullRequest
0 голосов
/ 17 ноября 2018

Как я буду интегрировать события облачного наблюдения AWS с AWS MQ, чтобы захватывать сообщения и сообщать, чтобы моя лямбда-функция просыпалась каждую минуту.

Lambda Functionality

Лямбда-функция: -

import time
import boto3
import stomp

kinesis_client = boto3.client('kinesis')


class Listener(stomp.ConnectionListener):
    def on_error(self, headers, message):
        print('received an error "%s"' % message)

    def on_message(self, headers, message):
        print('received a message "%s"' % message)
        kinesis_client.put_record(
            StreamName='inter-lambda',
            Data=u'{}\r\n'.format(message).encode('utf-8'),
            PartitionKey='0'
        )


def handler(event, context):
    conn = stomp.Connection(host_and_ports=[('localhost', 61616)])
    conn.set_listener('', Listener(conn))
    conn.start()
    conn.connect(login='user', passcode='pass')
    conn.subscribe(destination='A.B.C.D', ack='auto')
    print('Waiting for messages...')
    time.sleep(10)
    conn.close()
    return ''
...