主頁 > 資料庫 > redis 6.0 redis-cluster-proxy集群代理嘗試

redis 6.0 redis-cluster-proxy集群代理嘗試

2020-09-11 06:12:01 資料庫

伴隨著Redis6.0的發布,作為最令人怦然心動的特性之一,Redis官方同時推出Redis集群的proxy了:redis-cluster-proxy,https://github.com/RedisLabs/redis-cluster-proxy 相比從前訪問Redis集群時需要制定集群中所有的IP節點相比: 1,redis的redis-cluster-proxy實作了redis cluster集群節點的代理(屏蔽),類似于VIP但又比VIP簡單,客戶端不需要知道集群中的具體節點個數和主從身份,可以直接通過代理訪問集群, 2,不僅如此,還是具有一些非常實用的改進,比如在redis集群模式下,增加了對multiple操作的支持,跨slot操作等等(有點關系資料庫的分庫分表中間件的感覺),
redis-cluster-proxy主要特性 以下資訊來自于官方的說明: redis-cluster-proxy是Redis集群的代理,Redis能夠在基于自動故障轉移和分片的集群模式下運行, 這種特殊模式(指Redis集群模式)需要使用特殊的客戶端來理解集群協議:通過代理,集群被抽象了出來,可以實作像單實體一樣實作redis集群的訪問, Redis集群代理是多執行緒的,默認情況下,它目前使用多路復用通信模型,這樣每個執行緒都有自己的集群連接,所有屬于執行緒本身的客戶端都可以共享該連接, 無論如何,在某些特殊情況下(多事務或阻塞命令),多路復用被禁用,客戶端將擁有自己的集群連接, 通過這種方式,只發送簡單命令(比如get和set)的客戶端將不需要一組到Redis集群的私有連接,
Redis集群代理的主要特點如下: 1,自動化路由:每個查詢被自動路由到集群的正確節點 2,多執行緒(它目前使用多路復用通信模型,這樣每個執行緒都有自己的集群連接) 3,支持多路復用和私有連接模型 4,即使在多路復用背景關系中,查詢執行和應答順序也是有保證的 5,在請求/重定向錯誤后自動更新集群配置:當這些型別的錯誤發生在應答中時,代理通過獲取集群的更新配置并重新映射所有slot,自動更新集群的內部表示,     所有查詢將在更新完成后重新執行,因此,從客戶機的角度來看,一切都將正常運行(客戶機不會收到ASK|重定向錯誤:在更新集群配置之后,它們將直接收到預期的結果), 6,跨slot/跨節點查詢:支持許多涉及屬于不同slot(甚至不同集群節點)的多個鍵的命令,     這些命令將把查詢分成多個查詢,這些查詢將被路由到不同的槽/節點,     這些命令的應答處理是特定于命令的,有些命令,如MGET,將合并所有應答,就好像它們是單個應答一樣,     其他命令(如MSET或DEL)將匯總所有應答的結果,由于這些查詢實際上破壞了命令的原子性,所以它們的使用是可選的(默認情況下禁用), 7,一些沒有特定節點/slot的命令(如DBSIZE)被傳遞給所有節點,為了給出所有應答中包含的所有值的和,應答將被映射簡化, 8,可用于執行某些特定于代理的操作的附加代理命令,

Redis 6.0以及redis-cluster-proxy gcc 5+編譯環境依賴 Redis 6.0以及redis-cluster-proxy的編譯依賴于gcc 5+,centos 7上的默認gcc版本是4.+,無法滿足編譯要求,在編譯時候會出現類似如下的錯誤 server.h:1022:5: error: expected specifier-qualifier-list before '_Atomic
類似錯誤參考這里:https://wanghenshui.github.io/2019/12/31/redis-ce 解決方案參考,筆者環境為centos7,為此折騰了小半天
1,https://stackoverflow.com/questions/55345373/how-to-install-gcc-g-8-on-centos,測驗可行 2,https://blog.csdn.net/displayMessage/article/details/85602701 gcc原始碼包編譯安裝,120MB的原始碼包,有人說是需要40分鐘,筆者機器上編譯超過了1個小時仍未果,因此采用的是上一種方法

 

Redis集群環境搭建 測驗環境拓撲圖,如下所示,基于docker的3主3從6個節點的redis cluster集群

redis cluster 集群資訊,參考之前的文章,redis cluster 自動化安裝、擴容和縮容,快速實作Redis集群搭建

  redis-cluster-proxy 安裝 安裝步驟: 1,git clone https://github.com/artix75/redis-cluster-proxy
   cd redis-cluster-proxy 2,解決gcc版本依賴問題,筆者折騰了好久,gcc 5.0+ 原始碼包編譯安裝花了一個多小時未果,
 后來嘗試如下這種方法可行,參考https://stackoverflow.com/questions/55345373/how-to-install-gcc-g-8-on-centos
On CentOS 7, you can install GCC 8 from Developer Toolset. First you need to enable the Software Collections repository:
yum install centos-release-scl

Then you can install GCC 8 and its C++ compiler:
yum install devtoolset-8-gcc devtoolset-8-gcc-c++

To switch to a shell which defaults gcc and g++ to this GCC version, use:
scl enable devtoolset-8 -- bash

You need to wrap all commands under the scl call, so that the process environment changes performed by this command affect all subshells. For example, you could use the scl command to invoke a shell script that performs the required actions.
3,make PREFIX=/usr/local/redis_cluster_proxy install    4,關于rediscluster-proxy組態檔 啟動的時候可以直接在命令列中指定引數,但最好是使用組態檔模式啟動,組態檔中的節點如下,很清爽,注釋也很清晰,簡單備注了一下,期待發現更多的新特性,
# Redis Cluster Proxy configuration file example.
# 如果指定以組態檔的方式啟動,必須指定-c 引數
# ./redis-cluster-proxy -c /path/to/proxy.conf
 

################################## INCLUDES ###################################
# Include one or more other config files here.  Include files can include other files.
# 指定組態檔的路徑
# If instead you are interested in using includes to override configuration options, it is better to use include as the last line.
# include /path/to/local.conf
# include /path/to/other.conf

######################## CLUSTER ENTRY POINT ADDRESS ##########################
# Indicate the entry point address in the same way it can be indicated in the
# redis cluster集群自身節點資訊,這里是3主3從的6個節點,分別是192.168.0.61~192.168.0.66
# redis-cluster-proxy command line arguments.
# Note that it can be overridden by the command line argument itself.
# You can also specify multiple entry-points, by adding more lines, ie:
# cluster 127.0.0.1:7000
# cluster 127.0.0.1:7001
# You can also use the "entry-point" alias instead of cluster, ie:
# entry-point 127.0.0.1:7000
#
# cluster 127.0.0.1:7000
cluster 192.168.0.61:8888
cluster 192.168.0.62:8888
cluster 192.168.0.63:8888
cluster 192.168.0.64:8888
cluster 192.168.0.65:8888
cluster 192.168.0.66:8888


################################### MAIN ######################################
# Set the port used by Redis Cluster Proxy to listen to incoming connections
# redis-cluster-proxy 埠號指定
# from clients (default 7777)
port 7777
 
#  IP地址系結,這里指定為redis-proxy-cluster所在節點的IP地址
# If you want you can bind a single interface, if the bind option is not
# specified all the interfaces will listen for incoming connections.
# You can also bind on multiple interfaces by declaring bind on multiple lines
#
# bind 127.0.0.1
bind 192.168.0.12
 
#  socket 檔案路徑
# Specify the path for the Unix socket that will be used to listen for
# incoming connections. There is no default, so Redis Cluster Proxy won't
# listen on a Unix socket when not specified.
#
# unixsocket /path/to/proxy.socket

# Set the Unix socket file permissions (default 0)
#
# unixsocketperm 760
 
#  執行緒數量
# Set the number of threads.
threads 8

# Set the TCP keep-alive value on the Redis Cluster Proxy's socket
#
# tcpkeepalive 300

# Set the TCP backlog on the Redis Cluster Proxy's socket
#
# tcp-backlog 511

#  連接池資訊
# Size of the connections pool used to provide ready-to-use sockets to
# private connections. The number (size) indicates the number of starting
# connections in the pool.
# Use 0 to disable connections pool at all.
# Every thread will have its pool of ready-to-use connections.
# When the proxy starts, every thread will populate a pool containing
# connections to all the nodes of the cluster.
# Whenever a client needs a private connection, it can take a connection
# from the pool, if available. This will speed-up the client transition from
# the thread's shared connection to its own private connection, since the
# connection from the thread's pool should be already connected and
# ready-to-use. Otherwise, clients with priovate connections must re-connect
# the the nodes of the cluster (this re-connection will act in a 'lazy' way).
#
# connections-pool-size 10

# Minimum number of connections in the the pool. Below this value, the
# thread will start re-spawning connections at the defined rate until
# the pool will be full again.
#
# connections-pool-min-size 10

# Interval in milliseconds used to re-spawn connections in the pool.
# Whenever the number of connections in the pool drops below the minimum
# (see 'connections-pool-min-size' above), the thread will start
# re-spawing connections in the pool, until the pool will be full again.
# New connections will be added at this specified interval.
#
# connections-pool-spawn-every 50

# Number of connections to re-spawn in the pool at every cycle that will
# happen with an interval defined by 'connections-pool-spawn-every' (see above).
#
# connections-pool-spawn-rate 50
 
#  運行模式,一開始最好指定為no,運行時直接列印出來啟動日志或者例外資訊,這樣可以方便地查看啟動例外
#  非常奇怪的是:筆者一開始指定為yes,例外日志輸出到檔案,竟然跟直接列印日志輸出的資訊不一致
# Run Redis Cluster Proxy as a daemon.
daemonize yes
 
#  pid 檔案指定
# If a pid file is specified, the proxy writes it where specified at startup
# and removes it at exit.
#
# When the proxy runs non daemonized, no pid file is created if none is
# specified in the configuration. When the proxy is daemonized, the pid file
# is used even if not specified, defaulting to
# "/var/run/redis-cluster-proxy.pid".
#
# Creating a pid file is best effort: if the proxy is not able to create it
# nothing bad happens, the server will start and run normally.
#
#pidfile /var/run/redis-cluster-proxy.pid


#  日志檔案指定,如果可以正常啟動,強烈建議指定一個輸出日志檔案,所有的運行例外或者錯誤都可以從日志中查找
# Specify the log file name. Also the empty string can be used to force
# Redis Cluster Porxy to log on the standard output. Note that if you use
# standard output for logging but daemonize, logs will be sent to /dev/null
#
#logfile ""
logfile "/usr/local/redis_cluster_proxy/redis_cluster_proxy.log"


#  跨slot操作,這里設定為yes,允許
# Enable cross-slot queries that can use multiple keys belonging to different
# slots or even different nodes.
# WARN: these queries will break the the atomicity deisgn of many Redis
# commands.
# NOTE: cross-slots queries are not supported by all the commands, even if
# this feature is enabled
#
# enable-cross-slot no
enable-cross-slot yes
 
# Maximum number of clients allowed
#
# max-clients 10000
 
# 連接到redis cluster時候的身份認證,如果redis集群節點設定了身份認證的話,強烈建議redis集群所有節點設定一個統一的auth
# Authentication password used to authenticate on the cluster in case its nodes
# are password-protected. The password will be used both for fetching cluster's
# configuration and to automatically authenticate proxy's internal connections
# to the cluster itself (both multiplexing shared connections and clients'
# private connections. So, clients connected to the proxy won't need to issue
# the Redis AUTH command in order to be authenticated.
#
# auth mypassw
auth your_redis_cluster_password
 
#  這個節點是redis 6.0之后的用戶名,這里沒有指定
# Authentication username (supported by Redis >= 6.0)
#
# auth-user myuser

################################# LOGGING #####################################
# Log level: can be debug, info, success, warning o error.
log-level error

# Dump queries received from clients in the log (log-level debug required)
#
# dump-queries no

# Dump buffer in the log (log-level debug required)
#
# dump-buffer no

# Dump requests' queues (requests to send to cluster, request pending, ...)
# in the log (log-level debug required)
#
# dump-queues no

啟動redis-cluster-proxy,./bin/redis-cluster-proxy -c ./proxy.conf
需要注意的是,首次運行時直接列印出來啟動日志或者例外資訊,保證可以正常啟動,然后再以daemonize方式運行
因為筆者一開始遇到了一些錯誤,發現同樣的錯誤,控制臺直接列印出來的日志,跟daemonize方式運行列印到檔案的日志不完全一致,

 

redis-cluster-proxy嘗試
與普通的redis 集群鏈接方式不同,redis-cluster-proxy模式下,客戶端可以連接至redis-cluster-proxy節點,而無需知道Redis集群自身的詳細資訊,這里嘗試執行一個multpile操作

這里使用傳統的集群鏈接方式,來查看上面multiple操作的資料,可以發現的確是寫入到集群中不同的節點中了,

 

故障轉移測驗
簡單粗暴地關閉一個主節點,這里直接關閉192.168.0.61節點,看看redis-cluster-proxy能否正常讀寫
1,首先redis cluster自身的故障轉移是沒有問題的,完全成功

2,192.168.0.64接替192.168.0.61成為主節點

3,proxy節點操作資料卡死

查看redis-cluster-proxy的日志,說192.168.0.61節點無法連接,proxy失敗退出

由此可見,正如日志里說明的,Redis Cluster Proxy v999.999.999 (unstable),期待有更穩定的版本推出,
類似問題作者本人也有回應,參考:https://github.com/RedisLabs/redis-cluster-proxy/issues/36
The Proxy currently requires that all nodes of the cluster must be up at startup when it fetches the cluster's internal map.
I'll probably change this in the next weeks.

 

redis-cluster-proxy是完美的解決方案?
因為剛推出不久,生產環境基本上不會有太多實際的應用,里面肯定有不少坑,但不妨害對其有更多的期待,
初次嘗試可以感受的到,redis-cluster-proxy是一個非常輕量級,清爽簡單的proxy代理層,它解決了一些redis cluster存在的一些實際問題,對應于程式來說也帶來了一些方便性,
如果沒有原始碼開發能力,相比其他第三方proxy中間件,必須要承認官方可靠性和權威性,
那么,redis-cluster-proxy是一個完美的解決方案么,留下兩個問題
1,如何解決redis-cluster-proxy單點故障?
2,proxy節點的如何面對網路流量風暴?

 

 

轉載請註明出處,本文鏈接:https://www.uj5u.com/shujuku/4596.html

標籤:NoSQL

上一篇:MongoDB Limit與Skip方法

下一篇:Redis 字典實作

標籤雲
其他(157675) Python(38076) JavaScript(25376) Java(17977) C(15215) 區塊鏈(8255) C#(7972) AI(7469) 爪哇(7425) MySQL(7132) html(6777) 基礎類(6313) sql(6102) 熊猫(6058) PHP(5869) 数组(5741) R(5409) Linux(5327) 反应(5209) 腳本語言(PerlPython)(5129) 非技術區(4971) Android(4554) 数据框(4311) css(4259) 节点.js(4032) C語言(3288) json(3245) 列表(3129) 扑(3119) C++語言(3117) 安卓(2998) 打字稿(2995) VBA(2789) Java相關(2746) 疑難問題(2699) 细绳(2522) 單片機工控(2479) iOS(2429) ASP.NET(2402) MongoDB(2323) 麻木的(2285) 正则表达式(2254) 字典(2211) 循环(2198) 迅速(2185) 擅长(2169) 镖(2155) 功能(1967) .NET技术(1958) Web開發(1951) python-3.x(1918) HtmlCss(1915) 弹簧靴(1913) C++(1909) xml(1889) PostgreSQL(1872) .NETCore(1853) 谷歌表格(1846) Unity3D(1843) for循环(1842)

熱門瀏覽
  • GPU虛擬機創建時間深度優化

    **?桔妹導讀:**GPU虛擬機實體創建速度慢是公有云面臨的普遍問題,由于通常情況下創建虛擬機屬于低頻操作而未引起業界的重視,實際生產中還是存在對GPU實體創建時間有苛刻要求的業務場景。本文將介紹滴滴云在解決該問題時的思路、方法、并展示最終的優化成果。 從公有云服務商那里購買過虛擬主機的資深用戶,一 ......

    uj5u.com 2020-09-10 06:09:13 more
  • 可編程網卡芯片在滴滴云網路的應用實踐

    **?桔妹導讀:**隨著云規模不斷擴大以及業務層面對延遲、帶寬的要求越來越高,采用DPDK 加速網路報文處理的方式在橫向縱向擴展都出現了局限性。可編程芯片成為業界熱點。本文主要講述了可編程網卡芯片在滴滴云網路中的應用實踐,遇到的問題、帶來的收益以及開源社區貢獻。 #1. 資料中心面臨的問題 隨著滴滴 ......

    uj5u.com 2020-09-10 06:10:21 more
  • 滴滴資料通道服務演進之路

    **?桔妹導讀:**滴滴資料通道引擎承載著全公司的資料同步,為下游實時和離線場景提供了必不可少的源資料。隨著任務量的不斷增加,資料通道的整體架構也隨之發生改變。本文介紹了滴滴資料通道的發展歷程,遇到的問題以及今后的規劃。 #1. 背景 資料,對于任何一家互聯網公司來說都是非常重要的資產,公司的大資料 ......

    uj5u.com 2020-09-10 06:11:05 more
  • 滴滴AI Labs斬獲國際機器翻譯大賽中譯英方向世界第三

    **桔妹導讀:**深耕人工智能領域,致力于探索AI讓出行更美好的滴滴AI Labs再次斬獲國際大獎,這次獲獎的專案是什么呢?一起來看看詳細報道吧! 近日,由國際計算語言學協會ACL(The Association for Computational Linguistics)舉辦的世界最具影響力的機器 ......

    uj5u.com 2020-09-10 06:11:29 more
  • MPP (Massively Parallel Processing)大規模并行處理

    1、什么是mpp? MPP (Massively Parallel Processing),即大規模并行處理,在資料庫非共享集群中,每個節點都有獨立的磁盤存盤系統和記憶體系統,業務資料根據資料庫模型和應用特點劃分到各個節點上,每臺資料節點通過專用網路或者商業通用網路互相連接,彼此協同計算,作為整體提供 ......

    uj5u.com 2020-09-10 06:11:41 more
  • 滴滴資料倉庫指標體系建設實踐

    **桔妹導讀:**指標體系是什么?如何使用OSM模型和AARRR模型搭建指標體系?如何統一流程、規范化、工具化管理指標體系?本文會對建設的方法論結合滴滴資料指標體系建設實踐進行解答分析。 #1. 什么是指標體系 ##1.1 指標體系定義 指標體系是將零散單點的具有相互聯系的指標,系統化的組織起來,通 ......

    uj5u.com 2020-09-10 06:12:52 more
  • 單表千萬行資料庫 LIKE 搜索優化手記

    我們經常在資料庫中使用 LIKE 運算子來完成對資料的模糊搜索,LIKE 運算子用于在 WHERE 子句中搜索列中的指定模式。 如果需要查找客戶表中所有姓氏是“張”的資料,可以使用下面的 SQL 陳述句: SELECT * FROM Customer WHERE Name LIKE '張%' 如果需要 ......

    uj5u.com 2020-09-10 06:13:25 more
  • 滴滴Ceph分布式存盤系統優化之鎖優化

    **桔妹導讀:**Ceph是國際知名的開源分布式存盤系統,在工業界和學術界都有著重要的影響。Ceph的架構和演算法設計發表在國際系統領域頂級會議OSDI、SOSP、SC等上。Ceph社區得到Red Hat、SUSE、Intel等大公司的大力支持。Ceph是國際云計算領域應用最廣泛的開源分布式存盤系統, ......

    uj5u.com 2020-09-10 06:14:51 more
  • es~通過ElasticsearchTemplate進行聚合~嵌套聚合

    之前寫過《es~通過ElasticsearchTemplate進行聚合操作》的文章,這一次主要寫一個嵌套的聚合,例如先對sex集合,再對desc聚合,最后再對age求和,共三層嵌套。 Aggregations的部分特性類似于SQL語言中的group by,avg,sum等函式,Aggregation ......

    uj5u.com 2020-09-10 06:14:59 more
  • 爬蟲日志監控 -- Elastc Stack(ELK)部署

    傻瓜式部署,只需替換IP與用戶 導讀: 現ELK四大組件分別為:Elasticsearch(核心)、logstash(處理)、filebeat(采集)、kibana(可視化) 下載均在https://www.elastic.co/cn/downloads/下tar包,各組件版本最好一致,配合fdm會 ......

    uj5u.com 2020-09-10 06:15:05 more
最新发布
  • day02-2-商鋪查詢快取

    功能02-商鋪查詢快取 3.商鋪詳情快取查詢 3.1什么是快取? 快取就是資料交換的緩沖區(稱作Cache),是存盤資料的臨時地方,一般讀寫性能較高。 快取的作用: 降低后端負載 提高讀寫效率,降低回應時間 快取的成本: 資料一致性成本 代碼維護成本 運維成本 3.2需求說明 如下,當我們點擊商店詳 ......

    uj5u.com 2023-04-20 08:33:24 more
  • MySQL中binlog備份腳本分享

    關于MySQL的二進制日志(binlog),我們都知道二進制日志(binlog)非常重要,尤其當你需要point to point災難恢復的時侯,所以我們要對其進行備份。關于二進制日志(binlog)的備份,可以基于flush logs方式先切換binlog,然后拷貝&壓縮到到遠程服務器或本地服務器 ......

    uj5u.com 2023-04-20 08:28:06 more
  • day02-短信登錄

    功能實作02 2.功能01-短信登錄 2.1基于Session實作登錄 2.1.1思路分析 2.1.2代碼實作 2.1.2.1發送短信驗證碼 發送短信驗證碼: 發送驗證碼的介面為:http://127.0.0.1:8080/api/user/code?phone=xxxxx<手機號> 請求方式:PO ......

    uj5u.com 2023-04-20 08:27:27 more
  • 快取與資料庫雙寫一致性幾種策略分析

    本文將對幾種快取與資料庫保證資料一致性的使用方式進行分析。為保證高并發性能,以下分析場景不考慮執行的原子性及加鎖等強一致性要求的場景,僅追求最終一致性。 ......

    uj5u.com 2023-04-20 08:26:48 more
  • sql陳述句優化

    問題查找及措施 問題查找 需要找到具體的代碼,對其進行一對一優化,而非一直把關注點放在服務器和sql平臺 降低簡化每個事務中處理的問題,盡量不要讓一個事務拖太長的時間 例如檔案上傳時,應將檔案上傳這一步放在事務外面 微軟建議 4.啟動sql定時執行計劃 怎么啟動sqlserver代理服務-百度經驗 ......

    uj5u.com 2023-04-20 08:26:35 more
  • 云時代,MySQL到ClickHouse資料同步產品對比推薦

    ClickHouse 在執行分析查詢時的速度優勢很好的彌補了MySQL的不足,但是對于很多開發者和DBA來說,如何將MySQL穩定、高效、簡單的同步到 ClickHouse 卻很困難。本文對比了 NineData、MaterializeMySQL(ClickHouse自帶)、Bifrost 三款產品... ......

    uj5u.com 2023-04-20 08:26:29 more
  • sql陳述句優化

    問題查找及措施 問題查找 需要找到具體的代碼,對其進行一對一優化,而非一直把關注點放在服務器和sql平臺 降低簡化每個事務中處理的問題,盡量不要讓一個事務拖太長的時間 例如檔案上傳時,應將檔案上傳這一步放在事務外面 微軟建議 4.啟動sql定時執行計劃 怎么啟動sqlserver代理服務-百度經驗 ......

    uj5u.com 2023-04-20 08:25:13 more
  • Redis 報”OutOfDirectMemoryError“(堆外記憶體溢位)

    Redis 報錯“OutOfDirectMemoryError(堆外記憶體溢位) ”問題如下: 一、報錯資訊: 使用 Redis 的業務介面 ,產生 OutOfDirectMemoryError(堆外記憶體溢位),如圖: 格式化后的報錯資訊: { "timestamp": "2023-04-17 22: ......

    uj5u.com 2023-04-20 08:24:54 more
  • day02-2-商鋪查詢快取

    功能02-商鋪查詢快取 3.商鋪詳情快取查詢 3.1什么是快取? 快取就是資料交換的緩沖區(稱作Cache),是存盤資料的臨時地方,一般讀寫性能較高。 快取的作用: 降低后端負載 提高讀寫效率,降低回應時間 快取的成本: 資料一致性成本 代碼維護成本 運維成本 3.2需求說明 如下,當我們點擊商店詳 ......

    uj5u.com 2023-04-20 08:24:03 more
  • day02-短信登錄

    功能實作02 2.功能01-短信登錄 2.1基于Session實作登錄 2.1.1思路分析 2.1.2代碼實作 2.1.2.1發送短信驗證碼 發送短信驗證碼: 發送驗證碼的介面為:http://127.0.0.1:8080/api/user/code?phone=xxxxx<手機號> 請求方式:PO ......

    uj5u.com 2023-04-20 08:23:11 more