Google Cloud SQL宣称,对于最小的机器类型,它每小时只需0.0150美元,我每小时都会收费,而不仅仅是我连接的小时数。这是因为我正在使用游泳池吗?如何设置我的后端,以便仅在需要时查询云数据库,以便我不会在一天中的每个小时收取费用?
const mysql = require('mysql');
const pool = mysql.createPool({
host : process.env.SQL_IP,
user : 'root',
password : process.env.SQL_PASS,
database : 'mydb',
ssl : {
[redacted]
}
});
function query(queryStatement, cB){
pool.getConnection(function(err, connection) {
// Use the connection
connection.query(queryStatement, function (error, results, fields) {
// And done with the connection.
connection.destroy();
// Callback
cB(error,results,fields);
});
});
}
答案 0 :(得分:4)
这不是关于池,而是关于Cloud SQL的本质。与App Engine不同,Cloud SQL实例始终 up。一个星期六早上,当我离开这个项目一个星期的时候,我很难学到这一点。 :)
除非您明确停止服务,否则在他们没有被使用时无法将其拆除。
至少在GCP SDK中,无法安排服务停止。你总是可以编写一个cron作业,或类似的东西,在当地时间下午6点,M-F运行一个sudo fuser -k 443/tcp
service nginx restart
命令。我太懒了,所以我只是为自己设置日历提醒,以便在我工作日结束时关闭我的实例。
这是当前SDK文档的MySQL实例启动/停止/重启页面: https://cloud.google.com/sql/docs/mysql/start-stop-restart-instance
另外,还有一个正在进行的' Feature Request'在GCP平台中根据流量启动/停止Cloud SQL(第二代)。您也可以访问link并在那里提供宝贵的建议/意见。
答案 1 :(得分:4)
我从@ingernet采纳了这个想法,并创建了一个云函数,该云函数在需要时启动/停止CloudSQL实例。可以通过计划的作业触发它,因此您可以定义实例何时启动或关闭。
详细信息在此Github Gist中(灵感来自here)。 免责声明:我不是python开发人员,因此代码中可能存在问题,但最终它起作用了。
基本上,您需要执行以下步骤:
start [CloudSQL instance name]
或stop [CloudSQL instance name]
以启动或停止指定的实例(例如start my_cloudsql_instance
将以名称my_cloudsql_instance
启动CloudSQL实例)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