summaryrefslogtreecommitdiffstats
path: root/container-search/abi-spec.json
diff options
context:
space:
mode:
authorGeir Storli <geirst@yahooinc.com>2023-01-20 16:50:50 +0000
committerGeir Storli <geirst@yahooinc.com>2023-01-20 16:50:50 +0000
commitea7f8d4d792c122ef9b603deebdc69000026cb72 (patch)
tree42c1937e1b1460650091091afa244ec773aad024 /container-search/abi-spec.json
parentf01c1607b1637eecb40a45c32b851ebeec539fe7 (diff)
Add query trace parameters for profiling backend query evaluation.
With this change, profiling of matching, first-phase ranking, and second-phase ranking can be tuned separately.
Diffstat (limited to 'container-search/abi-spec.json')
-rw-r--r--container-search/abi-spec.json50
1 files changed, 49 insertions, 1 deletions
diff --git a/container-search/abi-spec.json b/container-search/abi-spec.json
index a71082ecba3..ae4d0e713f8 100644
--- a/container-search/abi-spec.json
+++ b/container-search/abi-spec.json
@@ -5698,6 +5698,7 @@
"public void setTimestamps(boolean)",
"public boolean getQuery()",
"public void setQuery(boolean)",
+ "public com.yahoo.search.query.profiling.Profiling getProfiling()",
"public void trace(java.lang.String, int)",
"public void trace(java.lang.Object, int)",
"public void trace(java.lang.String, boolean, int)",
@@ -5716,7 +5717,8 @@
"public static final java.lang.String EXPLAIN_LEVEL",
"public static final java.lang.String PROFILE_DEPTH",
"public static final java.lang.String TIMESTAMPS",
- "public static final java.lang.String QUERY"
+ "public static final java.lang.String QUERY",
+ "public static final java.lang.String PROFILING"
]
},
"com.yahoo.search.query.UniqueRequestId" : {
@@ -6679,6 +6681,52 @@
],
"fields" : [ ]
},
+ "com.yahoo.search.query.profiling.Profiling" : {
+ "superClass" : "java.lang.Object",
+ "interfaces" : [
+ "java.lang.Cloneable"
+ ],
+ "attributes" : [
+ "public"
+ ],
+ "methods" : [
+ "public void <init>()",
+ "public static com.yahoo.search.query.profile.types.QueryProfileType getArgumentType()",
+ "public com.yahoo.search.query.profiling.ProfilingParams getMatching()",
+ "public com.yahoo.search.query.profiling.ProfilingParams getFirstPhaseRanking()",
+ "public com.yahoo.search.query.profiling.ProfilingParams getSecondPhaseRanking()",
+ "public com.yahoo.search.query.profiling.ProfilingParams clone()",
+ "public boolean equals(java.lang.Object)",
+ "public int hashCode()",
+ "public bridge synthetic java.lang.Object clone()"
+ ],
+ "fields" : [
+ "public static final java.lang.String MATCHING",
+ "public static final java.lang.String FIRST_PHASE_RANKING",
+ "public static final java.lang.String SECOND_PHASE_RANKING"
+ ]
+ },
+ "com.yahoo.search.query.profiling.ProfilingParams" : {
+ "superClass" : "java.lang.Object",
+ "interfaces" : [ ],
+ "attributes" : [
+ "public"
+ ],
+ "methods" : [
+ "public void <init>()",
+ "public static com.yahoo.search.query.profile.types.QueryProfileType getArgumentType()",
+ "public int getDepth()",
+ "public void setDepth(int)",
+ "public com.yahoo.search.query.profiling.ProfilingParams clone()",
+ "public boolean equals(java.lang.Object)",
+ "public int hashCode()",
+ "public bridge synthetic java.lang.Object clone()"
+ ],
+ "fields" : [
+ "public static final java.lang.String PROFILING_PARAMS",
+ "public static final java.lang.String DEPTH"
+ ]
+ },
"com.yahoo.search.query.properties.CloneHelper" : {
"superClass" : "com.yahoo.processing.request.CloneHelper",
"interfaces" : [ ],