kylin经过API增量build

官方文档参考:http://kylin.apache.org/cn/docs21/howto/howto_build_cube_with_restapi.html (写的不详细)html

帐户:咱们使用的默认帐户:ADMIN/KYLIN的basic认证码为:QURNSU46S1lMSU4=apache

格式以下:
curl -X PUT -H "Authorization: Basic QURNSU46S1lMSU4=" -H 'Content-Type: application/json' -d '{"endTime":'$endTime', "buildType":"BUILD"}' http:/$host:7070/kylin/api/cubes/$(cube_name)/rebuildjson

个人脚本:
···
‘’#!/bin/bashapi

kylinMinusTime=$((8 60 60 1000)) #8小时对应的毫秒时间,这里是utc时间,须要+8小时
today=date -d now +%Y-%m-%d
todayTimeStamp=date -d "$today 00:00:00" +%s
todayTimeStampMs=$(($todayTimeStamp
1000 + date "+%N"/1000000)) #将current转换为时间戳,精确到毫秒
endTime=$(($todayTimeStampMs+$kylinMinusTime))bash

curl -X PUT -H "Authorization: Basic QURNSU46S1lMSU4=" -H 'Content-Type: application/json' -d '{"endTime":'$endTime', "buildType":"BUILD"}' http://stream5:7070/kylin/api/cubes/campaignCube/rebuild
curl -X PUT -H "Authorization: Basic QURNSU46S1lMSU4=" -H 'Content-Type: application/json' -d '{"endTime":'$endTime', "buildType":"BUILD"}' http://stream5:7070/kylin/api/cubes/salesCube/rebuild
curl -X PUT -H "Authorization: Basic QURNSU46S1lMSU4=" -H 'Content-Type: application/json' -d '{"endTime":'$endTime', "buildType":"BUILD"}' http://stream5:7070/kylin/api/cubes/marketingCube/rebuild
···app

相关文章
相关标签/搜索