Package org.voltdb.sysprocs.saverestore.SnapshotUtil

Examples of org.voltdb.sysprocs.saverestore.SnapshotUtil.Snapshot


        }

        /*
         * Build a plan for what partitions to pull from which save file
         */
        final Snapshot snapshot = snapshots.values().iterator().next();
        Map<String, Map<File, Set<Integer>>> tableToFilesWithPartitions =
            new TreeMap<String, Map<File, Set<Integer>>>();
        for (String tableName : tables) {
            if (!snapshot.m_tableFiles.containsKey(tableName)) {
                System.err.println("Error: Snapshot does not contain table " + tableName);
View Full Code Here

TOP

Related Classes of org.voltdb.sysprocs.saverestore.SnapshotUtil.Snapshot

Copyright © 2018 www.massapicom. 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.