SpringBoot zk dubbo個人分析

2021-08-29 18:02:40 字數 1174 閱讀 1702

單機模式:

# the number of milliseconds of each tick  心跳間隔 毫秒每次

ticktime=2000

# the number of ticks that the initial

# synchronization phase can take

initlimit=10

# the number of ticks that can pass between

# sending a request and getting anacknowledgement

synclimit=5

# the directory where the snapshot isstored.  //映象資料位置

datadir=f:\wds\zookeeper-3.4.8\\data\\zookeeper

#日誌位置

datalogdir=f:\wds\zookeeper-3.4.8\\logs\\zookeeper

# the port at which the clients willconnect  客戶端連線的埠

clientport=2181

server.1=127.0.0.1:2888:3888.

2.新建2個工程,springprovider(生產提供者)、springconsumer(消費者)

springprovider(生產提供者)中暴露服務介面,例如:

## dubbo 服務提供者配置

spring.dubbo.registry.address=zookeeper:

spring.dubbo.protocol.name=dubbo

spring.dubbo.protocol.port=20880

spring.dubbo.scan=com.springboot.demodu.service

但是如果是用spring的話

,則在xml檔案中加

在消費者中則寫

在springconsumer(消費者)中用註解的形式呼叫服務介面

@reference

userservice userservice;

分庫分表個人思路

一般業界,對訂單資料的分庫分表,有兩類思路 按照訂單號來切分 按照使用者id來切分。方案一 按照訂單號來做 hash分散訂單資料 把訂單號看作是乙個字串,做 hash,分散到多個伺服器去。具體到哪個庫 哪個表儲存資料呢?訂單號裡面的數字來記錄著。如果要查詢某使用者的所有訂單呢?由於是根據訂單號來分散...

係分專案 個人小結

負責擔當需求分析 互動設計部分。psp2.1 小時 nikkariaoe 計畫5 估計這個任務需要多少時間 5開發78 需求分析 包括學習新技術 24 生成設計文件 20 設計複審 和同事審核設計文件 10 規範 為目前的開發制定合適的規範 0 具體設計 24 具體編碼 0 複審 0 測試 自我測試...

二分查詢 個人筆記

在學習mooc資料結構 陳越 的有關 樹 的部分時,作為前導知識,同時也是一直不是很懂實現方法的二分查詢,今天借助洛谷題單,簡單加深了一下對二分查詢的理解以及c 相關庫的使用方法,特此記錄 洛谷p2249 深基13.例1 查詢 給出一組排好序的數列,詢問其中元素位置.資料範圍較大,普通查詢方式會tl...