Improve plugin performance (#2838)
* Improve plugin performance. fix #2837
This commit is contained in:
parent
e05e092677
commit
f683850b9a
|
|
@ -11,4 +11,4 @@ language: java
|
|||
|
||||
install:
|
||||
- ./mvnw org.jacoco:jacoco-maven-plugin:0.8.3:prepare-agent clean install org.jacoco:jacoco-maven-plugin:0.8.3:report coveralls:report --quiet
|
||||
- ./mvnw javadoc:javadoc -Dmaven.test.skip=true --quiet
|
||||
- ./mvnw javadoc:javadoc -Dmaven.test.skip=true --quiet
|
||||
|
|
|
|||
|
|
@ -193,11 +193,11 @@ public class SolrClientInterceptor implements InstanceMethodsAroundInterceptor,
|
|||
}
|
||||
|
||||
private static final String getOperatorNameWithAction(String collection, String path, String action) {
|
||||
return String.format("solrJ/%s%s/%s", collection, path, action);
|
||||
return "solrJ/" + collection + path + "/" + action;
|
||||
}
|
||||
|
||||
private static final String getOperatorName(String collection, String path) {
|
||||
return String.format("solrJ/%s%s", collection, path);
|
||||
return "solrJ/" + collection + path;
|
||||
}
|
||||
|
||||
private static final String getCollection(SolrjInstance instance, Object argument) {
|
||||
|
|
|
|||
|
|
@ -0,0 +1,71 @@
|
|||
/*
|
||||
* 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.skywalking.apm.plugin.solrj;
|
||||
|
||||
import org.openjdk.jmh.annotations.Benchmark;
|
||||
import org.openjdk.jmh.annotations.BenchmarkMode;
|
||||
import org.openjdk.jmh.annotations.Fork;
|
||||
import org.openjdk.jmh.annotations.Measurement;
|
||||
import org.openjdk.jmh.annotations.Mode;
|
||||
import org.openjdk.jmh.annotations.OutputTimeUnit;
|
||||
import org.openjdk.jmh.annotations.Scope;
|
||||
import org.openjdk.jmh.annotations.State;
|
||||
import org.openjdk.jmh.annotations.Warmup;
|
||||
import org.openjdk.jmh.runner.Runner;
|
||||
import org.openjdk.jmh.runner.RunnerException;
|
||||
import org.openjdk.jmh.runner.options.Options;
|
||||
import org.openjdk.jmh.runner.options.OptionsBuilder;
|
||||
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
/**
|
||||
* Benchmark Mode Cnt Score Error Units
|
||||
* StringFormatBenchmark.testStringConcat thrpt 10 326.444 ± 46.432 ops/ms
|
||||
* StringFormatBenchmark.testStringFormat thrpt 10 6.094 ± 1.065 ops/ms
|
||||
*
|
||||
* @author kezhenxu94
|
||||
*/
|
||||
@BenchmarkMode(Mode.Throughput)
|
||||
@OutputTimeUnit(TimeUnit.MILLISECONDS)
|
||||
@State(Scope.Thread)
|
||||
@Fork(2)
|
||||
@Warmup(iterations = 4)
|
||||
@Measurement(iterations = 5)
|
||||
public class StringFormatBenchmarkTest {
|
||||
@Benchmark
|
||||
public void testStringFormat() {
|
||||
for (int i = 0; i < 100; i++) {
|
||||
String.format("solrJ/%s%s/%s", i, i, i);
|
||||
}
|
||||
}
|
||||
|
||||
@Benchmark
|
||||
public void testStringConcat() {
|
||||
for (int i = 0; i < 100; i++) {
|
||||
String a = "solrJ/" + i + i + "/" + i;
|
||||
}
|
||||
}
|
||||
|
||||
@BenchmarkMode(Mode.AverageTime)
|
||||
@OutputTimeUnit(TimeUnit.MICROSECONDS)
|
||||
public static void main(String[] args) throws RunnerException {
|
||||
Options options = new OptionsBuilder().include(StringFormatBenchmarkTest.class.getSimpleName()).build();
|
||||
new Runner(options).run();
|
||||
}
|
||||
}
|
||||
|
|
@ -17,6 +17,8 @@
|
|||
|
||||
CREATE DATABASE test DEFAULT CHARACTER SET = 'utf8';
|
||||
|
||||
USE test;
|
||||
|
||||
/******************************************/
|
||||
/* database name = nacos_config */
|
||||
/* table_name = config_info */
|
||||
|
|
|
|||
Loading…
Reference in New Issue