英文:
Google BigQuery stream to PostgresSQL
问题
我使用Google BigQuery进行OLAP,并计划为OLTP提供Google Cloud SQL(Postgres)。
我的计划是将数据直接从Google BigQuery流式传输到Postgres。
我尝试过搜索解决方案,但唯一的选项是使用批处理文件。
是否有可能从Google BigQuery流式传输到PostgreSQL的解决方案?
英文:
I'm using Google BigQuery for OLAP, and plan to provision Google Cloud SQL (Postgres) for OLTP.
My plan is to direct stream data from Google BigQuery to Postgres.
I try googling the solution, but the option is only using batch file .
Is it possible for the streaming solution from Google BigQuery to PostgreSQL?
答案1
得分: 1
目前还没有用于访问BigQuery数据的流式读取机制,正如在此 Stackoverflow 帖子中提到的。
因此,您将不得不选择通过批处理过程来读取数据。您还可以设置手动的ETL过程,将BigQuery集成到PostgreSQL中,使用Cloud Data Fusion,就像在这篇文章中所提到的一样。
英文:
Currently there is no streaming read mechanism for accessing bigquery data as mentioned in this Stackoverflow post.
Hence, you'll have to go for reading data through batch process.
You can also setup manual ETL process to integrate BigQuery to PostgreSQL using Cloud Data Fusion as mentioned in this article.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论