Introduction to Stateful Stream Processing with Apache Flink • Robert Metzger • GOTO 2019

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 ก.พ. 2025

ความคิดเห็น • 18

  • @kauffmann101
    @kauffmann101 7 หลายเดือนก่อน +5

    Host's PPT slides were so vividly to illustrate the concept of Flink and its application. Its Awesome !

  • @psychicopus
    @psychicopus 4 ปีที่แล้ว +8

    Robert Metzger has amazing teaching ability!...great talk

  • @ami07071993
    @ami07071993 2 ปีที่แล้ว +3

    Amazing talk, learnt a ton. Moreover picked up some speaker notions, kudos Robert!

  • @vaidyanathanpk9221
    @vaidyanathanpk9221 ปีที่แล้ว +1

    Amazing talk!

  • @abhishes
    @abhishes 5 ปีที่แล้ว +14

    This was an amazing talk

  • @masteryoda9044
    @masteryoda9044 2 ปีที่แล้ว +2

    ammm... this was a wonderful talk :-)

  • @arash1892
    @arash1892 4 ปีที่แล้ว +3

    Wonderful talk

  • @spacelessspace
    @spacelessspace 2 ปีที่แล้ว +7

    Veverica means squirrel in Slovenian... wondering if name Ververica has anything to do with that or is it just a coincidence?

    • @RobertMetzger
      @RobertMetzger 2 ปีที่แล้ว +7

      No, this is not a coincidence ;)

  • @benjaminmalley5719
    @benjaminmalley5719 3 ปีที่แล้ว +4

    “These notions of time mostly affect the latency…… and the correctness”

  • @himanshugupta6102
    @himanshugupta6102 5 ปีที่แล้ว +7

    What does he mean by "Queries change faster than data"?

    • @kumarc4853
      @kumarc4853 5 ปีที่แล้ว +6

      Select a,b from A; Select c,d from A and so on... here the query changes but its on the same table A which is the data

    • @RobertMetzger
      @RobertMetzger 4 ปีที่แล้ว +10

      Queries change faster than data: You have a large dataset, and you are exploring it by running a lot of different queries on it.
      Data changes faster than your queries: You have decided on a few queries that you want to run continuously (they are not changing frequently), but you have a lot of new incoming data.

    • @reprogram_myself
      @reprogram_myself 4 ปีที่แล้ว +7

      in other words, Queries change faster than data == "heavy reads, low writes"

  • @harshitsinghai1395
    @harshitsinghai1395 2 ปีที่แล้ว +1

    Good use of 31 min.

  • @tingsun5547
    @tingsun5547 4 ปีที่แล้ว

    Single's Day :-)

  • @esakkisundar
    @esakkisundar 3 ปีที่แล้ว

    I'm writing a streaming application with Flink and getting this error from Flink - org.apache.flink.runtime.io.network.exception.RemoteTransportException : Connection Unexpectedly closed by remote task manager xx1.xx2.xx3.xx4:abcd. This might indicate the that the remote task manager was lost.
    The configurations for Flink are as follows
    flink.parallelism.default = 60
    flink.taskmanager.numberOfTaskSlots = 3
    flink.taskmanager.memory.flink.size = 1G
    flink.jobmanager.memory.jvm-metaspace.size = 512mb
    flink.taskmanager.memory.jvm-metaspace.size = 2048mb
    Could anyone please help me what is the cause for the error and how to fix it.

    • @RobertMetzger
      @RobertMetzger 2 ปีที่แล้ว +1

      You need to check the logs of the TaskManager.
      A default parallelism of 60 on 3 task slots will only work if you have 20 TaskManagers.