Differences AVRO vs Protobuf vs Parquet vs ORC, JSON vs XML | Kafka Interview Questions

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

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

  • @mauriciopereyra3339
    @mauriciopereyra3339 6 หลายเดือนก่อน

    good explanation

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

    Very well explained..!!

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

    Good job................

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

    Its very informative

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

      Glad to know that.

  • @ABHIJAYPATNE
    @ABHIJAYPATNE 2 ปีที่แล้ว

    Good concise video but the background music was unnecessary.

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

    what it means by json is not splitable does that mean all get processed in one executor .I assume thats not correct.. But its informative video thanks

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

      No I said - Non-Binary formats (JSON, XML) "can not be Split".

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

      @@GKTechplex So does it mean if I process a json file in spark all will come to one executor .

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

      Let me put it this way - say you hv a single json file and you are using spark.read.json , it will create a single task to process the json data.
      When the “wholeFile” option is set to true in spark, Json is NOT splittable.
      So u have to figure out a way to pre-process your json file into chunks before feeding those to spark !

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

      @@GKTechplex Thanks cleared the doubt