Virtual Appliance Design
heartbeart
Overview
1 | frontend -------> backend ---------> MQ -----------> VA(On-premise) |
Test API
API for frontend
1 | curl -H "x-customer-id: 77a1c9561c8d47fb8036c970a4f2ee73" "https://peter.backend.com/ui/appliances/?start=0&applianceId=974bf535-7930-474e-8da6-780cafff284d" |
API for VA
1 | curl -X POST -H "Authorization: Bearer $token" -i https://peter.backend.com/va/register/ |
backend Design
Database Design
Customer
Customer表
1 | desc app_customer; |
Appliance
ApplianceInfo表
1 | mysql> desc app_applianceinfo; |
ApplianceVersion表
1 | mysql> desc app_applianceversion; |
1 | mysql> desc app_appliancemetrics; |
IOT Task
IotTask表
1 | mysql> desc app_iottask; |
HeartbeatIotTask表
1 | desc app_heartbeatiottask; |
Service
IotTask Design
- install/uninstall/enable/disable/configure services
- upgrade firmware/services
- collect metrics about va and services
- va’s cpu,memory, storage, network usage
- maintain service status(running, disabled, disconnected)
- heartbeart
- collect debug logs
- collect metrics
- extend storage
- change api key and server ssl certificates
- remote shell
HeartBeat
use applianceId as taskId to avoid database overwhelm
Heartbeat Body
1 | { |
Heartbeat Result
1 |
Upgrade Appliance
1 | { |
Install Services
1 | { |
Uninstall Services
1 | { |
Collect log
1 | { |
Collect Appliance Metrics
1 | { |
Unregister VA
1 | { |
Update Appliance Settings
1 | { |
Extend Appliance Storage
1 | { |
backend API design
API for VA
VA register
POST /va/register
- VA发起注册请求, Header中携带JWT
- 校验请求头的JWT
- 解析JWT中的customer_id, 查数据库是否存在该customer
- 检查JWT是否过期,如果过期就为客户重新生成一个新的JWT,继续校验
- 从请求体中读取VA信息,将VA信息写入数据库
- 响应VA,返回(iotHost, iotCert, applianceId)给VA。
Response Body
1 | { |
Update IOT Task Results
POST /va/{appliance_id}/tasks
Request Body
1 | { |
IOT Health Check
GET /va/{appliance_id}/healthz
Upload Service Metrics
POST /va/{appliance_id}/{service_code>/metrics
Upload Audit Log
POST /var/{appliance_id}/log
API for frontend
Appliance Management
Get Appliance Image Info
GET /ui/appliances/image
Procedure
- check customer_id in request header
- query latest published version from DB
- recreate customer token if expired
- get ova s3 download link valid for 7 days.
- response image info
Response
1 | { |
Test
add fake DB data
1 | insert into app_applianceversion(version, created_at, updated_at, version_major, version_minor, version_revision, version_build, display_version, firmware_info, enable, ova_info, published) values('1.0.0.10000', now(), now(), 1, 0, 0, 10000, '1.0.0', '{}', 1, '{}', 1); |
test API
1 | curl -H "x-customer-id: 77a1c956-1c8d-47fb-8036-c970a4f2ee73" "https://peter.backend.com/ui/appliances/image/" |
List Appliance
GET /ui/appliances
Procedure
- check customer_id in request header
- parse applianceId, connectStartTime from request params
- Query appliances which expectedStatus are not unregistered from DB, then response
Request Params
param | optional | example | description |
---|---|---|---|
start | True | 1700020200 | filter register time of appliances |
applianceId | True | uuid |
Response
1 | { |
Test
1 | # Query customer's appliances |
Delete Appliance
DELETE /ui/appliances/
Procedure
- check customer_id in request header
- query delete appliance from DB, customer can only delete their own appliance
- delete this appliance
- update expectedStatus and status to unregistered
- send unregister iottask
Response
empty
Test
1 | curl -X DELETE -H "x-customer-id: 77a1c956-1c8d-47fb-8036-c970a4f2ee73" "https://peter.backend.com/ui/appliances/974bf535-7930-474e-8da6-780cafff284d/" |
Upgrade Appliance
POST /ui/appliances/
Get Appliance Settings
GET /ui/appliances/
Procedure
- check customer_id in request header
- query appliance settings from DB, such as schedule time, cert info
- resp appliance settings
Response
1 | { |
Test
1 | curl -H "x-customer-id: 77a1c956-1c8d-47fb-8036-c970a4f2ee73" "https://peter.backend.com/ui/appliances/974bf535-7930-474e-8da6-780cafff284d/settings/" |
Modify Appliance Settings
POST /ui/appliances/
Procedure
- check customer_id in request header, customer can only modify their own appliance’s settings
- parse settings, update va settings to DB
- notify va, response task_id to
Request body
1 | { |
Response
1 | { |
Test
1 | curl -X POST -H "Content-Type:application/json" -d '{"scheduleUpdateTime" : "23:00"}' -H "x-customer-id: 77a1c956-1c8d-47fb-8036-c970a4f2ee73" \ |
Get Storage Details
GET /ui/appliances/
Procedure
- check customer_id in request header, customer can only get their own appliance’s storage
- query storage details from DB table appliance_metric
- response storage details
Response
1 | { |
Test
1 | curl -H "x-customer-id: 77a1c956-1c8d-47fb-8036-c970a4f2ee73" \ |
Extend Storage
POST /ui/appliances/
Procedure
- check customer_id in request header, customer can only get their own appliance’s storage
- validate request, parse extend storage detail
- if previous task is ongoing, response failure
- notify VA to extend storage
- response 200 OK
Request
1 | { |
Test
1 | curl -X POST -H "x-customer-id: 77a1c956-1c8d-47fb-8036-c970a4f2ee73" -H "Content-Type:application/json" -d '{"data": [{"targetVolume": "data", "size": 1024}]}' \ |
Get Appliance Metrics
POST /ui/appliances/
Collect Appliance Log
POST /ui/appliances/
Procedure
- parse customer_id in request header, check DB if customer is valid.
- get upload url(aws s3), 支持收某段时间的LOG(7天,2周,1个月)
- notify VA to collect logs
- wait log collected (30 minutes)
- resp download link
Request
1 | { |
Test
1 | curl -X POST -H "x-customer-id: 77a1c956-1c8d-47fb-8036-c970a4f2ee73" -H "Content-Type:application/json" \ |
Service Management
List Service
GET /ui/appliances/
Procedure
- parse customer_id in request header, check if customer is valid, va belongs to this customer.
- query applianceServiceSettings DB table, find all services of this appliance.
- response a list of services to frontend.
Response
1 | { |
Test
1 | curl -H "x-customer-id: 77a1c956-1c8d-47fb-8036-c970a4f2ee73" \ |
Install/Uninstall/Upgrade Service
POST /ui/services/
Install Service
Procedure
- parse customer_id in request header, check DB if customer is valid.
- find latest service version
- if service already installed, return OK, else:
- check if reach resources limit
- get service package download url
- create or update related dbentry, change expected status to running
- notify VA
- resp 200 OK
Install Service Request
1 | { |
IOT Command
1 | { |
Test
install service
1 | insert into app_serviceinfo(service_code, created_at, updated_at, default_setting) values('va-squid', now(), now(), '{}'); |
uninstall service
1 | curl -X POST -H "x-customer-id: 77a1c956-1c8d-47fb-8036-c970a4f2ee73" -d '{"applianceId": "974bf535-7930-474e-8da6-780cafff284d", "action": "uninstall"}' -H "Content-Type:application/json" \ |
Enable/Disable Service
POST /ui/services/
Procedure
- parse customer_id from header, parse appliance_id, service_code from uri
- query service settings from DB
- change service status
- notify to VA
Request
1 | { |
Response
1 | { |
Test
1 | curl -X POST -H "x-customer-id: 77a1c956-1c8d-47fb-8036-c970a4f2ee73" -d '{"action": "enable"}' -H "Content-Type:application/json" \ |
Get Service Settings
GET /ui/services/
Procedure
- query service settings from DB based on appliance_id, service_code
- response to frontend
Response
1 | { |
TEST
1 | curl -H "x-customer-id: 77a1c956-1c8d-47fb-8036-c970a4f2ee73" "https://peter.backend.com/ui/services/va-squid/974bf535-7930-474e-8da6-780cafff284d/settings/" |
Configure Service Settings
POST /ui/services/
Procedure
- parse settings from req body
- parse appliance_id, service_code from uri
- query current service settings from DB
- notify VA to configure service
Test
1 | curl -X POST -H "x-customer-id: 77a1c956-1c8d-47fb-8036-c970a4f2ee73" -H "Content-Type:application/json" -d '{"setting": {"settings101": "value101"}, "setting_version": 101}' \ |
Query Task result
GET /ui/tasks/
Procedure
- parse customer_id from header, parse appliance_id, task_id from uri
- query task result from DB
- resp task result
Response
1 | { |
Test
1 | curl -H "x-customer-id: 77a1c956-1c8d-47fb-8036-c970a4f2ee73" \ |