All Products
Search
Document Center

Enterprise Distributed Application Service:HSF overview

Last Updated:Mar 11, 2026

High-speed Service Framework (HSF) is a distributed Remote Procedure Call (RPC) framework widely used in Alibaba Group. HSF decouples distributed applications through a unified service publishing and invocation model. It handles remote communication, serialization, performance loss, and synchronous and asynchronous invocation so that application code stays focused on business logic.

Note

Dubbo 3.0 integrates open-source Dubbo and HSF. To upgrade an existing HSF application, see Update an HSF application to a Dubbo 3.0 application. You perform the upgrade through the Enterprise Distributed Application Service (EDAS) console. You can develop the upgraded application by using the original method or the microservice governance feature provided by EDAS for Dubbo applications.

Architecture

HSF runs entirely on the client side -- no central cluster processes requests. All service calls are point-to-point between providers and consumers. HSF depends on several external systems for service discovery, governance, and operational visibility.

Data plane

The data plane consists of the service providers and consumers that exchange data directly through RPC calls.

ComponentRole
Service providerListens on port 12200, processes incoming requests, and publishes its address to the address registry.
Service consumerSubscribes to service addresses through the registry and initiates point-to-point calls based on the retrieved address information. The address registry is not involved in calls.

Control plane

The control plane manages service discovery, configuration, and operational visibility.

ComponentRoleRequired
Address registryStores provider addresses for service registration and discovery. Without it, only direct point-to-point calls are possible.Yes
Persistent configuration centerStores governance rules such as routing, grouping, and weighting rules. Consumers subscribe to these rules at startup to determine address selection logic.Not explicitly stated
Metadata storage centerStores service metadata such as method signatures and parameter structures. Does not affect service calls. When HSF starts up, the consumer reports metadata to the metadata storage center to facilitate service O&M.No
EDAS consoleConnects the registry, configuration center, and metadata storage center. Provides service query, governance rule management, and other operational features.No

Supported call methods

HSF supports the following call methods:

MethodDescription
SynchronousDefault method. The consumer blocks until the provider returns a result.
Asynchronous (Future)The consumer continues execution and retrieves results later through HSFResponseFuture.getResponse(int timeout).
Asynchronous (Callback)The consumer registers an HSFResponseCallback handler. HSF invokes the handler when results are available.
GenericThe consumer calls services without importing provider API interfaces. Useful for building lightweight, platform-level integrations that do not depend on provider SDKs.

Trace filter extension

HSF includes a built-in call filter mechanism. You can implement custom filter extension points that integrate into the HSF call trace. These extensions process HSF requests.

Application development

HSF supports two development and deployment models:

ModelRuntime dependencySupported featuresDeployment format
Ali-TomcatAli-Tomcat + PandoraService registration and discovery, implicit parameter passing, asynchronous calls, generic calls, trace filter extensionWAR package
Pandora BootPandoraService registration, service discovery, asynchronous callsExecutable JAR package

Related topics