BigqueryBQAlertsforSlotsandQueryconcurrency
创始人
2024-12-12 10:30:41
0

可以通过使用Bigquery API发出警报来监视Bigquery查询槽数量和查询并发量。

以下是如何设置监视查询槽数量的示例代码:

import google.auth
from google.cloud import bigquery

def check_slots():
    _, proj_id = google.auth.default()
    client = bigquery.Client(project=proj_id)
    
    query_job_config = bigquery.QueryJobConfig(dry_run=True, use_query_cache=False)
    query_job_config.dry_run = True
    query_job_config.use_query_cache = False
    query = (
        "SELECT CAST(IFNULL(sum(total_slot_ms), 0) / 1000 / 60 / 60 as INT64) AS used_hours "
        "FROM `region-us`.INFORMATION_SCHEMA.JOBS_BY_PROJECT "
        "WHERE REGEXP_CONTAINS(project_id, r'^" + proj_id + "$') "
        "AND creation_time BETWEEN "
        "   TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL 3 DAY) "
        "   AND CURRENT_TIMESTAMP() "
        "   AND state = 'DONE';"
    )

    query_job = client.query(query, job_config=query_job_config)
    results = query_job.result()

    for row in results:
        used_hours = row['used_hours']

    if used_hours > 100:
        send_alert('Slots usage is high. Used Hours: {}'.format(used_hours))

def send_alert(msg):
    # send an alert
    pass

以下是如何设置监视查询并发量的示例代码:

import google.auth
from google.cloud import monitoring_v3

def check_concurrency():
    _, proj_id = google.auth.default()
    client = monitoring_v3.MetricServiceClient()

    end_time = time.time()
    start_time = end_time - 3 * 60 * 60 # the past 3 hours
    project_resource = client.project_path(proj_id)

    duration = monitoring_v3.types.TimeInterval()
    duration.end_time.FromSeconds(int(end_time))
    duration.start_time.FromSeconds(int(start_time))

    aggregation = monitoring_v3.types.Aggregation()
    aggregation.alignment_period.seconds = 600 # 10 minutes
    aggregation.per_series_aligner = (monitoring_v3.enums.Aggregation.Aligner.ALIGN_MEAN)

    metric_type = 'bigquery.googleapis.com/query/count'
    filter = (
        'metric.type="{}" AND '
        'resource.type="global" AND '
        'resource.labels.project_id="{}"').format(
        metric_type, proj_id)

    response = client.list_time_series(
        project_resource,
        filter,
        aggregation,
        interval,
    )

    num_queries = 0
    for ts in response:
        for point in ts.points:

相关内容

热门资讯

iwatch怎么连接安卓系统,... 你有没有想过,那款时尚又实用的iWatch,竟然只能和iPhone好上好?别急,今天就来给你揭秘,怎...
安卓系统怎么连不上carlif... 安卓系统无法连接CarLife的原因及解决方法随着智能手机的普及,CarLife这一车载互联功能为驾...
oppo手机安卓系统换成苹果系... OPPO手机安卓系统换成苹果系统:现实吗?如何操作?随着智能手机市场的不断发展,用户对于手机系统的需...
iphone系统与安卓系统更新... 最近是不是你也遇到了这样的烦恼?手机更新系统总是失败,急得你团团转。别急,今天就来给你揭秘为什么iP...
安卓平板改windows 系统... 你有没有想过,你的安卓平板电脑是不是也能变身成Windows系统的超级英雄呢?想象在同一个设备上,你...
安卓系统上滑按键,便捷生活与高... 你有没有发现,现在手机屏幕越来越大,操作起来却越来越方便了呢?这都得归功于安卓系统上的那些神奇的上滑...
安卓系统连接耳机模式,蓝牙、有... 亲爱的手机控们,你们有没有遇到过这种情况:手机突然变成了“耳机模式”,明明耳机没插,声音却只从耳机孔...
希沃系统怎么装安卓系统,解锁更... 亲爱的读者们,你是否也像我一样,对希沃一体机上的安卓系统充满了好奇呢?想象在教室里,你的希沃一体机不...
安装了Anaconda之后找不... 在安装Anaconda后,如果找不到Jupyter Notebook,可以尝试以下解决方法:检查环境...
安卓换鸿蒙系统会卡吗,体验流畅... 最近手机圈可是热闹非凡呢!不少安卓用户都在议论纷纷,说鸿蒙系统要来啦!那么,安卓手机换上鸿蒙系统后,...