gcloud Logging Sink 没有办法指定创建分区 table?

gcloud Logging Sink does not have a way to specify to create partitioned table?

我正在使用以下命令创建 gcloud 日志接收器

gcloud logging sinks create $MONITORING_SINK bigquery.googleapis.com/projects/$PROJECTID/datasets/$PROJECT_MONITORING_DATASET_NAME --log-filter "resource.type=bigquery_resource jobservice.jobcompleted"

如果我通过 GUI 执行此操作,则有一个可选的复选框 select 是否要对作为此接收器的输出创建的 table 进行分区。但据我所知,没有办法使用 gcloud 语句来做到这一点?

我怎样才能做到这一点?

根据Google的官方文档,是的,有一种创建分区的方法,您只需要使用--use-partitioned-tables,请查看[1]下的更多信息。

祝你有愉快的一天!

[1] https://cloud.google.com/sdk/gcloud/reference/alpha/logging/sinks/create