Examples of SnapshotCompletionEvent


Examples of org.voltdb.SnapshotCompletionInterest.SnapshotCompletionEvent

            Iterator<SnapshotCompletionInterest> iter = m_interests.iterator();
            while (iter.hasNext()) {
                SnapshotCompletionInterest interest = iter.next();
                try {
                    interest.snapshotCompleted(
                            new SnapshotCompletionEvent(
                                path,
                                nonce,
                                txnId,
                                partitionTxnIdsMap,
                                truncation,
View Full Code Here

Examples of org.voltdb.SnapshotCompletionInterest.SnapshotCompletionEvent

            public void runForRejoin(SiteProcedureConnection siteConnection, TaskLog rejoinTaskLog) throws IOException {
                if (!m_schemaHasNoTables && !m_snapshotCompletionMonitor.isDone()) {
                    m_taskQueue.offer(this);
                    return;
                }
                SnapshotCompletionEvent event = null;
                Map<String, Map<Integer, Pair<Long,Long>>> exportSequenceNumbers = null;
                try {
                    if (!m_schemaHasNoTables) {
                        REJOINLOG.debug(m_whoami + "waiting on snapshot completion monitor.");
                        event = m_snapshotCompletionMonitor.get();
View Full Code Here

Examples of org.voltdb.SnapshotCompletionInterest.SnapshotCompletionEvent

            JOINLOG.debug(m_whoami + " data transfer is finished");

            if (m_snapshotCompletionMonitor.isDone()) {
                try {
                    SnapshotCompletionEvent event = m_snapshotCompletionMonitor.get();
                    assert(event != null);
                    JOINLOG.debug("P" + m_partitionId + " noticed data transfer completion");
                    m_completionAction.setSnapshotTxnId(event.multipartTxnId);

                    setJoinComplete(siteConnection,
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.