AWS Solutions: Real-Time IoT Device Monitoring with Kinesis Data Analytics

Поделиться
HTML-код
  • Опубликовано: 27 сен 2024

Комментарии • 26

  • @sozakar
    @sozakar 4 года назад +27

    It would be more helpful if you explain on a business use-case example...

  • @B1FREQUENCY
    @B1FREQUENCY 4 года назад +1

    Great Video! So Kinesis Data Analysis In A Way Comes over and Around The Projected Messages

  • @a0um
    @a0um 4 года назад +7

    Wouldn’t it be better to write the raw events to Kinesis first and then store them to S3 via some Kinesis consumer?

    • @jrapp654
      @jrapp654 4 года назад

      My thoughts exactly. Same with the second Kinesis stream. The data analytics pushes to that and then another lambda separately. You could just connect the lambda to the kinesis

    • @ashokkumarsivasankaran5428
      @ashokkumarsivasankaran5428 3 года назад +3

      Yes. Raw data comes from IoT core to Kinesis Firehose. Since Kinesis Firehose can directly deliver it to S3, Kinesis consumer is not necessary. KCL will add additional infrastructure to support

    • @ITech2005
      @ITech2005 2 года назад

      He stated that they do/could use transforms at the kinesis analytics stage. That means data leaving the service would be processed and no longer available to store as raw data.

  • @samjones4327
    @samjones4327 Год назад +1

    Thank you for sharing this architecture!! It was explained so simply and thoroughly! I'm an AWS student and I understood it with ease! I always enjoy these videos!! Thanks again! Cheers!!!

  • @Nick-oz1ex
    @Nick-oz1ex 2 года назад

    Excellent, wonderful, absolutely!

  • @vd.se.17
    @vd.se.17 Год назад +3

    This is a great architecture overview, I am curious to know why, Why for raw data storage(s3) you use the Kinesis firehose?, Can't we send the data directly from IoT core to S3 via additional IOT action?

    • @ZuyangLiu
      @ZuyangLiu Год назад +3

      If you send data directly from IoT core to S3, each message from every device will be one object in S3. With firehose, you can batch them together.

    • @vd.se.17
      @vd.se.17 Год назад +1

      @@ZuyangLiu Thanks.

  • @steveb7600
    @steveb7600 2 года назад +1

    I don't see the point of the second data firehose, Kinesis Data analytics should be able to write processed data to the data lake on S3 directly without needing another firehose for ingest or queuing.

  • @ozycozy9706
    @ozycozy9706 Год назад

    I wonder if I can do this with appsync? Web app pulling data every some second is bed solution for real time.

  • @ajinkyathorawat9814
    @ajinkyathorawat9814 Год назад

    helpful! thanks

    • @awssupport
      @awssupport Год назад

      Glad you found the video helpful, Ajinkya! 😊 ^KS

  • @iborovkov
    @iborovkov 2 года назад

    3 minutes in and a dozen services and I still have zero idea what you guys actually did with those temperature data points

  • @vjkumk
    @vjkumk 2 года назад +1

    the guy in blue t-shirt acts like an intern.

  • @djmjr77
    @djmjr77 3 года назад +6

    Second guy completely useless ...

    •  3 года назад +2

      'yeah, absolutely'

  • @theefamiliar3497
    @theefamiliar3497 2 года назад

    That's quite shallow

  • @problemsolvingwithpython2291
    @problemsolvingwithpython2291 2 года назад

    why not use kinesis data stream instead of kinesis firehose at the beginning since we're not doing any processing? and when kinesis data stream is real time unlike kinesis firehose.

    • @sanju_sarkar
      @sanju_sarkar 2 года назад

      Kinesis Data Firehose can push data directly to S3 which Data Stream cannot, hence the choice