python - 云数据流流式传输,空闲时停止以省钱?

标签 python firebase google-cloud-firestore google-cloud-dataflow

我有一个应用程序,用户可以在其中投票。

我希望扩大我的应用程序的规模,因此我决定使用 Cloud Dataflow 聚合 Firestore 中存储的计数器。

我已经设置了一个流式类型的 Dataflow 作业,因此只要用户对某项内容进行投票,它就可以监听 pubsub 主题。

有时我每天有数千个用户输入,有时我有几百个...当工作一段时间没有收到 pubsub 消息时,有什么解决方案可以“暂停”该工作吗?

目前,我的数据流作业始终在运行,恐怕这会花费我很多钱。

如果有人可以帮助我了解流媒体工作的计费,我们将不胜感激

这是我的 Python 管道:

def run(argv=None):
    # Config
    parser = argparse.ArgumentParser()
    # Output PubSub Topic
    parser.add_argument(
        '--output_topic', required=True)
    # Input PubSub Topic
    parser.add_argument(
        '--input_topic', required=True)

    known_args, pipeline_args = parser.parse_known_args(argv)

    # Pipeline options
    pipeline_options = PipelineOptions(pipeline_args)
    pipeline_options.view_as(SetupOptions).save_main_session = True
    pipeline_options.view_as(StandardOptions).streaming = True

    # Pipeline process
    with beam.Pipeline(options=pipeline_options) as p:

        # Counting votes
        def count_votes(contestant_votes):
            (contestant, votes) = contestant_votes
            return (contestant, sum(votes))

        # Format data to a fake object (used to be parsed by the CF)
        def format_result(contestant_votes):
            (contestant, votes) = contestant_votes
            return '{ "contestant": %s, "votes": %d }' % (contestant, votes)

        transformed = (p
                       | 'Receive PubSub' >> beam.io.ReadFromPubSub(topic=known_args.input_topic)
                       .with_output_types(bytes)
                       | 'Decode' >> beam.Map(lambda x: x.decode('utf-8'))
                       | 'Pair with one' >> beam.Map(lambda x: (x, 1))
                       | 'Apply window of time' >> beam.WindowInto(window.FixedWindows(30, 0))
                       | 'Group by contestant' >> beam.GroupByKey()
                       | 'Count votes' >> beam.Map(count_votes)
                       | 'Format to fake object string' >> beam.Map(format_result)
                       | 'Transform to PubSub base64 string' >> beam.Map(lambda x: x.encode('utf-8'))
                       .with_output_types(bytes))

        # Trigger a the output PubSub topic with the message payload
        transformed | beam.io.WriteToPubSub(known_args.output_topic)

        result = p.run()
        result.wait_until_finish()


if __name__ == '__main__':
    logging.getLogger().setLevel(logging.INFO)
    run()

Job config

最佳答案

回答您的成本问题:对于您当前使用的工作器,您将花费大约 250 美元(取决于您当月的 PD 使用情况)。

目前无需等待即可强制数据流“空闲”或扩展到 0 个工作线程。您可以拥有的最小值是 1。

话虽这么说,您可以采取几条路线来尽量降低成本。

如果您的工作线程负载不大,并且您想要最简单的选择,则可以使用功能较弱的工作线程(n1-standard-1 [~USD $77.06] 或 n1-standard-2 [~USD $137.17]) 。 https://cloud.google.com/products/calculator/#id=3bbedf2f-8bfb-41db-9923-d3a5ef0c0250 (如果您看到我添加了所有 3 个版本,使用的是我在您的照片中看到的 430GB PD)。

如果您需要计算能力,您可以切换到使用基于 cron 的数据流作业,如下所述:https://cloud.google.com/blog/products/gcp/scheduling-dataflow-pipelines-using-app-engine-cron-service-or-cloud-functions 。这样,您可能应该从订阅而不是主题中阅读,这样您就可以保留这些消息,直到您开始工作为止。

关于python - 云数据流流式传输,空闲时停止以省钱?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55667401/

相关文章:

javascript - 无法链接另一个身份验证方法 - firebase auth

firebase - 执行 npx firestore-algolia-search 时出现 Npx 问题

python - “模块”对象没有属性 'unescape'

python - 运行时错误: main thread is not in main loop using Matplotlib with Django

python - 获取字典中最大键的值(python)

firebase - Flutter的initState()不能立即检索数据,需要进行热重装才能查看

firebase - 如何清除 Flutter Firebase 中以前的用户缓存数据?

python - 我如何将从数据库接收到的blob数据转换为python中的图像

ios - 遍历Firebase中节点中的所有节点

swift - 类型 AVCaptureDevice 不符合协议(protocol)序列