延迟谷歌服务批量请求的序列化执行

发布于 2025-01-12 02:53:36 字数 382 浏览 0 评论 0原文

有没有一种方法(如果有,最简单的方法是什么)来延迟(或休眠 n 秒)下面每个 x 的批处理请求的执行?

举例来说,我有以下内容:

my_batch=my_service.new_batch_http_request()

for x in Y:
            my_batch.add(
                my_service.insert( )
            )
my_batch.execute()

或者更重要的是:对于 Y 中的每个 x,在服务器端(我的谷歌服务所在的位置)执行之前等待 n 秒。举例来说,我的服务是 google 驱动器、日历或 google new_batch_http_request 可以工作的任何其他服务。

Is there a way (and if so, what is the simplest one) to delay (or sleep for n seconds) the execution of the batch request below, for each x?

Say for example I have the following:

my_batch=my_service.new_batch_http_request()

for x in Y:
            my_batch.add(
                my_service.insert( )
            )
my_batch.execute()

Or even more to the point: for each x in Y, wait n seconds before execution on the server side (where my google service resides). Say for example, my service is google drive, or calendar, or anything else where google new_batch_http_request works.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文