英文:
Does GCP support automatic partition creation in cloud sql
问题
我们可以运行手动查询在我们的数据库中创建表的分区。例如 - 修改表<tablename>添加分区(<condition>)。但是否可以利用Google Cloud Platform(GCP)的某些功能来自动化这个过程?
英文:
We have manual queries that we can run in our databases to create partition in a table.
For ex - Alter table <tablename> add partition(<condition>)
But can we automate the process by some GCP feature?
答案1
得分: 0
不,你不能。你可以自动化手动查询(Cloud Scheduler + Cloud Functions 查询你的 Cloud SQL 实例),但没有内置功能来管理 Cloud SQL 上的分区。
英文:
No, you can't. You could automate the manual queries (Cloud Scheduler + Cloud Functions that query your Cloud SQL instance) but there is no built-in feature to manage partitions on Cloud SQL
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论