aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/test/java/com/yahoo/search/query/profile/test/QueryProfileCloneMicroBenchmark.java
blob: f2f34191177622a62b1fc6dd9c600feffefaed20 (plain) (blame)
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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.query.profile.test;

import com.yahoo.jdisc.http.HttpRequest.Method;
import com.yahoo.container.jdisc.HttpRequest;
import com.yahoo.search.query.profile.QueryProfile;
import com.yahoo.search.Query;
import com.yahoo.search.query.profile.QueryProfileRegistry;

/**
 * @author bratseth
 */
public class QueryProfileCloneMicroBenchmark {

    private final String description;
    private final int propertyCount;
    private final String propertyPrefix;
    private final boolean useDimensions;

    public QueryProfileCloneMicroBenchmark(String description, int propertyCount, String propertyPrefix, boolean useDimensions) {
        this.description=description;
        this.propertyCount=propertyCount;
        this.propertyPrefix=propertyPrefix;
        this.useDimensions=useDimensions;
    }

    public void benchmark(int clone) {
        cloneQueryWithProfile(10000); // warm-up
        System.out.println(description);
        long startTime=System.currentTimeMillis();
        cloneQueryWithProfile(clone);
        long endTime=System.currentTimeMillis();
        long totalTime=(endTime-startTime);
        System.out.println("Done in " + totalTime + " ms (" + ((float)totalTime/clone + " ms per clone)"));
    }

    private void cloneQueryWithProfile(int clones) {
        QueryProfile main = new QueryProfile("main");
        main.set("a", "value1", (QueryProfileRegistry)null);
        main.set("b", "value2", useDimensions ? new String[] {"x1"} : null, null);
        main.set("c", "value3", useDimensions ? new String[] {"x1","y2"} : null, null);
        main.freeze();
        Query query = new Query(HttpRequest.createTestRequest("?query=test&x=1&y=2", Method.GET), main.compile(null));
        setValues(query);
        for (int i=0; i<clones; i++) {
            if (i%(clones/100)==0)
                System.out.print(".");
            query.clone();
        }
    }

    private void setValues(Query query) {
        for (int i=0; i<propertyCount; i++) {
            String thisPrefix=propertyPrefix;
            if (thisPrefix==null)
                thisPrefix="a"+i+".b"+i+".";
            query.properties().set(thisPrefix + "property" + i,"value" + i);
        }
    }

    public static void main(String[] args) {
        int count=100000;
        new QueryProfileCloneMicroBenchmark("Cloning a near-empty query                                                     ",0,"",false).benchmark(count);
        System.out.println("");
        new QueryProfileCloneMicroBenchmark("Cloning a query with 100 properties in root, no dimensions                     ",100,"",false).benchmark(count);
        System.out.println("");
        new QueryProfileCloneMicroBenchmark("Cloning a query with 100 properties in 1-level nested profiles, no dimensions  ",100,"a.",false).benchmark(count);
        System.out.println("");
        new QueryProfileCloneMicroBenchmark("Cloning a query with 100 properties in 2-level nested profiles, no dimensions  ",100,"a.b.",false).benchmark(count);
        System.out.println("");
        new QueryProfileCloneMicroBenchmark("Cloning a query with 100 properties in variable prefix profiles, no dimensions ",100,null,true).benchmark(count);
        System.out.println("");
        new QueryProfileCloneMicroBenchmark("Cloning a query with 100 properties in root, with dimensions                   ",100,"",true).benchmark(count);
        System.out.println("");
        new QueryProfileCloneMicroBenchmark("Cloning a query with 100 properties in 1-level nested profiles, with dimensions",100,"a.",true).benchmark(count);
        System.out.println("");
        new QueryProfileCloneMicroBenchmark("Cloning a query with 100 properties in 2-level nested profiles, with dimensions",100,"a.b.",true).benchmark(count);
        System.out.println("");
    }

}