Skip to main content

Abandoning Kong and Nginx, Hyperchain Technology implements on its BaaS platform

· 10 min read

This article introduces the landing practice of Apache APISIX in Hyperchain Blockchain BaaS platform, and explains why Hyperchain Technology has chosen Apache APISIX among many gateway applications.

Background Information#

BaaS, which is also known as “Blockchain as a Service”, is an open platform that embeds blockchain framework into cloud computing platform and provides convenient and high performance blockchain ecological environment and ecological support services for developers by taking advantage of the deployment and management of cloud service infrastructure to support their business expansion and operation. It is an open blockchain platform that supports developers’ business expansion and operation support.

Typically, a complete BaaS solution includes four main components: device access, access control, service monitoring and blockchain platform.

BaaS introduction

We can build blockchain network quickly and flexibly through BaaS. For enterprises, with BaaS platform, we can manage blockchain business in a unified way.

I believe that many of you have come across the contract code on top of Ethernet. Through BaaS platform, we can easily write smart contracts on the IDE and then deploy it to our created blockchain network, and finally for the upper layer services to call the blockchain-related contracts to carry out the flow of business.

Because the chain has so many nodes, from tens to thousands, it is difficult to monitor and maintain the operation of the chain without the support of BaaS platform. By using BaaS platform, users can not only save cost, but also manage the blockchain more conveniently and the security of the whole system is higher.

The architecture of BaaS product of Hyperchain Technology is divided into four layers in total, which are resource layer, blockchain underlying layer, blockchain service layer and application layer.

Hyperchain BaaS Architecture

Now that we have a preliminary understanding of Baas platform, let’s take a look at the usage scenarios and gains of Apache APISIX on BaaS system.

Apache APISIX Usage Scenarios and Gains#

Scenario 1: Practice on BaaS system#

Apache APISIX applied on BaaS system

The architecture of Hyperchain’s BaaS platform is not only microservices-based, but also divided into two layers, which are business access layer and core service layer.

BFF (Backend For Frontend) is generally to the frontend, through HTTP access. The core services are generally registered through services like Dubbo, ETCD, etc., and finally accessed using gRPC.

The role of BFF is to do business aggregation, format adaptation, and give the final result data to the frontend.

These business modules need to store the relevant information in the registry (ETCD), and then read out the information through the gateway module when it is used.

Hyperchain BaaS Platform Workflow

In the whole process, we mainly use four features of Apache APISIX.

  • Routing and Forwarding
  • Traffic Control
  • Security and Access Control
  • Dynamic Loading

Let’s learn more about how these features are used on the Hyperchain BaaS system below.

Routing and Forwarding#

Apache APISIX Proxy-rewrite Routing and Forwarding

Hyperchain uses the official Proxy-rewrite plugin provided by Apache APISIX to perform route forwarding services.

When a request accesses port 8080, through the Proxy-rewrite plugin, the request will be accessed to the API of the corresponding service.

Apache APISIX Proxy-rewrite Routing and Forwarding 2

The above figure shows the interface of Proxy-rewrite, we can see that you can match your own forwarding rules by regular matching, of course, you can also write HOST or by URL to match.

Traffic Control#

Before Apache APISIX, the platform needed to write its own logic code. With Apache APISIX, we can directly use the officially provided Limit-req plugin to limit the input and output for the purpose of protecting the system.

Through the interface of the Limit-req plugin, we can easily configure parameters such as speed, bucket height, etc.

Apache APISIX Traffic Control

In the Hyperchain BaaS platform, customers can build any chains according to their needs. At this point, the BaaS platform needs to quickly support the creation of these chains and manage their lifecycle.

The creation of these federated chains is not solved by hard code written directly on the code, but by driver components. In a privatization scenario, we need to have such driver components to provide support quickly and need to control the frequency of access to the driver processes.

Apache APISIX Traffic Control 2

Before Apache APISIX, the platform needed to write its own logic code. With Apache APISIX, we can directly use the officially provided Limit-req plugin to limit the input and output for the purpose of protecting the system. Through the interface of the Limit-req plugin, we can easily configure parameters such as speed, bucket height, etc.

Apache APISIX Traffic Control 3

Security and Access Control#

Apache APISIX Security and Access Control

In Hyperchain’s privatization scenario, many users don’t like to use the account system provided by the platform and ask the platform to connect to their existing account system, so Hyperchain uses Apache APISIX’s Access-Auth plugin to adapt the third-party authentication service address with it.

Apache APISIX Security and Access Control 2

In Baas platform, all web requests will go through Apache APISIX’s Access-Auth plugin, complete cookie parsing and authentication, then carry user information in HEAD header and pass to back-end microservices to process business. The advantage of this is that the developer of the microservice does not need to parse the cookie, but can send the user information to the microservice module directly, which is very convenient.

Dynamic Loading#

Apache APISIX Dynamic Loading

The client interface of Baas platform of Hyperchain does not have a “store” button on top; however, there is a “store” button on the public platform of Baas of Hyperchain. In some privatization scenarios, the “store” button is not needed, but the backend services of both are shared, and the platform interface will be displayed differently according to the demand as soon as the backend services are started.

Hyperchain uses Apache APISIX to operate in collaboration with the service center to ensure the addition and adjustment of front-end microservice business modules, which makes the online publishing process of Hyperchain’s Baas platform very easy.

Scenario 2: Practice on blockchain nodes#

blockchain nodes

When a user buys a chain through the BaaS platform, its upper business or developer client connects directly to the nodes, for example, a bank connects to three on the left, an insurance connects to three on the right, or some users access a whole chain. This will bring a big problem because basically every node will be accessed, so we need to expose all the nodes on the blockchain to the public network environment.

Conserve public network ports#

public network ports

This situation may be acceptable for private users, but for a BaaS platform like Hyperchain, which is open to all Internet users, it requires dozens or hundreds or thousands of public IPs, which is not only very costly but also a waste of public IP resources.

In order to solve this problem, Hyperchain’s Baas platform uses Apache APISIX.

Access Control#

Access Control

Unlike traditional software, different heterogeneous chains have their own very complicated RBAC permission control, so users need to add many certificates on the client side, which is a great headache.

In order to solve this pain point, Baas platform of Hyperchain Technology uses Apache APISIX’s Key-auth plugin to allow users with permission to access directly and unify the permission control of all chains.

Improved node stability#

blockchain nodes 2

One of the properties of blockchain is that, essentially, accessing any node is the same.

Just like Bitcoin, we access any node to get the data, so many users operate directly against a node.

Improved node stability

However, the direct access to a single node model is vulnerable to attacks. For example, banks have a very high concurrency, TPS can reach 4–5W/sec, and every transaction will hit this node.

In order to achieve the effect of fast dynamic scaling, Hyperchain’s Baas platform utilizes Apache APISIX HPA deployment model on Kubernetes to dynamically scale according to the traffic, effectively solving the single-point traffic impact problem.

Multi-protocol support#

Multi-protocol support

Because Hyperchain’s Baas platform uses a lot of heterogeneous chains, the protocols used are very diverse, such as HTTP, RPC, WebSocket and so on. Apache APISIX supports multi-protocols very well, which can fully meet the use of Baas platform in the relevant scenarios, which significantly reduces the development cost.

Multi-protocol support 2

What were the kinks we went through before choosing Apache APISIX?#

Before choosing Apache APISIX, Hyperchain’s Baas platform was already using Kong, but Kong was later abandoned.

Why did we give up on Kong?

Kong uses PostgreSQL to store its information, which is obviously not a good way to do it.

Kong

In the software industry, high availability configuration of databases is very complex. Not only do you need to have a dedicated DBA, but the implementation is also very difficult.

The Baas system of Hyperchain Technology is already using MySQL, if we need to build a PostgreSQL database here, it means that Hyperchain Technology’s Baas system needs to have two sets of relational databases. This brings problems to the implementation difficulty and operation and maintenance cost, and introduces more risks.

At the same time, because ETCD is also used in many places of Hyperchain’s Baas platform, finally, Hyperchain abandoned Kong and invested in Apache APISIX which is based on ETCD.

Why did we give up on Nginx?

Some of you may think, “Why not use Nginx?

Yes, Hyperchain’s BaaS platform used to use Nginx, but later we found that Nginx has many imperfections compared to Apache APISIX.

Nginx

  • Issues on hot starts and hot plugins

In the Hyperchain BaaS platform, we not only need to manage the federated chain, but also need to be able to add and delete nodes at any time.

  • Clustering difficulties

While Nginx is very difficult to cluster, Apache APISIX can be implemented with ETCD clustering enhancements.

  • Unable to proxy TCP and UDP directly

By default, Nginx can only implement proxies for Layer 7 networks. To support Layer 4 networks, you need to recompile the Stream module, while Apache APISIX can support both Layer 4/7 proxies.

  • Lack of Dashboard

Nginx does not have a Dashboard, and the Apache APISIX Dashboard makes it less difficult for development and operations staff to manage nodes.

Future Plans#

Future Plans

Plan 1: Use Apache APISIX provided or self-developed logging plugins#

The official website of Apache APISIX already provides a lot of logging plugins, such as HTTP and UDP support, including kafka, etc. However, for a platform like Hyperchain BaaS, which needs to control thousands of blockchain networks, it is a big headache to search for fault traces in the logs when every problem occurs.

In the near future, Hyperchain will add some APM functions between BaaS system and blockchain system based on Apache APISIX. Improve the efficiency of operation and maintenance management in multi-chain scenarios.

Plan 2: Development of monitoring plugins to achieve traceability#

Domestic regulation of blockchain is very strict, and all operations need to be traceable and traceable.

In the future, Hyperchain Technology will develop regulatory plugins based on Apache APISIX to improve the regulatory capability and add VIP, whitelist, replay and other functions.

Plan 3: Use APISIX Ingress Controller instead of Kubernetes’ default Nginx-Ingress#

When deploying Kubernetes, we usually choose Nginx-Ingress to handle outbound requests, but because of some of the Nginx issues mentioned above, Hyperchain is investigating using APISIX Ingress Controller.

Plan 4: Explore Service Mesh#

Hyperchain has tried traffic-mesh before, and will try to use APISIX Mesh in the future.