This is an automated email from the ASF dual-hosted git repository.
albumenj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-website.git
The following commit(s) were added to refs/heads/master by this push:
new 23f1a3d9010 Update overview.md (#2935)
23f1a3d9010 is described below
commit 23f1a3d90109f06711deb27649c220ced2350958
Author: tunglinwood <[email protected]>
AuthorDate: Fri Mar 8 10:02:14 2024 +0800
Update overview.md (#2935)
---
content/en/overview/what/overview.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/content/en/overview/what/overview.md
b/content/en/overview/what/overview.md
index 923ea3846d1..0b717131643 100644
--- a/content/en/overview/what/overview.md
+++ b/content/en/overview/what/overview.md
@@ -39,7 +39,7 @@ The overall architecture of Apache Dubbo can well meet the
large-scale microserv

First of all, Dubbo is an RPC framework, which defines its own RPC
communication protocol and programming method. As shown in the figure above,
when using Dubbo, users first need to define the Dubbo service; secondly, after
deploying the Dubbo service online, rely on Dubbo's application layer
communication protocol to realize data exchange, and the data transmitted by
Dubbo must be serialized. And here the serialization protocol is fully
extensible.
-The first step in using Dubbo is to define Dubbo services. The definition of
services in Dubbo is a set of methods to complete business functions. You can
choose to define them in a way that is bound to a certain language. For
example, in Java, Dubbo services have a set of The Interface interface of the
method can also use the language-neutral Protobuf Buffers [IDL definition
service](../../tasks/triple/idl/). After the service is defined, the server
(Provider) needs to provide a specifi [...]
+The first step in using Dubbo is to define Dubbo services. The definition of
services in Dubbo is a set of methods to complete business functions. You can
choose to define them in a way that is bound to a certain language. For
example, in Java, Dubbo services have a set of interface of the method can also
use the language-neutral Protobuf Buffers [IDL definition
service](../../tasks/triple/idl/). After the service is defined, the server
(Provider) needs to provide a specific implementati [...]
After the consumer initiates a call to the service method, the Dubbo framework
is responsible for sending the request to the service provider deployed on the
remote machine. After receiving the request, the provider will call the
implementation class of the service, and then return the processing result to
the consumer. This completes a complete service call. The data flow of Request
and Response in the figure is shown.
> It should be noted that in Dubbo, when we refer to services, we usually
> refer to RPC-grained interfaces or methods that provide the function of
> adding, deleting, and modifying a specific business, which is not the same
> as the services generally referred to in some microservice concept books
> concept.