Package com.netflix.priam.utils

Examples of com.netflix.priam.utils.CassandraMonitor


    @Test
    public void testSnapshotBackup() throws Exception
    {
        filesystem.setupTest();
        SnapshotBackup backup = injector.getInstance(SnapshotBackup.class);
        CassandraMonitor cassMon = injector.getInstance(CassandraMonitor.class);
        cassMon.setIsCassadraStarted();
        backup.execute();
        Assert.assertEquals(3, filesystem.uploadedFiles.size());
        System.out.println("***** "+filesystem.uploadedFiles.size());
        boolean metafile = false;
        for (String filePath : expectedFiles)
View Full Code Here

TOP

Related Classes of com.netflix.priam.utils.CassandraMonitor

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.