减少sql azure复制成本

时间:2016-10-20 12:16:28

标签: azure-sql-database

在这种情况下,我们对sql azure数据库提出了强烈的请求要求,因此我们决定复制数据库,一个用于读取(sql查询),另一个用于写入(更新),因为我们必须转移到高级服务所以数据库成本从300美元增加到2000美元,这大大影响了项目的可租赁性,所以还有其他任何优化成本的解决方案

谢谢

1 个答案:

答案 0 :(得分:0)

Are any of these options viable for you?

  • Running traditional SQL in an Azure VM (not limited to Azure SQL DTU model)
  • Using a message queue to move writes to an eventual consistent model using competing consumers
  • Create de-normalized/pre-computed tables (i.e. SELECT INTO) for the read operations during low-use times
  • Use materialized and/or indexed views for reads (reduced CPU/DTU usage)
  • Push data into Azure Table or DocumentDB for reads

Just ideas, but I feel your pain. The DTU thing is both a blessing and a curse.