Hibernate N+1 problem and solution | Hibernate Interview Questions and Answers | Code Decode

Поділитися
Вставка
  • Опубліковано 18 січ 2023
  • In this video of n+1 problem in code decode we have explained about the what the problem is all about and how to solve this problem.
    Udemy Course of Code Decode on Microservice k8s AWS CICD link:
    openinapp.co/udemycourse
    Course Description Video :
    yt.openinapp.co/dmjvd
    Referral Code : Cod3095
    Playstore link nxtlvl.in/2xa
    App Store Link nxtlvl.in/xft
    What is Hibernate N+1 Select Problem
    The N + 1 Select problem is a performance issue in Hibernate. In this problem, a Java application makes N + 1 database calls (N = number of child objects fetched). For example, if N= 2, the application makes 3 (N+1= 3) database calls.
    Example - Employees and Departments have Many To one relationship . One Department ( Parent ) can have multiple Employees (Child)
    // Unidirectional mapping . By default its lazy
    Using
    @OneToMany(fetch = FetchType.LAZY)
    @JoinColumn(name="Dept_id") // dept_id will be column in Employee table.
    Now we need to fetch all departments ,
    What all steps will be done now to fetch all departments -
    by default its lazy so first a call goes to Department table and fetch all departments (only id and name - No employes list fetched)
    Then while returning, for each department now a call goes to fetch list of employees. So N calls goes now, each for 1 department.
    What is Hibernate N+1 Select Problem’s Solution
    At SQL level, what ORM needs to achieve to avoid N+1 is to fire a query that joins the two tables and get the combined results in single query.
    Spring Data JPA Approach-
    using left join fetch, we resolve the N+1 problem
    using attributePaths, Spring Data JPA avoids N+1 problem
    Hibernate Approach
    Using HQL Query - "from Department d join fetch d.listOfEmployees Employee e”
    Criteria criteria = session.createCriteria(Department.class);
    criteria.setFetchMode("listOfEmployees", FetchMode.EAGER);
    .
    What is @EntityGraph(attributePaths = {"listOfEmployees"})
    At SQL level, what ORM needs to achieve to avoid N+1 is to fire a query that joins the two tables and get the combined results in single query.
    Spring Data JPA Approach-
    using left join fetch, - we can use JOIN FETCH. The FETCH keyword of the JOIN FETCH statement is JPA-specific. It instructs the persistence provider to not only join the two database tables contained in the query, but also initialize the association on the returned entity. It works with both JOIN and LEFT JOIN statements.
    using attributePaths, - EntityGraphs are introduced in JPA 2.1 and used to allow partial or specified fetching of objects. When an entity has references to other entities we can specify a fetch plan by EntityGraphs in order to determine which fields or properties should be fetched together.
    What is @EntityGraph(attributePaths = {"listOfEmployees"})
    Hibernate Approach
    Using HQL Query - "from Department d join fetch d.listOfEmployees Employee e”
    Using Criteria
    Criteria criteria = session.createCriteria(Department.class);
    criteria.setFetchMode("listOfEmployees", FetchMode.EAGER);
    Most Asked Core Java Interview Questions and Answers: • Core Java frequently a...
    Advance Java Interview Questions and Answers: • Advance Java Interview...
    Java 8 Interview Questions and Answers: • Java 8 Interview Quest...
    Hibernate Interview Questions and Answers:
    • Hibernate Interview Qu...
    Spring Boot Interview Questions and Answers:
    • Advance Java Interview...
    Angular Playlist: • Angular Course Introdu...
    SQL Playlist: • SQL Interview Question...
    GIT: • GIT
    Subscriber and Follow Code Decode
    Subscriber Code Decode: ua-cam.com/users/CodeDecode?...
    LinkedIn : / codedecodeyoutube
    Instagram: / codedecode25
    #N+1problem #hibernate #codedecode

КОМЕНТАРІ • 54

  • @chetankhandave1072
    @chetankhandave1072 Рік тому +2

    You are one of the best teacher I have ever seen. Your explanation in such simple language shows your thorough study. Thanks for the video and Best of luck.

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

      Thanks a lot Chetan 🙂🙂👍

  • @srisureshshetty
    @srisureshshetty 2 дні тому

    Very good explanation. Thanks for the tutorial.

  • @arunr8764
    @arunr8764 Рік тому +2

    The best explanation I have seen for n+1 problem...

  • @user-zp8ui3ku8o
    @user-zp8ui3ku8o Рік тому +1

    thanks for your explanation. This is one of the important interview quuestion

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

    Great Explanation . The Best Explanation I have seen for N+1 Problem

  • @rajat_singla
    @rajat_singla Рік тому +3

    Great explanation. Would be great if you can explain join fetch and entity graphs in detail as you mentioned towards the end of the video. Thanks.

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

      Sure we will do that Rajat🙂👍

    • @ChristForAll-143
      @ChristForAll-143 Рік тому

      @Rajat singla dude its just sql left join there is nothing special and they are just implementing it via hibernate and spring data dpa - at the end its just left join

  • @theprofessor252
    @theprofessor252 Рік тому +1

    Looking forward to the next video on this.

  • @ahmedelsabagh6990
    @ahmedelsabagh6990 Рік тому +1

    Excellent tutorial!

  • @AshishSingh-rx4sq
    @AshishSingh-rx4sq Рік тому +1

    Super demonstration.

  • @vipulrohilla1383
    @vipulrohilla1383 8 місяців тому +1

    Great explanation!!

  • @dmytro4312
    @dmytro4312 Рік тому +1

    very cool and usefull video, thanks a lot)

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

    please explain entity graphs in detail. Thanks for the video

  • @abhilashchaparala7651
    @abhilashchaparala7651 Рік тому +1

    Great explanation. If possible could you please explain entity graphs in detail. Thanks for the video

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

    Great explanation.. pls do explain JOIN FETCH and entity graph as well.

  • @ayushjain7555
    @ayushjain7555 7 місяців тому

    Thanks for this explanation
    one question if I set fetch type as eager then will this problem arise?

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

    Thanks for this one.
    please prepare one video for entity graph.

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

      sure shubham we will upload it soon

  • @48mantusubudhi72
    @48mantusubudhi72 Рік тому +2

    if we are using fetchType as Eager then the N+1 problem should be fixed right . at the end we are dealing with object creation of realted tables .why do we need so much complications then ?

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

      Performance is the reason people in It world moves towards lazy loading.

  • @sureshmanne7245
    @sureshmanne7245 Рік тому +3

    how is the {"listOfEmployees"} referred to Employee table?

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

      List of employees is actually a list employee entity. Entity maps to relational table. Employee is actually a table in sql

  • @tannubajpai4782
    @tannubajpai4782 Рік тому +1

    Thnx u ma'am

  • @anurani7084
    @anurani7084 Рік тому +1

    Great explanation..pls do a video on entity graph

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

      Sure Anu👍🙂

    • @luka.nguyen7
      @luka.nguyen7 Рік тому

      @Code Decode: I have a question that which is the best-practice to solve N+1 problem, is it entity graph?

  • @amittripathy-kl1cw
    @amittripathy-kl1cw Рік тому

    is there any code respository for this code?

  • @rohitbagdi5155
    @rohitbagdi5155 Рік тому +1

    Can I just add fetch type as eager in the entity class and will it do the same ?

  • @syedfaizan5841
    @syedfaizan5841 4 місяці тому

    where is the transaction video after propogation i mean you told you will cover transaction isolation

  • @ramprasath4788
    @ramprasath4788 Рік тому +1

    Good

  • @komal_yadav
    @komal_yadav Рік тому +1

    Please tell more on entitygraph

  • @syedfaizan5841
    @syedfaizan5841 4 місяці тому

    thanks but please transaction isolation

  • @sahilpatil1111
    @sahilpatil1111 Рік тому +1

    Thanks, this issue asked multiple times in interview but i have not answered 😑
    Pls help in best way to fetch result in custom dto after join non relationship table

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

      No problem Sahil. Now you know it👍. Sure we will create videos on views and custom dtos 👍

  • @Hiteshdua-o6b
    @Hiteshdua-o6b 14 днів тому

    solution start @10:00 min

  • @user-pi9ch5zj1l
    @user-pi9ch5zj1l Рік тому

    if we use EAGER instead FETCH in @onetomany annotation will it solve the problem?