zooland 新開源的RPC項目,希望大家在開發的微服務的時候多一種選擇,讓微服務開發簡單,並且容易上手。

来源:https://www.cnblogs.com/jweiswu/archive/2018/07/31/zooland.html
-Advertisement-
Play Games

zooland 我叫它動物園地,一個構思很長時間的一個項目。起初只是覺得各種通信框架都封裝的很好了,但是就是差些相容,防錯,高可用。同時在使用上,不希望有多餘的代碼,像普通介面一樣使用就可以了。 基於這些想法,看了很多資料,有了很多啟發;也開發出這樣一個版本,而且也在實際項目中應用起來了,算是小有成 ...


zooland 我叫它動物園地,一個構思很長時間的一個項目。起初只是覺得各種通信框架都封裝的很好了,但是就是差些相容,防錯,高可用。同時在使用上,不希望有多餘的代碼,像普通介面一樣使用就可以了。

基於這些想法,看了很多資料,有了很多啟發;也開發出這樣一個版本,而且也在實際項目中應用起來了,算是小有成就吧。但同時深知一個人的力量有限,希望得到整個社區幫助。幫助我完善它,讓它成為.net 平臺下一個不錯的選擇。

首先,介紹一下這個項目。

項目中沒有實現自己的通信層代碼,因為大廠為我們提供了 比如 thrift、grpc、HTTP、wcf、akka.net、netty.net 等等。

其次既然我都支持了這麼多種通信框架了,那麼他們在同一個項目中進行混用也是可以的。比如你的.net 項目內使用wcf 或 netty通信,這個時候elk或者搜索引擎為你提供了thrift的介面,那麼用這個框架會是不錯的選擇。

項目中 主要的精力放在了LoadBalace、調用錯誤隔離、重試、緩存,多種形式的Cluster、以及如何以最簡單的方式讓隊員通過直鏈的方式進行開發。

服務註冊和發現,現在還沒有很好的實現想法,希望社區能幫忙,當然有介面性能監控的能手,和調用鏈或熟悉dapper的能加入我,那麼我會更高興。

ioc上無賴選擇了Spring.net,希望spring.net 早點出.net core版本的,這樣我會很省心的去開發.net core 版的zooland;

autofac 我正在嘗試,希望能作為spring.net 的替代版本,可能是因為習慣了spring.net 感覺autofac我增加我的配置文檔的數量,這是我不喜歡的

ioc 我也不喜歡對框架內部侵入太多的,它會讓我覺得我的架構很臃腫,讓我覺得ioc 不過是虛擬工廠來生產真正的實例,而且還要讓我到處引用虛擬工廠的類庫,想想都覺得煩。

計劃還是有的:

準備在框架層加入過濾器,這樣CAS 做分散式事務的開源框架也能整合進來,緩存也能獨立成一個Filter 的實現

比較麻煩的是調用鏈,需要埋點,由於支持了多種通信框架,而基於dapper論文的追蹤訪問鏈條的方式,可能導致有些通信框架不支持,比較麻煩,一直在想,tcp/ip協議是不是也有想http一樣的,可以在訪問header裡面添加調用鏈的內容。也希望社區有好的辦法。當然能推動大廠們提供的通信框架的改進,那就更好了。

有代碼有真相,下麵是用於調用的代碼,對使用來說絕對easy

static void Main(string[] args)
        {
            var context = ContextRegistry.GetContext();
            var helloServiceThrift = context.GetObject<RpcContractThrift.IHelloService>();
            var helloServiceGrpc = context.GetObject<RpcContractGrpc.IHelloService>();
            var helloServiceWcf = context.GetObject<RpcContractWcf.IHelloService>();
            var helloServiceHttp = context.GetObject<RpcContractHttp.IHelloService>();
            var helloServiceAkka = context.GetObject<RpcContractAkka.IHelloService>();
            var helloServiceRemoting = context.GetObject<RpcContractRemoting.IHelloService>();
            while (true)
            {
                Console.WriteLine("請選擇:wcf | grpc | thrift | http | akka | remoting");
                var mode = Console.ReadLine().ToLower();
                switch (mode)
                {
                    case "wcf":
                        CallWhile((helloword) => { WcfHello(helloServiceWcf, helloword); });
                        break;
                    case "grpc":
                        CallWhile((helloword) => { GrpcHello(helloServiceGrpc, helloword); });
                        break;
                    case "thrift":
                        CallWhile((helloword) => { ThriftHello(helloServiceThrift, helloword); });
                        break;
                    case "http":
                        CallWhile((helloword) => { HttpHello(helloServiceHttp, helloword); });
                        break;
                    case "akka":
                        CallWhile((helloword) => { AkkaHello(helloServiceAkka, helloword); });
                        break;
                    case "remoting":
                        CallWhile((helloword) => { RemotingHello(helloServiceRemoting, helloword); });
                        break;
                    case "all":
                        for (int i = 0; i < 3; i++)
                        {
                            Task.Run(() =>
                            {
                                try
                                {
                                    WcfHello(helloServiceWcf);
                                }
                                catch (Exception ex)
                                {
                                    throw ex;
                                }
                            });
                            Task.Run(() =>
                            {
                                try
                                {
                                    GrpcHello(helloServiceGrpc);
                                }
                                catch (Exception ex)
                                {
                                    throw ex;
                                }

                            });
                            Task.Run(() =>
                            {
                                try
                                {
                                    ThriftHello(helloServiceThrift);
                                }
                                catch (Exception ex)
                                {
                                    throw ex;
                                }

                            });
                            Task.Run(() =>
                            {
                                try
                                {
                                    HttpHello(helloServiceHttp);
                                }
                                catch (Exception ex)
                                {

                                    throw ex;
                                }

                            });
                            Task.Run(() =>
                            {

                                try
                                {
                                    AkkaHello(helloServiceAkka);
                                }
                                catch (Exception ex)
                                {

                                    throw ex;
                                }
                            });
                        }
                        break;
                }

                if (mode == "end")
                {
                    break;
                }
            }

        }
        private static void ThriftHello(RpcContractThrift.IHelloService helloServiceThrift, string helloword = "world")
        {
            var callNameVoid = helloServiceThrift.CallNameVoid();
            Console.WriteLine(callNameVoid);
            helloServiceThrift.CallName(helloword);
            Console.WriteLine("CallName called");
            helloServiceThrift.CallVoid();
            Console.WriteLine("CallVoid called");
            var hello = helloServiceThrift.Hello(helloword);
            Console.WriteLine(hello);
            var helloResult = helloServiceThrift.SayHello(helloword + "perfect world");
            Console.WriteLine($"{helloResult.Name},{helloResult.Gender},{helloResult.Head}");
            helloResult.Name = helloword + "show perfect world";
            var showResult = helloServiceThrift.ShowHello(helloResult);
            Console.WriteLine(showResult);
        }
        private static void GrpcHello(RpcContractGrpc.IHelloService helloServiceGrpc, string helloword = "world")
        {
            var callNameVoid = helloServiceGrpc.CallNameVoid(new RpcContractGrpc.Void());
            Console.WriteLine(callNameVoid);
            helloServiceGrpc.CallName(new RpcContractGrpc.NameResult { Name = helloword });
            Console.WriteLine("CallName called");
            helloServiceGrpc.CallVoid(new RpcContractGrpc.Void());
            Console.WriteLine("CallVoid called");
            var hello = helloServiceGrpc.Hello(new RpcContractGrpc.NameResult { Name = helloword });
            Console.WriteLine(hello.Name);
            var helloResult = helloServiceGrpc.SayHello(new RpcContractGrpc.NameResult { Name = $"{helloword} perfect world" });
            Console.WriteLine($"{helloResult.Name},{helloResult.Gender},{helloResult.Head}");
            helloResult.Name = helloword + "show perfect world";
            var showResult = helloServiceGrpc.ShowHello(helloResult);
            Console.WriteLine(showResult.Name);
        }
        private static void WcfHello(RpcContractWcf.IHelloService helloServiceWcf, string helloword = "world")
        {
            var callNameVoid = helloServiceWcf.CallNameVoid();
            Console.WriteLine(callNameVoid);
            helloServiceWcf.CallName(helloword);
            Console.WriteLine("CallName called");
            helloServiceWcf.CallVoid();
            Console.WriteLine("CallVoid called");
            var helloWcf = helloServiceWcf.Hello(helloword);
            Console.WriteLine(helloWcf);
            var helloResultWcf = helloServiceWcf.SayHello($"{helloword} perfect world");
            Console.WriteLine($"{helloResultWcf.Name},{helloResultWcf.Gender},{helloResultWcf.Head}");
            helloResultWcf.Name = helloword + "show perfect world";
            var showResultWcf = helloServiceWcf.ShowHello(helloResultWcf);
            Console.WriteLine(showResultWcf);
        }
        private static void HttpHello(RpcContractHttp.IHelloService helloServiceHttp, string helloword = "world")
        {
            var callNameVoid = helloServiceHttp.CallNameVoid();
            Console.WriteLine(callNameVoid);
            helloServiceHttp.CallName(helloword);
            Console.WriteLine("CallName called");
            helloServiceHttp.CallVoid();
            Console.WriteLine("CallVoid called");
            var helloWcf = helloServiceHttp.Hello(helloword);
            Console.WriteLine(helloWcf);
            var helloResultWcf = helloServiceHttp.SayHello($"{helloword} perfect world");
            Console.WriteLine($"{helloResultWcf.Name},{helloResultWcf.Gender},{helloResultWcf.Head}");
            helloResultWcf.Name = helloword + "show perfect world";
            var showResultWcf = helloServiceHttp.ShowHello(helloResultWcf);
            Console.WriteLine(showResultWcf);
        }
        private static void AkkaHello(RpcContractAkka.IHelloService akkaServiceHttp,string helloword = "world")
        {
            var callNameVoid = akkaServiceHttp.CallNameVoid();
            Console.WriteLine(callNameVoid);
            akkaServiceHttp.CallName(new RpcContractAkka.NameResult { Name = helloword });
            Console.WriteLine("CallName called");
            akkaServiceHttp.CallVoid();
            Console.WriteLine("CallVoid called");
            var hello = akkaServiceHttp.Hello(new RpcContractAkka.NameResult { Name = helloword });
            Console.WriteLine(hello.Name);
            var helloResult = akkaServiceHttp.SayHello(new RpcContractAkka.NameResult { Name = $"{helloword} perfect world" });
            Console.WriteLine($"{helloResult.Name},{helloResult.Gender},{helloResult.Head}");
            helloResult.Name = helloword + "show perfect world";
            var showResultWcf = akkaServiceHttp.ShowHello(helloResult);
            Console.WriteLine(showResultWcf.Name);
            
        }
        private static void RemotingHello(RpcContractRemoting.IHelloService remotingServiceHttp, string helloword = "world")
        {
            var callNameVoid = remotingServiceHttp.CallNameVoid();
            Console.WriteLine(callNameVoid);
            remotingServiceHttp.CallName(helloword);
            Console.WriteLine("CallName called");
            remotingServiceHttp.CallVoid();
            Console.WriteLine("CallVoid called");
            var hello = remotingServiceHttp.Hello(helloword);
            Console.WriteLine(hello);
            var helloResult = remotingServiceHttp.SayHello($"{helloword} perfect world");
            Console.WriteLine($"{helloResult.Name},{helloResult.Gender},{helloResult.Head}");
            helloResult.Name = helloword + "show perfect world";
            var showResult = remotingServiceHttp.ShowHello(helloResult);
            Console.WriteLine(showResult);

        }

        private static void CallWhile(Action<string> map)
        {
            var helloword = "world";
            while (true)
            {
                try
                {
                    map(helloword);
                    var mode = Console.ReadLine().ToLower();
                    helloword = mode;
                    if (helloword == "end")
                    {
                        break;
                    }
                }
                catch (Exception ex)
                {
                    Console.WriteLine(ex.StackTrace);
                }
            }
        }
    }

目前只支持了spring.net ,有autofac的高手,歡迎加入

希望為一部分使用.net framework 的WCF做通信層框架,轉微服務架構,作為一個不錯的並且平滑的升級選擇。

新技術不要怕不穩定,源碼都有了,而且框架結構這麼簡單,大膽用,有問題了,可以聯繫技術支持啥。

奉上項目開源地址:

https://github.com/wutao0315/zooland

現在還沒有搞明白怎麼編譯好一個版本怎麼弄到nuget上,而且版本管理經驗也欠缺,也需要依賴社區了。

聯繫作者

mail:[email protected]

qq:1164636434

想加入我的,郵件給我吧,歡迎每一個熱愛編程的同學。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • title: 網路流 date: 2018 07 31 22:01:22 tags: acm 演算法 網路流 概述 這篇博客主要是關於網路流的一些基本的知識點以及相應的模板,, 算了,,,還是先貼大佬的博客,,,暑假在補一下。。。。QAQ <! more 網路流 tan90,,,,,,, 習題 Pro ...
  • You are climbing a stair case. It takes n steps to reach to the top. Each time you can either climb 1 or 2 steps. In how many distinct ways can you cl ...
  • 就像有知覺的生物一樣,程式必須在執行的過程中控制它的世界,並做出選擇。java使用執行流程式控制制語句做出選擇。 1、選擇語句 if switch in從case中無法匹配到,如果有default會執行,default可以在任何位置;如果default後無break,會繼續向下執行,否則跳出。 2、迴圈 ...
  • 1. Win7下安裝CodeBlocks: 下載帶有mingw的CodeBlocks:http://www.codeblocks.org/downloads/26#windows 運行所下載程式: 點擊next : 同意安裝協議,點擊 I agree : 選擇預設完全安裝,點擊next : 選擇安裝 ...
  • Given two binary strings, return their sum (also a binary string). The input strings are both non-empty and contains only characters 1 or 0. Example 1 ...
  • #!/usr/bin/env python# -*- coding: utf-8 -*-# Author:Caesar yangname = 'yuE yu \tqing is {my} net {name}'# print(name.capitalize())#首字母轉為大寫print(name. ...
  • public static void main(String[] args) {//菱形實心時,數量為1,2,3...... int a = 10;//菱形的邊為10個 * for (int i = 1; i <= a; i++) { for (int j = 1; j <= a - i; j++) ...
  • 導讀 有的初學者對於如何開始學習C#感到無從下手,不知看哪些書,或者是看什麼視頻,沒有目的性,這樣就會影響學習效率,也會影響學習的熱情。最重要的是很多同學學之前問很多和學習無關的問題,比如:C#是不是不如JAVA好?C#有前途嗎?等等。博主認為現在觀望還不如現在學習。本篇文章介紹了博主自己總結的C# ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...