CalvinKirs
4 years ago
9 changed files with 203 additions and 23 deletions
@ -0,0 +1,31 @@ |
|||||||
|
/* |
||||||
|
* 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.dolphinscheduler.microbench.common; |
||||||
|
|
||||||
|
import org.apache.dolphinscheduler.rpc.base.Rpc; |
||||||
|
|
||||||
|
/** |
||||||
|
* IUserService |
||||||
|
*/ |
||||||
|
public interface IUserService { |
||||||
|
|
||||||
|
@Rpc(async = true, serviceCallback = UserCallback.class, retries = 9999) |
||||||
|
Boolean say(String s); |
||||||
|
|
||||||
|
Integer hi(int num); |
||||||
|
} |
@ -0,0 +1,77 @@ |
|||||||
|
/* |
||||||
|
* 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.dolphinscheduler.microbench.common; |
||||||
|
|
||||||
|
import org.apache.dolphinscheduler.microbench.base.AbstractBaseBenchmark; |
||||||
|
import org.apache.dolphinscheduler.remote.config.NettyServerConfig; |
||||||
|
import org.apache.dolphinscheduler.remote.utils.Host; |
||||||
|
import org.apache.dolphinscheduler.rpc.client.IRpcClient; |
||||||
|
import org.apache.dolphinscheduler.rpc.client.RpcClient; |
||||||
|
import org.apache.dolphinscheduler.rpc.remote.NettyClient; |
||||||
|
import org.apache.dolphinscheduler.rpc.remote.NettyServer; |
||||||
|
|
||||||
|
import java.util.concurrent.TimeUnit; |
||||||
|
|
||||||
|
import org.openjdk.jmh.annotations.Benchmark; |
||||||
|
import org.openjdk.jmh.annotations.BenchmarkMode; |
||||||
|
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.Setup; |
||||||
|
import org.openjdk.jmh.annotations.State; |
||||||
|
import org.openjdk.jmh.annotations.TearDown; |
||||||
|
import org.openjdk.jmh.annotations.Warmup; |
||||||
|
|
||||||
|
@Warmup(iterations = 5, time = 1) |
||||||
|
@Measurement(iterations = 10, time = 1) |
||||||
|
@State(Scope.Benchmark) |
||||||
|
@BenchmarkMode({Mode.Throughput, Mode.AverageTime, Mode.SampleTime}) |
||||||
|
public class RpcTest extends AbstractBaseBenchmark { |
||||||
|
private NettyServer nettyServer; |
||||||
|
|
||||||
|
private IUserService userService; |
||||||
|
|
||||||
|
private Host host; |
||||||
|
private IRpcClient rpcClient = new RpcClient(); |
||||||
|
|
||||||
|
@Setup |
||||||
|
public void before() throws Exception { |
||||||
|
nettyServer = new NettyServer(new NettyServerConfig()); |
||||||
|
IRpcClient rpcClient = new RpcClient(); |
||||||
|
host = new Host("127.0.0.1", 12346); |
||||||
|
userService = rpcClient.create(IUserService.class, host); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
@Benchmark |
||||||
|
@BenchmarkMode({Mode.Throughput, Mode.AverageTime, Mode.SampleTime}) |
||||||
|
@OutputTimeUnit(TimeUnit.MILLISECONDS) |
||||||
|
public void sendTest() throws Exception { |
||||||
|
|
||||||
|
userService = rpcClient.create(IUserService.class, host); |
||||||
|
Integer result = userService.hi(1); |
||||||
|
} |
||||||
|
|
||||||
|
@TearDown |
||||||
|
public void after() { |
||||||
|
NettyClient.getInstance().close(); |
||||||
|
nettyServer.close(); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,30 @@ |
|||||||
|
/* |
||||||
|
* 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.dolphinscheduler.microbench.common; |
||||||
|
|
||||||
|
import org.apache.dolphinscheduler.rpc.common.AbstractRpcCallBack; |
||||||
|
|
||||||
|
/** |
||||||
|
* UserCallback |
||||||
|
*/ |
||||||
|
public class UserCallback extends AbstractRpcCallBack { |
||||||
|
@Override |
||||||
|
public void run(Object object) { |
||||||
|
|
||||||
|
} |
||||||
|
} |
@ -0,0 +1,37 @@ |
|||||||
|
/* |
||||||
|
* 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.dolphinscheduler.microbench.common; |
||||||
|
|
||||||
|
import org.apache.dolphinscheduler.rpc.base.RpcService; |
||||||
|
|
||||||
|
/** |
||||||
|
* UserService |
||||||
|
*/ |
||||||
|
@RpcService("IUserService") |
||||||
|
public class UserService implements IUserService { |
||||||
|
|
||||||
|
@Override |
||||||
|
public Boolean say(String s) { |
||||||
|
return true; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public Integer hi(int num) { |
||||||
|
return ++num; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue