How to run Google Cloud SQL only when I need it?

前端 未结 2 870
我寻月下人不归
我寻月下人不归 2021-02-15 23:41

Google Cloud SQL advertises that it\'s only $0.0150 per hour for the smallest machine type, and I\'m being charged for every hour, not just hours that I\'m connected. Is this b

2条回答
  •  伪装坚强ぢ
    2021-02-16 00:17

    I took the idea from @ingernet and created a cloud function which starts/stops the CloudSQL instance when needed. It can be triggered via a scheduled job so you can define when the instance goes up or down.

    The details are here in this Github Gist (inspiration taken from here). Disclaimer: I'm not a python developer so there might be issues in the code, but at the end it works.


    Basically you need to follow these steps:

    1. Create a pub/sub topic which will be used to trigger the cloud function.
    2. Create the cloud function and copy in the code below.
      1. Make sure to set the correct project ID in line 8.
      2. Set the trigger to Pub/Sub and choose the topic created in step 1.
    3. Create a cloud scheduler job to trigger the cloud function on a regular basis.
      1. Choose the frequency when you want the cloud function to be triggered.
      2. Set the target to Pub/Sub and define the topic created in step 1.
      3. The payload should be set to start [CloudSQL instance name] or stop [CloudSQL instance name] to start or stop the specified instance (e.g. start my_cloudsql_instance will start the CloudSQL instance with the name my_cloudsql_instance)

    Main.py:

    from googleapiclient import discovery
    from oauth2client.client import GoogleCredentials
    import base64
    from pprint import pprint
    
    credentials = GoogleCredentials.get_application_default()
    service = discovery.build('sqladmin', 'v1beta4', credentials=credentials, cache_discovery=False)
    project = 'INSERT PROJECT_ID HERE'
    
    def start_stop(event, context):
      print(event)
      pubsub_message = base64.b64decode(event['data']).decode('utf-8')
      print(pubsub_message)
      command, instance_name = pubsub_message.split(' ', 1)
    
      if command == 'start':
        start(instance_name)
      elif command == 'stop':
        stop(instance_name)
      else:
        print("unknown command " + command)
    
    def start(instance_name):
      print("starting " + instance_name)
      patch(instance_name, "ALWAYS")
    
    def stop(instance_name):
      print("stopping " + instance_name)
      patch(instance_name, "NEVER")
    
    def patch(instance, activation_policy):
      request = service.instances().get(project=project, instance=instance)
      response = request.execute()
    
      dbinstancebody = {
        "settings": {
          "settingsVersion": response["settings"]["settingsVersion"],
          "activationPolicy": activation_policy
        }
      }
    
      request = service.instances().patch(
        project=project,
        instance=instance,
        body=dbinstancebody)
      response = request.execute()
      pprint(response)
    

    Requirements.txt

    google-api-python-client==1.10.0
    google-auth-httplib2==0.0.4
    google-auth==1.19.2
    oauth2client==4.1.3
    

提交回复
热议问题