Big Query API - 超出配额:您的表超出了每个表的UPDATE或DELETE查询的配额

时间:2017-01-19 21:03:57

标签: google-app-engine google-bigquery

正如this问题中所述,您每天可以进行多少次更新的配额限制。

我查了一下文档,这部分引起了我的注意:

Daily update limit: 1,000 updates per table per day; applies only to the destination table in a query.

问题是我没有在我的桌子上运行1000次更新(可能最多80 .. 150)

所以我想知道是否有解决方案,或者文档已经过时。

感谢。

修改 只有在我使用Big Query API时才会发生这种情况,我可以通过控制台更新表

1 个答案:

答案 0 :(得分:4)

看起来您正在使用DML

每份文件:

  

DML语句的处理成本远高于SELECT   语句。

#!/bin/bash
{
   for c in {a..z} {A..Z} {0..9}; do
      convert xc:none[1000x1000] -background none -fill black -font tengwar.otf -pointsize 300 \
         -gravity center -annotate 0 "$c" miff:-
   done

   # Do any problematic characters as an afterthought, e.g. semi-colon, and exclamation
   convert xc:none[1000x1000] -background none -fill black -font tengwar.otf -pointsize 300 \
         -gravity center -annotate 0 ";" miff:-
   convert xc:none[1000x1000] -background none -fill black -font tengwar.otf -pointsize 300 \
         -gravity center -annotate 0 "!" miff:-

} | convert -dispose background -delay 20 miff:- anim.gif

您可以在此documentation

中查看更多详情

您在问题中引用的与查询相关的配额 - 请参阅更多here