Apache Hive Introduction & Architecture {தமிழ்}

Поділитися
Вставка
  • Опубліковано 12 вер 2024
  • #hive #apachehive
    Apache Hive Introduction & Architecture
    Video Playlist
    -----------------------
    Big Data Shorts in Tamil - bit.ly/3v2aL8p
    Big Data Shorts in English - bit.ly/3tVEs9T
    Hadoop in Tamil - bit.ly/32k6mBD
    Hadoop in English - bit.ly/32jle3t
    Spark in Tamil - bit.ly/2ZzWAJN
    Spark in English - bit.ly/3mmc0eu
    Hive in Tamil - bit.ly/2UQVUgv
    Hive in English - bit.ly/372nCwj
    NOSQL in English - bit.ly/2XtU07B
    NOSQL in Tamil - bit.ly/2XVLLjP
    Scala in Tamil : goo.gl/VfAp6d
    Scala in English: goo.gl/7l2USl
    Email: atozknowledge.com@gmail.com
    LinkedIn : / sbgowtham
    Instagram: / bigdata.in
    UA-cam channel link
    / atozknowledgevideos
    Website
    codewithgowtha...
    atozknowledge.com/
    Technology in Tamil & English

КОМЕНТАРІ • 42

  • @serendipitous263
    @serendipitous263 2 роки тому +5

    Awesome explanation as always bro. The difference between embedded and remote metastore was clearly explained. I have a doubt, why to use RDBMS separately if we can store metadata in HDFS? Is there any limitation in HDFS to act as metastore?

    • @dataengineeringvideos
      @dataengineeringvideos  2 роки тому +3

      Thanks 🙂
      And this is the exact reason
      The storage system for the metastore should be optimized for online transactions with random accesses and updates. A file system like HDFS is not suited since it is optimized for sequential scans and not for random access. So, the metastore uses either a traditional relational database (like MySQL, Oracle) or file system (like local, NFS, AFS) and not HDFS. As a result, HiveQL statements which only access metadata objects are executed with very low latency. However, Hive has to explicitly maintain consistency between metadata and data.
      Source - stack overflow

    • @serendipitous263
      @serendipitous263 2 роки тому

      @@dataengineeringvideos wow got it! Thanks bro 😁

  • @divyashree2902
    @divyashree2902 2 роки тому

    Really awesome.. Understood the concept very clearly.. This is my first time on watching your video.. And subscribed in this itself.. Thank you so much for ur effort in giving this lecture in tamil..

  • @tamilissaiulagam2941
    @tamilissaiulagam2941 10 місяців тому

    Very clear explanations about Hive Bro ❤ Thank you for sharing the knowledge 🙏🙏Vazga Vazamudan ☺️🙏👍

  • @frasherleon3375
    @frasherleon3375 9 місяців тому +1

    Awesome Brother, Usual 20 mins video do get bored, but your video is looking like a good movie, feels like this video don't get end likewise.. This is my first video on your channel, soon I am going to complete all the playlist bro..

  • @CRT26
    @CRT26 23 дні тому

    Nice explanation ji & thank you

  • @sundarrajan211
    @sundarrajan211 8 місяців тому

    Crispy and clear explanation buddy keep upload more video

  • @saranp4114
    @saranp4114 2 роки тому

    Thank you for the wonderful explanation. concepts are clear sir.

  • @prabharamachandran998
    @prabharamachandran998 3 роки тому

    Hi Gowtham, U r Awesome teacher... Concepts are clear..

  • @Ranjithkumar_official
    @Ranjithkumar_official 2 місяці тому

    Clear explanation bro thank you😊

  • @mkrishnan9289
    @mkrishnan9289 3 роки тому

    Awsome bro !!! Concept is clear and perfect👍👍

  • @sarathkumar6541
    @sarathkumar6541 3 роки тому

    Superb explanation sir, sounds clear. good job.

  • @stevensteynz
    @stevensteynz 28 днів тому

    Hive meta store ku oru video podunga bro

  • @aravindan6061
    @aravindan6061 2 роки тому

    Super explanation... Really great

  • @velkumaranap2269
    @velkumaranap2269 2 роки тому

    Vera vera level !!!

  • @shibiraj1680
    @shibiraj1680 Рік тому

    Well explanation bro

  • @santhanalaxmi1776
    @santhanalaxmi1776 2 роки тому +1

    Bro you said HIVE don't have database then while inserting record again how it will store data in hive table ? Before moving the insert record to HDFS you said it will go into hive table

  • @gnana30siva58
    @gnana30siva58 Рік тому

    Super explanation

  • @solomon3542
    @solomon3542 Рік тому

    awesome expalnation bro

  • @karth12399
    @karth12399 Рік тому

    Sir, I learnt that Spark uses RDD and is RAM based unlike HDFS which uses hard disk.
    I am little confused here. Does it mean with the same infrastructure that is made up of hard disk , one cannot fully utilize the benefit of Spark and requires infrastructure change using RAM?
    Please correct my understanding gap

  • @jokerraj843
    @jokerraj843 3 роки тому

    Super bro,is there any documents to Learn more?

  • @mathankumars896
    @mathankumars896 3 роки тому

    Hi Gowtham , Thanks! . For remote rdbms, we have to purchace another machine. Totally, slave nodes machine, master node machine and rdbms node machines. Am i right?

  • @vigneshkrish4742
    @vigneshkrish4742 2 роки тому

    Thank you bro for the wonderful videos, i have a question, Will the RDBMS spread across multiple nodes for HA?

  • @hijaga
    @hijaga 3 роки тому

    You said about saving metadata outside of HIVE because HIVE is not having storage ?

  • @ashrafshaikh4340
    @ashrafshaikh4340 2 роки тому

    Can you tell me the difference between command load, insert and import In detail?

  • @mathankumars896
    @mathankumars896 3 роки тому

    How we access the unstructure data? Is sperate technology for that.

  • @VigneshPasupathy7
    @VigneshPasupathy7 2 роки тому

    Thank you bro

  • @hijaga
    @hijaga 3 роки тому +1

    Why metadata in RDBMS why not in HDFS? sorry if you mentioned the reason in video.. not derby i mean

    • @giridharaneee
      @giridharaneee 3 роки тому +2

      Hive stores metadata information in the metastore using RDBMS instead of HDFS. The reason for choosing RDBMS is to achieve low latency as HDFS read/write operations are time consuming processes.

    • @serendipitous263
      @serendipitous263 2 роки тому

      @@giridharaneee Thanks, even i was wondering why to use RDMS separately if we can store metadata in HDFS itself. Your answer is convincing. Thank you.

  • @aakashmohan9827
    @aakashmohan9827 Рік тому

    Bro pls can you do it for impala?

  • @gobi.tuk-tuk
    @gobi.tuk-tuk 3 роки тому

    How to check the metadata in RDBMS? If it is stored outside...

    • @dataengineeringvideos
      @dataengineeringvideos  3 роки тому

      For example , just login to mysql and execute show databases command , u will metastore_db this is where hive metadata will be stored

    • @gobi.tuk-tuk
      @gobi.tuk-tuk 3 роки тому

      @@dataengineeringvideos Thank you so much for the explanation bro...

  • @naveenfascinate5224
    @naveenfascinate5224 3 роки тому

    Sqoop with hive Ku oru video podunga

  • @mathankumars896
    @mathankumars896 3 роки тому

    Hive we can get only structure data, how we can see the relations of the tables and various keys ER relationship. Does hive provide DBMS managing solutions?

  • @parasuramanIyer
    @parasuramanIyer 2 роки тому

    இதில் tez னு இருப்பது Google pay வா?