amazon web services - Where to run my Kinesis Producer? -


i need build kinesis producer app puts data kinesis stream. app need connect remote host , maintain tcp socket data pushed remote host. there little data transformation, producer application simple... know setup ec2 instance this, if there's better way i'd explore that.

examples:

  • you can build producer on aws lambda, since have maintain long-running tcp connection, wouldn't work.
  • you can maintain connection websocket aws iot , invoke lambda function on each message, connection standard tcp connection

question: other products in aws suite of products use build producer?

there no suitable managed options, here. if task to...

  • originate , maintain persistent tcp connection third-party remote device don't control,
  • consume wherever payload comes down pipe,
  • process/transform it, and
  • feed code serves kinesis producer

...then need server, because there not service of these things. ec2 product looking for.


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -