Get WAL size
Request
GET fe_host:fe_http_port/api/get_wal_size?host_ports=host1:port1,host2:port2...
Description
用户可以通过该 HTTP 接口获取指定BE的WAL文件的数目,若不指定BE,则默认返回所有BE的WAL文件的数目。
Path parameters
无
Query parameters
host_ports
BE的ip和http端口。
Request body
无
Response
{
"msg": "OK",
"code": 0,
"data": ["192.168.10.11:9050:1", "192.168.10.11:9050:0"],
"count": 0
}
Examples
获取所有BE的WAL文件的数目。
curl -u root: "127.0.0.1:8038/api/get_wal_size"
Response:
{
"msg": "OK",
"code": 0,
"data": ["192.168.10.11:9050:1", "192.168.10.11:9050:0"],
"count": 0
}在返回的结果中,BE后跟的数字即为对应BE的WAL文件数目。
获取指定BE的WAL文件的数目。
curl -u root: "127.0.0.1:8038/api/get_wal_size?192.168.10.11:9050"
Response:
{
"msg": "OK",
"code": 0,
"data": ["192.168.10.11:9050:1"],
"count": 0
}在返回的结果中,BE后跟的数字即为对应BE的WAL文件数目。