Skip to content

Commit

Permalink
Backend: Fix log for PARALLEL_BACKEND_OPS option
Browse files Browse the repository at this point in the history
Signed-off-by: Boxuan Li <liboxuan@connect.hku.hk>
  • Loading branch information
li-boxuan authored and porunov committed Aug 4, 2023
1 parent 1549163 commit 0cb1221
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -271,8 +271,8 @@ public Backend(Configuration configuration) {

if(configuration.get(PARALLEL_BACKEND_OPS)){
if(storeFeatures.hasMultiQuery()){
log.info(storeManager.getName() + " supports multi-key queries. Thus, option {} is ignored in favor of multi-key queries. " +
"Backend-ops executor pool will not be created for this storage backend.");
log.info("{} supports multi-key queries. Thus, option {} is ignored in favor of multi-key queries. " +
"Backend-ops executor pool will not be created for this storage backend.", storeManager.getName(), PARALLEL_BACKEND_OPS);
threadPool = null;
} else {
threadPool = buildExecutorService(configuration);
Expand Down

1 comment on commit 0cb1221

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: 0cb1221 Previous: 8e3816f Ratio
org.janusgraph.JanusGraphSpeedBenchmark.basicAddAndDelete 14321.230655571904 ms/op 14532.494919968713 ms/op 0.99
org.janusgraph.GraphCentricQueryBenchmark.getVertices 1347.8679753147915 ms/op 1341.4205490969866 ms/op 1.00
org.janusgraph.MgmtOlapJobBenchmark.runClearIndex 221.37871517391304 ms/op 219.50517400869566 ms/op 1.01
org.janusgraph.MgmtOlapJobBenchmark.runReindex 463.2591809696969 ms/op 474.74738472 ms/op 0.98
org.janusgraph.JanusGraphSpeedBenchmark.basicCount 474.1742368726054 ms/op 385.5766658693171 ms/op 1.23
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesAllPropertiesWithAllMultiQuerySlicesUnderMaxRequestsPerConnection 9407.659055067692 ms/op 9837.973724257849 ms/op 0.96
org.janusgraph.CQLMultiQueryBenchmark.getElementsWithUsingEmitRepeatSteps 34341.51567932619 ms/op 30990.078781266668 ms/op 1.11
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesMultiplePropertiesWithSmallBatch 34660.16747972167 ms/op 34130.417437145006 ms/op 1.02
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.vertexCentricPropertiesFetching 70034.63660366667 ms/op 64924.88423363333 ms/op 1.08
org.janusgraph.CQLMultiQueryBenchmark.getAllElementsTraversedFromOuterVertex 16543.771125417075 ms/op 15213.595918878282 ms/op 1.09
org.janusgraph.CQLMultiQueryBenchmark.getVerticesWithDoubleUnion 602.4165614119256 ms/op 622.1791426031332 ms/op 0.97
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesAllPropertiesWithUnlimitedBatch 8844.113927727136 ms/op 8743.251293119505 ms/op 1.01
org.janusgraph.CQLMultiQueryBenchmark.getNames 16188.607337882957 ms/op 15399.258113350808 ms/op 1.05
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesThreePropertiesWithAllMultiQuerySlicesUnderMaxRequestsPerConnection 11499.077937663265 ms/op 12123.446650210828 ms/op 0.95
org.janusgraph.CQLMultiQueryBenchmark.getVerticesFilteredByAndStep 654.6388044577923 ms/op 687.4349321580046 ms/op 0.95
org.janusgraph.CQLMultiQueryBenchmark.getVerticesFromMultiNestedRepeatStepStartingFromSingleVertex 22393.257565405 ms/op 21767.370231805082 ms/op 1.03
org.janusgraph.CQLMultiQueryBenchmark.getVerticesWithCoalesceUsage 579.7596238670645 ms/op 594.3546264197971 ms/op 0.98
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesMultiplePropertiesWithAllMultiQuerySlicesUnderMaxRequestsPerConnection 29319.133756345553 ms/op 28281.21560570778 ms/op 1.04
org.janusgraph.CQLMultiQueryBenchmark.getIdToOutVerticesProjection 406.0304089461045 ms/op 437.1551211838477 ms/op 0.93
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesMultiplePropertiesWithUnlimitedBatch 33572.46448482134 ms/op 33032.19885374843 ms/op 1.02
org.janusgraph.CQLMultiQueryBenchmark.getNeighborNames 16425.51058383513 ms/op 15388.736694382991 ms/op 1.07
org.janusgraph.CQLMultiQueryBenchmark.getElementsWithUsingRepeatUntilSteps 17605.827461747176 ms/op 16535.70284782947 ms/op 1.06
org.janusgraph.CQLMultiQueryBenchmark.getAdjacentVerticesLocalCounts 17138.839027557773 ms/op 15568.310523091981 ms/op 1.10

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.