Package com.netflix.priam.compress

Examples of com.netflix.priam.compress.SnappyCompression.compress()


    public void compress() throws FileNotFoundException, IOException
    {
        SnappyCompression compress = new SnappyCompression();
        RandomAccessFile file = new RandomAccessFile(new File("/tmp/compress-test.txt"), "r");
        long chunkSize = 5L*1024*1024;
        Iterator<byte[]> it = compress.compress(new AbstractBackupPath.RafInputStream(file), chunkSize);
        FileOutputStream ostream = new FileOutputStream("/tmp/test1.snp");
        while (it.hasNext())
        {
            byte[] chunk = it.next();
            ostream.write(chunk);
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.