summaryrefslogtreecommitdiffstats
path: root/sandbox/old/contrib/persistence/store.journal/src/test/java/org/apache/tuscany/persistence/store/journal/performance/JournalStoreThroughputTest.java
blob: eeb566f182c9924eeb77b8c86779db256b13a680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.apache.tuscany.persistence.store.journal.performance;

import java.io.IOException;
import java.util.UUID;
import java.util.concurrent.BrokenBarrierException;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.CyclicBarrier;
import java.util.concurrent.TimeUnit;

import org.apache.tuscany.spi.component.SCAObject;
import org.apache.tuscany.spi.services.store.StoreWriteException;

import org.apache.tuscany.persistence.store.journal.JournalShutdownException;
import org.apache.tuscany.persistence.store.journal.JournalStore;
import static org.apache.tuscany.persistence.store.journal.SerializationHelper.serialize;
import static org.apache.tuscany.persistence.store.journal.SerializationHelper.serializeRecordId;
import org.apache.tuscany.persistence.store.journal.TestUtils;

/**
 * Runs a basic throughput tests on JournalStore operations
 * <p/>
 * TODO this should be integrated with a Maven itest-based performance harness
 *
 * @version $Rev$ $Date$
 */
public class JournalStoreThroughputTest {
    private static final int SIZE = 1000;
    private CyclicBarrier barrier;
    private JournalStore store;
    private long now;
    private SCAObject owner = new MockSCAObject();
    private String id = UUID.randomUUID().toString();
    private CountDownLatch latch = new CountDownLatch(1);
    private long expire = System.currentTimeMillis() + 10000;
    private Foo object = new Foo("this is a test", 1);

    public static void main(String[] args) throws Exception {
        JournalStoreThroughputTest test = new JournalStoreThroughputTest();
        test.testAppend();
        test.latch.await(5000, TimeUnit.MILLISECONDS);
    }

    public void testAppend() throws Exception {
        TestUtils.cleanupLog();
        store = new JournalStore(new MockMonitor());
        store.init();
        final Thread[] threads = new Thread[SIZE];
        barrier = new CyclicBarrier(SIZE, new Runnable() {
            public void run() {
                try {
                    System.out.println("-----------------------------------------------------");
                    System.out.println("JournalStore.append()");
                    byte[] idBytes = serializeRecordId(owner.getUri().toString(), id);
                    byte[] bytes = serialize(object);
                    System.out.println("Approx record size :" + (bytes.length + idBytes.length));
                    System.out.println("Total threads :" + barrier.getNumberWaiting());
                    System.out.println("Forced writes :" + barrier.getNumberWaiting());
                    System.out.println("Time:" + (System.currentTimeMillis() - now));
                    store.destroy();
                    latch.countDown();
                } catch (JournalShutdownException e) {
                    e.printStackTrace();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        });
        for (int i = 0; i < SIZE; i++) {
            threads[i] = new Thread(new InsertWorker(true));
        }
        now = System.currentTimeMillis();
        for (int i = 0; i < SIZE; i++) {
            threads[i].start();
        }
    }

    private class InsertWorker implements Runnable {
        boolean forced;

        public InsertWorker(boolean forced) {
            this.forced = forced;
        }

        public void run() {
            try {
                store.insertRecord(owner, id, object, expire);
                barrier.await();
            } catch (StoreWriteException e) {
                e.printStackTrace();
            } catch (BrokenBarrierException e) {
                e.printStackTrace();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }


}