chenxin's blog
[翻译]-asp.net core signalr vs grpc

 

A while ago, when ASP.NET Core didn’t even exist, Microsoft has created a library for .NET Framework-based ASP.NET that enabled a two-way communication between the clients and a server in real time. This library was called SignalR.

不久前,asp.net core 甚至当还不存在时,微软基于 .net framework 框架为asp.net 创建了一个能够在客户端和服务端实时通讯的库,这个库叫做 SignalR.

The goal of this library was to significantly simplify the implementation of standard communication protocols that were normally used for this type of communication. These protocols included WebSocketlong polling and server-sent events.

这个库的目标是简化在这种实时通讯中所用到的通讯协议是写,这些协议包括:WebSocket,长轮询,服务端发送事件。

 

Any of these protocols could be used directly, but none of them was very easy to use on its own. SingnalR made it easy by hiding away all complex implementation details.

With the introduction of ASP.NET Core version 2.1, this library was completely re-written and became a standard part of ASP.NET Core.

这些协议都能被直接使用,但他们都不太容易单独使用,SignalR 隐藏了这些协议的复杂实现使得更简单。

asp.net core 2.1 版本引入了signalr,并进行了重写并作为asp.net core 框架表准的一部分。

 

gRPC is a communication protocol that was originally developed by Google. Unlike SignalR, it doesn’t leverage the usage of existing protocols. It’s a completely self-contained protocol that leverages new features of HTTP/2, which was made generally available in 2015.

gRPC 起初是由谷歌开发的通信协议,和SignalR 不同的是,他没有利用现有存在的协议,他是利用HTTP/2 协议的新功能来建立的一个完全独立的协议。

 

gRPC implementations are available in most of the major programming languages. And, since ASP.NET Core 3.0 has been released, it became an integral part of ASP.NET Core, just like SignalR did before it.

Both of these technologies are extremely useful and they can be used for similar purposes. Whether one is better than the other depends purely on the context.

Today, we will have a look at the pros and cons of each of these technologies in different contexts so you can be better equipped to decide which one to use.

大多数变成语言都有相对应的gRPC 实现,从asp.net core 3.0 开始,grpc 成为了 asp.net core 框架的一部分,就像SignalR之前被引入一样。

这两种技术是非常有用的,他们都是用于相同目的,没有哪一个比另一个更好,而是完全取决于上下文。

今天,我们将讨论这两种技术在不同的环境下的优点和缺点,以便你能更好地去决定使用哪一种技术。

Where SignalR beats gRPC

I have previously outlined the key benefits of using SignalR compared to writing equivalent functionality manually. These can be summarized as follows:

  • All complexity is abstracted away
  • No more need for AJAX
  • Works with any types of client (even pure WebSocket ones)
  • Can be scaled out very easily
  • Used in various parts of ASP.NET out of the box (e.g. in Blazor Server)

The most fundamental benefit of using SignalR is how it abstracts away complex implementations of WebSocket, long polling and server-sent events. For example, while a pure WebSocket implementation may look like this:

 

 

The SignalR equivalent will look like this:

However, this time, we are not comparing SignalR against writing your own implementations manually. We are comparing it specifically against gRPC. So, here are some of the advantages that SignalR has over gRPC:

1. No need to use HTTP/2 (i.e. it works virtually anywhere)

Without HTTP/2, you cannot have gRPC. This means that not all systems can use it. If either the client or the server application you are working on is hosted on a system that doesn’t have HTTP/2 support, there is nothing you can do to make it work.

SignalR, on the other hand, works with basic HTTP. This is why it can be used on almost any system.

Of course, not all systems can use WebSocket protocol. So you may not be able to use SignalR in the most efficient way in some setups. But this is precisely why it has two fallback protocols – server-sent events and long polling.

And the fact that SignalR is not using HTTP/2 doesn’t mean that it is less performant than gRPC. Yes, HTTP/2 provides many performance benefits, such as compressed headers, which increase the performance. And the messaging mechanism used by gRPC, protocol buffer, serializes messages in an efficient way, making the payload as small as possible, which increases the performance even further.

However, SignalR, when used with WebSocket, is comparable in it’s efficiency. First of all, it only uses HTTP header to establish the initial connection, so the header compression provided by HTTP/2 is almost irrelevant. Secondly, it can be configured to use a proprietary binary JSON protocol called MessagePack, which, just like protocol buffer, substantially reduces the payload size and therefore improves the performance.

Performance-wise, SignalR and gRPC are comparable. And both of them beat the standard HTTP-based communication hands down.

2. Events can be initiated by either a client or the server

One limitation of gRPC is that it’s still largely similar to a standard request-response model employed by HTTP. Only the client can initiate events. The server can only respond to those.

There is a work-around. gRPC can use server streaming, where the client sends the initial request and then both the client and the server keep the stream open, so the server can put messages into it when specific action is triggered.

But the implementation of this would have to be fairly clumsy. Streaming calls are not designed to be used like this. You would need to add loops to both the client and the server and you will need to manage the connection status manually. Plus you would need to do it for every individual method that needs to communicate both ways.

With SignalR, on the other hand, all you have to do from the client is send the initial connection request. After this, both the client and the server can send messages to each other by using any of each other’s endpoints. All you have to do is add methods on the server side and add named event listeners on the client side. The connection can remain open indefinitely. SignalR library itself will manage the connection status for you by sending heartbeats at regular intervals and by attempting to reconnect automatically if the connection is broken.

And, just like gRPC, SignalR is fully capable of streaming real time data both to and from the server.

3. No need to write any communication contracts and generate code from them

To enable gRPC communication, you will need to write a proto file that would contain definitions of the gRPC services and all the remote procedures on these services that clients will be able to call. Once this is done, you will need to run a language-specific tool to generate code that would correspond with these definitions. And only then you can start writing the actual logic.

With SignalR, you don’t have to do any of this. All you need to do is write any arbitrary method definitions in your server-side app and write named message handlers on your client.

Of course, this doesn’t come without its own potential issues. For example, you need to be extra careful that the method names are spelled the same on both the client and the server. But nevertheless, not having to write an explicitly defined contract and not having to rely on various tools to generate a code based on this contract substantially speeds up the development process.

Where gRPC beats SignalR

Even though SignalR has its advantages over gRPC, the latter would be a better solution in certain situations. Here is the areas where gRPC has an edge over SignalR.

1. Much easier API versioning

Even though, when you are using gRPC, you have to write an explicit contract between the client and the server, it’s not always a disadvantage. For example, the way proto format has been designed allows you to easily apply API versioning.

When defining a structure of messages in a proto file, you will be required to give each of your fields a unique integer number. This would look like this:

And this mechanism is what makes API versioning easy. Let’s imagine a scenario which will help us to see why is it so.

In the first version of your gRPC service, you have a message definition that contains two fields as per the above screenshot – request_id and payload_collection. These fields have been assigned numbers 1 and 2 respectively. Now, for our second version, we have decided to add a new field, timestamp, and assign number 3 to it.

As long as we haven’t modified any of the fields with the existing numbers, the clients that haven’t received this update will still work with the new message definition. If this is a definition of a response object that server sends back to the client, the client will simply ignore the new field, as a field with number 3 is not outlined in its own proto definition. If this was a request object, then the client would populate the first two fields and the field with number 3 would be given a default value on the server-side.

In either case, both the client and the server will still work. The key is not to modify the fields with the existing numbers. Otherwise things may break.

SignalR doesn’t have any of this. Of course, there is nothing that stops you from implementing your own API versioning mechanism that is similar to this. But with gRPC, you already have such a mechanism in place, so you won’t have to re-invent the wheel.

2. Libraries available in pretty much any language

Even though SignalR is open source, it is still Microsoft’s proprietary technology. And this is why SignalR server can only be written in Microsoft’s own back-end languages (primarily C#, although using F# is also supported).

SignalR clients can also be written only in a limited number of languages. At the time of writing, only .NET, JavaScript and Java clients were supported. Of course, you can write your own client in any language by using pure WebSocket, but you will loose all the benefits of using SignalR if you’ll choose to do it this way.

gRPC, on the other hand, is an open standard. And this is why it is available on many popular languages. This applies to both the client and the server.

3. Easier to apply in microservice architecture

Another area where gRPC beats SignalR hands-down is communication between microservices and containers.

More and more organizations are getting rid of large monolithic apps by splitting them up into smaller components that can be executed and updated individually. However, these components still form a large distributed application. And this is why there needs to be an efficient mechanism in place for them to communicate with each other.

Various forms of remote procedure call (RPC) mechanisms were traditionally used for this purpose. They tend to be more efficient than HTTP, as they don’t have as much data in the headers. Also, they don’t have to adhere to outdated common standards and can be completely proprietary. Azure Service Fabric Remoting mechanism is an example of this.

gRPC eliminated the need to use proprietary RPC mechanisms for different types of technologies. It’s an open standard, so any system can use it. And it’s highly efficient, because it’s running on top of HTTP/2.

SignalR, on the other hand, wouldn’t be efficient enough to get microservices to communicate with each other. Even though it allows you to write code that looks like the client and the server are calling each other’s methods remotely, this is not what happens under the hood. Instead, a persistent connection is established between the client and the server. And the connection is maintained by sending small heartbeat messages both ways.

If you have a distributed application with a large number of moving parts, imagine how much bandwidth would be used if all individual components opened a number of persistent connections to communicate with each other. With gRPC, on the other hand, any data is exchanged only when such exchange is needed. The only time you would need any long-lasting connection is when you use streams. But even then you would close the stream once you transfer all the data through.

Conclusion

Both SignalR and gRPC are great communication mechanisms that every Microsoft-stack software developer should learn. And neither is better than the other. There are just specific scenarios that favor the usage of a particular one.

For example, if you need to build something where the server regularly communicates with the client, SignalR would be better. If, on the other hand, you are building a large distributed application with many moving parts, gRPC would be a better mechanism for those parts to communicate with one another.

非特殊说明,本文版权归 陈新 所有,转载请注明出处.
本文标题:asp.net core signalr vs grpc
(12)
(0)
微信扫一扫
支付宝扫一扫
写作不易,如果本文对你所有帮助,扫码请我喝杯饮料可以吗?
评论列表(0条)
还没有任何评论,快来发表你的看法吧!
{{item.userInfo.nickName}}{{item.userInfo.isBlogger?"(博主)":""}}
{{getUserType(item.userInfo.userType)}} {{formatCommentTime(item.commentDate)}}
回复
{{replyItem.userInfo.nickName}}{{replyItem.userInfo.isBlogger?"(博主)":""}}
@{{replyItem.reply.userInfo.nickName+":"}}
{{getUserType(replyItem.userInfo.userType)}} {{formatCommentTime(replyItem.commentDate)}}
回复
正在加载评论列表... 已经到底啦~~~
文章归档 网站地图 闽ICP备2020021271号-1 百度统计