Local development and staging with Amazon Redshift

前端 未结 4 759
野趣味
野趣味 2021-01-31 03:21

I like to set up tools and services with production, staging, and local development. I\'d like to use Amazon Redshift, and starting at $180 a month seems pretty reasonable for a

4条回答
  •  面向向阳花
    2021-01-31 03:45

    In addition to John Rotenstiens which lays out how to reduce costs if you have decided to run a second cluster for staging, there are some other options, for when your use case is non mission critical.

    As Redshift is a fork of postgres 8, you can use the Amazon-provided postgresql 8.4 JDBC or ODBC drivers, and point them to a locally running postgres 8 instance. This works well during development, since what works here will usually work on your production system (there are some exceptions).

    The other option is to have a separate table on your Redshift cluster to run non-production activities. This might good for you test suite and "final testing" development.

    Then you can stage your deploy into production and monitor the staging environment for issues before the full deploy.

提交回复
热议问题