91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java開源區塊鏈jdchain怎么部署

發布時間:2022-02-24 16:34:09 來源:億速云 閱讀:181 作者:iii 欄目:開發技術

今天小編給大家分享一下java開源區塊鏈jdchain怎么部署的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。

    前言

    jdchain是京東數科開源的區塊鏈平臺,目標是實現一個面向企業應用場景的通用區塊鏈框架系統,能夠作為企業級基礎設施,為業務創新提供高效、靈活和安全的解決方案。

    之所以選擇jdchain研究是因為jdchain是為數不多的底層也是采用java實現的一個區塊鏈平臺

    部署組件

    • peer:區塊鏈主節點,參與共識、賬本操作等

    • gateway:與Peer節點通信,負責區塊鏈瀏覽器及消息傳遞

    • 客戶端:采用SDK和網關鏈接,通過網關發起交易

    傻瓜式部署

    獲取部署包

    有兩種途徑可以拿到部署包,一、直接從官網下載.二、從github上拉源碼,然后自己構建,在deployment目錄下會生成部署包,自己構建的需要注意,如果是在Windows系統上構建的包,包里的啟動腳本在linux系統下運行會有轉義字符的問題,需要在assembly.xml里設置lineEnding為unix

    效果預覽

    區塊鏈部署工具

    java開源區塊鏈jdchain怎么部署

    區塊鏈瀏覽器

    java開源區塊鏈jdchain怎么部署

    部署遇到的問題:

    官方文檔算比較詳細,但是很多細節沒有寫明,一般體驗和開發時部署的環境比較簡單,可能在一個主機上部署4個節點的peer。這個時候端口的編排要非常注意,因為jdchain目前的共識算法采用的開源的bftsmart實現,共識端口在同一臺主機上不能連續,不然就會端口沖突。博主就遇到了這個問題,下面是詳細排錯過程:采用SDK創建用戶時拋如下異常,網關可以正常連接,秘鑰認證沒有問題:

    Caused by: java.lang.IndexOutOfBoundsException: The accessing index is out of BytesSlice's bounds!
    	at com.jd.blockchain.utils.io.BytesSlice.checkBoundary(BytesSlice.java:174)
    	at com.jd.blockchain.utils.io.BytesSlice.getInt(BytesSlice.java:97)
    	at com.jd.blockchain.utils.io.BytesSlice.getInt(BytesSlice.java:86)
    	at com.jd.blockchain.binaryproto.impl.HeaderEncoder.resolveCode(HeaderEncoder.java:71)
    	at com.jd.blockchain.binaryproto.BinaryProtocol.decode(BinaryProtocol.java:41)
    	at com.jd.blockchain.sdk.converters.BinarySerializeResponseConverter.getResponse(BinarySerializeResponseConverter.java:33)
    	at com.jd.blockchain.utils.http.agent.HttpServiceAgent.invoke(HttpServiceAgent.java:587)
    	... 7 more

    網關里的異常

    11:57:05.537 ERROR com.jd.blockchain.gateway.web.GatewayGlobalExceptionHandler 34 json - Unexpected exception occurred! --[RequestURL=[POST] http://192.168.1.190:8081/rpc/tx][class java.lang.IllegalStateException]Returned object not currently part of this pool java.lang.IllegalStateException: Returned object not currently part of this pool
    	at org.apache.commons.pool2.impl.GenericObjectPool.returnObject(GenericObjectPool.java:530) ~[commons-pool2-2.5.0.jar!/:2.5.0]
    	at com.jd.blockchain.consensus.bftsmart.client.BftsmartMessageService.sendOrderedMessage(BftsmartMessageService.java:46) ~[consensus-bftsmart-1.1.1.RELEASE.jar!/:1.1.1.RELEASE]
    	at com.jd.blockchain.consensus.bftsmart.client.BftsmartMessageService.sendOrdered(BftsmartMessageService.java:22) ~[consensus-bftsmart-1.1.1.RELEASE.jar!/:1.1.1.RELEASE]
    	at com.jd.blockchain.sdk.service.NodeSigningAppender.process(NodeSigningAppender.java:84) ~[sdk-base-1.1.1.RELEASE.jar!/:1.1.1.RELEASE]
    	at com.jd.blockchain.sdk.service.PeerServiceProxy.process(PeerServiceProxy.java:89) ~[sdk-base-1.1.1.RELEASE.jar!/:1.1.1.RELEASE]
    	at com.jd.blockchain.gateway.web.TxProcessingController.process(TxProcessingController.java:70) ~[gateway-1.1.1.RELEASE.jar!/:1.1.1.RELEASE]
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_231]
    	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_231]
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_231]
    	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_231]

    最終查明異常是由于網關里創建AsynchServiceProxy失敗導致的,這部分實現采用了Apache-commons-pool2。實現如下:

    public class BftsmartPeerProxyFactory extends BasePooledObjectFactory{
        private BftsmartClientSettings bftsmartClientSettings;
        private int gatewayId;
        private AtomicInteger index = new AtomicInteger(1);
        public BftsmartPeerProxyFactory(BftsmartClientSettings bftsmartClientSettings, int gatewayId) {
            this.bftsmartClientSettings = bftsmartClientSettings;
            this.gatewayId = gatewayId;
        }
        @Override
        public AsynchServiceProxy create() throws Exception {
            BftsmartTopology topology = BinarySerializeUtils.deserialize(bftsmartClientSettings.getTopology());
            MemoryBasedViewStorage viewStorage = new MemoryBasedViewStorage(topology.getView());
            TOMConfiguration tomConfiguration = BinarySerializeUtils.deserialize(bftsmartClientSettings.getTomConfig());
            //every proxy client has unique id;
            tomConfiguration.setProcessId(gatewayId + index.getAndIncrement());
            AsynchServiceProxy peerProxy = new AsynchServiceProxy(tomConfiguration, viewStorage);
            return peerProxy;
        }
        @Override
        public PooledObjectwrap(AsynchServiceProxy asynchServiceProxy) {
            return new DefaultPooledObject<>(asynchServiceProxy);
        }
    }

    這個代碼BinarySerializeUtils.deserialize(bftsmartClientSettings.getTopology())返回的是null,沒有正確拿到Bftsmart的網絡拓撲。進而查看peer節點,發現只有節點0成功了,其他都拋如下異常,初步判斷bftsmart的副本服務因為端口占用啟動失敗了:

    11:36:48.479 ERROR bftsmart.tom.ServiceReplica 247 init - null java.net.BindException: 地址已在使用
    	at sun.nio.ch.Net.bind0(Native Method) ~[?:1.8.0_231]
    	at sun.nio.ch.Net.bind(Net.java:433) ~[?:1.8.0_231]
    	at sun.nio.ch.Net.bind(Net.java:425) ~[?:1.8.0_231]
    	at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:223) ~[?:1.8.0_231]
    	at io.netty.channel.socket.nio.NioServerSocketChannel.doBind(NioServerSocketChannel.java:130) ~[netty-all-4.1.29.Final.jar:4.1.29.Final]
    	at io.netty.channel.AbstractChannel$AbstractUnsafe.bind(AbstractChannel.java:558) ~[netty-all-4.1.29.Final.jar:4.1.29.Final]
    	at io.netty.channel.DefaultChannelPipeline$HeadContext.bind(DefaultChannelPipeline.java:1358) ~[netty-all-4.1.29.Final.jar:4.1.29.Final]
    	at io.netty.channel.AbstractChannelHandlerContext.invokeBind(AbstractChannelHandlerContext.java:501) ~[netty-all-4.1.29.Final.jar:4.1.29.Final]
    	at io.netty.channel.AbstractChannelHandlerContext.bind(AbstractChannelHandlerContext.java:486) ~[netty-all-4.1.29.Final.jar:4.1.29.Final]
    	at io.netty.channel.DefaultChannelPipeline.bind(DefaultChannelPipeline.java:1019) ~[netty-all-4.1.29.Final.jar:4.1.29.Final]
    	at io.netty.channel.AbstractChannel.bind(AbstractChannel.java:254) ~[netty-all-4.1.29.Final.jar:4.1.29.Final]
    	at io.netty.bootstrap.AbstractBootstrap$2.run(AbstractBootstrap.java:366) ~[netty-all-4.1.29.Final.jar:4.1.29.Final]
    	at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:163) ~[netty-all-4.1.29.Final.jar:4.1.29.Final]
    	at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:404) ~[netty-all-4.1.29.Final.jar:4.1.29.Final]
    	at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:446) ~[netty-all-4.1.29.Final.jar:4.1.29.Final]
    	at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:884) ~[netty-all-4.1.29.Final.jar:4.1.29.Final]
    	at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) ~[netty-all-4.1.29.Final.jar:4.1.29.Final]
    	at java.lang.Thread.run(Thread.java:748) ~[?:1.8.0_231]

    從bftsmart官方文檔得知,如果在同一個主機運行,不能使用順序的端口號,即一開始編排的peer的共識端口,6000、6001、6002、6003是不行的,原因如下:如果在同一臺計算機(127.0.0.1)中部署/執行了某些(或全部)副本,config/hosts.config則不能具有順序的端口號(例如10000、10001、10002、10003)。這是因為每個副本都綁定了兩個端口:一個用于接收來自客戶端的消息,另一個用于接收來自其他副本的消息(通過獲取下一個端口號選擇) 。更一般而言,如果為副本R分配了端口號P,它將嘗試將端口P(綁定到接收到的客戶端請求)和端口P + 1(綁定到其他副本)進行綁定。如果不執行此準則,則副本可能無法綁定所有需要的端口。

    以上就是“java開源區塊鏈jdchain怎么部署”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    AI

    葫芦岛市| 安仁县| 杨浦区| 湛江市| 应用必备| 耿马| 宜州市| 二连浩特市| 绩溪县| 柏乡县| 云梦县| 辉南县| 临桂县| 阜康市| 白城市| 塔城市| 靖宇县| 新巴尔虎左旗| 巴楚县| 锡林郭勒盟| 达州市| 平山县| 土默特左旗| 灵武市| 乃东县| 蒙自县| 大埔区| 呈贡县| 平昌县| 遂川县| 普陀区| 镇安县| 北流市| 海淀区| 两当县| 武穴市| 朝阳市| 麻江县| 伊春市| 康平县| 获嘉县|