-
How do I use Zipkin and Brave to implement dubbo service call tracking?
at present, all the versions found on the Internet are earlier versions. No suitable general instructions or examples have been found for the official version of Brave after 4.x. At present, there is also an official brave-instrumentation-dubbo-rpc, but ...
-
Is it impossible to automatically roll back data through Spring-test for unit testing of dubbo services
I now want to test a method in a dubbo service through a unit test, but this method modifies the data in the database every time, and the unit test cannot be repeated.
so I want to use Spring-test for automatic rollback of unit tests. In my Spring+MyB...
-
How to inject spring bean into dubbo filter
We need to do user behavior analysis based on the application. We want to inject the current user s id through dubbo filter, and implicitly pass parameters from consumer to provider, but find that spring bean, cannot be injected into dubbo filter. Is ...
-
Why did the backstage report an error?
ReferenceConfig(null) is not DESTROYED when FINALIZE, dubbo version: 2.5.3, current host: 10.16.4.157
...
-
In dubbo architecture, why is the Gateway layer generally not used?
recently studied Spring-cloud. We know that Zuul is a gateway component under the Spring-cloud system. After reading a blog post by Zhai Yongchao, I mentioned this sentence:
**duboo**
Why is the Gateway layer not needed under the dubbo architecture?
...
-
Are there any good distributed frameworks under node? Similar to using dubbo in java
node is widely used in the company s existing technical capabilities. Now there is a relatively large project. Consider doing service split. Is there a recommended distributed framework under node? Similar to the dubbo, used under java, it is relatively...
-
What is the role of interfaces in Dubbo?
what is the purpose of the interface in the dubbo project? Does it mean some kind of agreement? ...
-
What is the use of having 200 threads in the Dubbo default thread pool?
public class FixedThreadPool implements ThreadPool {
public Executor getExecutor(URL url) {
String name = url.getParameter(Constants.THREAD_NAME_KEY, Constants.DEFAULT_THREAD_NAME);
int threads = url.getParameter(Constants.THREADS_KE...
-
Dubbo+SpringBoot Integration: the problem of dependency injection Null Pointer Exception
I use Dubbo+SpringBoot to build micro services controller and service belong to two services there are the following classes
@RestController
@RequestMapping("product")
public class ProductController{
@Reference(version="1.0.0"...
-
Dubbo reported to message can not send, because channel is closed
2018-07-05 16 virtual 17 dispatcherServlet 02.005 ERROR 28380-[nio-9002-exec-4] o.a.c.c.C. [ ]. [dispatcherServlet]: Servlet.service () for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested excepti...
-
How to deal with dubbo request timeout
< H2 > in the distributed framework, there will inevitably be request timeout (business complexity, network delay, server pressure) during service invocation, so how to deal with the result of request timeout? < H2 >
for example: the merchant system...
-
How Springboot configures dubbo monitor
springmvc just add to the configuration file
<dubbo:monitor protocol="registry" >
is fine springboot?
...
-
Spring-boot integrates dubbo, caller to start error report
A novice learner Dubbo, has this problem when integrating Spring-boot to do Demo. the service provider can start normally, but the caller failed to start. Multiple attempts are inexplicable and cannot be solved. Passers-by point out the problem. Let ...
-
How do you understand the arrowheads in the data in Dubbo Monitor?
how to understand the statistics monitored by dubbo? what does this arrow mean?
Method: Success Failure Avg Elapsed (ms) Max Elapsed (ms) Max Concurrent list 5--> 6 1--> 0 422--> 289 1042--> 1334 1-> 2
...
-
About the question returned after dubbo retry
after testing, I found that when using dubbo, if the A service a method calls the b method of the B service and retries N times, the return of the b method obtained by the a method is the Nth time or some time in the middle .
now if method a calls me...
-
Dubbo exception Not found exported service
is the dubbo exception Not found exported service, caused by a zookeeper failure or a network problem? The log is as follows:
[18-8-30 7:49:14:487 CST] 00000028 SystemOut O 2018-08-30 07:49:14,487 INFO [com.alibaba.dubbo.rpc.protocol.dubbo.Callback...
-
Dubbo service registration is too slow
problem description
when we were doing public offering, we found that the dubbo registration service was too slow and it took a long time to start the service. Lazy loading will lead to a bad customer experience. After looking at the source code, it i...
-
The @ Reference annotation attribute in controller when springboot+dubbo writes a unit test is null
problem description
when springboot+dubbo annotations are used in the configuration development of the project, there is no problem with starting the project normally, but when I was writing the unit test, I found that the attribute marked @ Reference...
-
Jmeter calls dudubbo service to report an error
the program that calls dubbo written in eclipse is exported to runnarunnable jar, through eclipse. The xsd, is not found in the total report, but it is normal in eclipse. Xsd is also exported, as shown in the screenshot.
2018-10-14 12 Flux 54 WARN o.b...
-
How to restore dubbo service after downgrade?
dubbo degrades the service, and the mock, timed out or the number of retries reached the upper limit will go to mock . How to recover? There are some articles on the Internet about asynchronous thread detection, how to do it? ...