Search code examples
postgresqlgoogle-cloud-platformgoogle-cloud-runmetabase

Has anyone deployed Metabase with cloud run?


I did research but couldn't find any "howTo" for deploying Metabase with Cloud Run on GCP, I only found Q&A the problems by deploying it.
My goal is to deploy Metabase with Cloud run and use Postgres as database. I have already deployed app by Cloud Run and have cloudbuild.yml pipeline on git that I use it for building my app I just wanna add Metabase.
Any directions or solutions?


Solution

  • It is not recommended to deploy Metabase on Cloud Run because:

    Computation is scoped to a request. You should only expect to be able to do computation within the scope of a request: a container instance does not have any CPU available if it is not processing a request.

    Container runtime contract

    Therefore you might be facing issues loading the application and database connections timeout.

    I think your best option is using AppEngine Flexible.

    Install Metabase on Google Cloud with Docker – App Engine