The application I'm developing executes a very long operation on the database. The operation involves inserting from thousands to millions of records. That part is running correctly. However, in order to let the user see the progress of the operation and give them (the user) an estimate of how much time remains for the operation to complete, I implemented a progress bar. I represented the progress information as a Progress object:

package com.sandahaung.testsp.entities;

import java.io.Serializable;
import javax.persistence.*;

/**
 *
 * @author Sandah
 */
@NamedNativeQueries({
    @NamedNativeQuery(name = "updateProgress",
    query = "call updateProgress(?, :context)",
    hints = {
        @QueryHint(name = "org.hibernate.callable", value = "true"),
        @QueryHint(name = "org.hibernate.cacheable", value = "false")
    },
    resultSetMapping = "progress")
})
@SqlResultSetMapping(name = "progress", entities = {
    @EntityResult(entityClass = com.sandahaung.testsp.entities.Progress.class, fields = {
        @FieldResult(name = "serialNumber", column = "serialnumber"),
        @FieldResult(name = "remainingTime", column = "remainingtime"),
        @FieldResult(name = "elapsedTime", column = "elapsedtime"),
        @FieldResult(name = "accomplishedPercentage", column = "accomplishedPercentage")
    })
})

@Entity
public class Progress implements Serializable {
    @Id
    private int serialNumber;
    private int remainingTime;
    private int elapsedTime;
    private double accomplishedPercentage;

    public double getAccomplishedPercentage() {
        return accomplishedPercentage;
    }

    public void setAccomplishedPercentage(double accomplishedPercentage) {
        this.accomplishedPercentage = accomplishedPercentage;
    }

    public int getElapsedTime() {
        return elapsedTime;
    }

    public void setElapsedTime(int elapsedTime) {
        this.elapsedTime = elapsedTime;
    }

    public int getSerialNumber() {
        return serialNumber;
    }

    public void setSerialNumber(int serialNumber) {
        this.serialNumber = serialNumber;
    }

    public int getRemainingTime() {
        return remainingTime;
    }

    public void setRemainingTime(int remainingTime) {
    this.remainingTime = remainingTime;
    }
}

Here, updateProgress is the name of a stored procedure on the database server which returns a reference cursor containing a single row about the current state of the operation in progress. I have tested the procedure on the server side and it seems to be working as expected. I also asked if the procedure that I developed is returning cache results and the answer is unanimously no.

I also developed a DAO class, which at the current stage, prints logging information to the standard console.

package com.sandahaung.testsp;

import com.sandahaung.testsp.entities.Progress;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.FlushModeType;
import javax.persistence.Persistence;
import javax.persistence.Query;

/**
 *
 * @author Sandah
 */
public class ProgressUpdater implements Runnable {

    int context;
    private EntityManagerFactory factory;
    private EntityManager em;

    public ProgressUpdater() {
        System.out.println("constructor run");
    }

    public ProgressUpdater(int context) {
        this.context = context;
    }

    public void run() {
        Progress progress = null;
        System.out.println("new thread entered...");
        try {
            System.out.println("code 1");
            Thread.sleep(5000);
        } catch (InterruptedException ex) {
            System.out.println("ex 1");
            //Logger.getLogger(ProgressUpdater.class.getName()).log(Level.SEVERE, null, ex);
        }
        do {
            try {
                System.out.println("code 2");
                Thread.sleep(1000);
            } catch (InterruptedException ex) {
                System.out.println("ex 2");
                //Logger.getLogger(ProgressUpdater.class.getName()).log(Level.SEVERE, null, ex);
            }
            progress = updateProgress();
            System.out.println("Elapsed time: " + progress.getElapsedTime());
            //System.out.println("Remaining time: " + progress.getRemainingTime());
            //System.out.println("Accomplished percentage: " +     progress.getAccomplishedPercentage());
        } while (progress.getAccomplishedPercentage() != -1);
        em.close();
    }

    public Progress updateProgress() {
        Progress progress = findProgress(context);
        return progress;
    }

    public synchronized Progress findProgress(int context) {
        if (factory == null)
            factory = Persistence.createEntityManagerFactory("com.sandahaung_testsp_jar_1.0-SNAPSHOTPU");
        if (em == null)

        em = factory.createEntityManager();
        em.setFlushMode(FlushModeType.AUTO);
        Query query = em.createNamedQuery("updateProgress");
        query.setParameter("context", context);
        Progress progress = (Progress) query.getSingleResult();
        return progress;
    }
}

My problem is that even though running this code is querying the database each time the updateProgress method runs (the database is returning the updated state), the commandline output of this code displaying the same result repeatedly. The return value of progress.getAccomplishedPercentage() never equals -1, thereby preventing the run method from completing. My guess is that The Java side (probably Hibernate) is returning the cached result even though the query gets run against the database (and the database is returning the updated value).

My question is: why is this happening? How can I change my implementation so that I could get the results that I wanted?

Thanks in advance.

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.