您好,登錄后才能下訂單哦!
函數計算(Function Compute): 函數計算 是事件驅動的全托管計算服務。使用函數計算,您無需采購與管理服務器等基礎設施,只需編寫并上傳代碼。函數計算為您準備好計算資源,彈性地可靠地運行任務,并提供日志查詢、性能監控和報警等功能。借助函數計算,您可以快速構建任何類型的應用和服務,并且只需為任務實際消耗的資源付費。
訪問 Redis 數據庫是指在函數計算中通過編寫代碼調用數據庫驅動庫通過 TCP 協議實現對數據庫進行的插入、查詢等操作。通常函數計算中運行的不同函數實例之間是不共享狀態的,對于結構化的數據可以通過數據庫的形式進行持久化以實現狀態共享。由于用戶函數運行在函數計算的 VPC 中,而用戶的數據庫運行在用戶所屬的 VPC 中,所以在函數計算平臺訪問數據庫會涉及到跨 VPC 訪問的場景,下面我們先來介紹一下其工作機制。
訪問 Redis 的原理、工作機制與訪問 Mysql 數據庫完全相同,本文不再重復闡述,更詳細的內容請參考 訪問 Mysql 數據庫 中的工作機制章節。
在 安全組控制臺 新建安全組,點擊 創建安全組,設置安全組名稱,網絡類型選擇 專有網絡,并選擇剛才創建的專有網絡。
創建適合業務需求的云數據庫 Redis 版實例可以參考 云數據庫 Redis 版。
創建成功后,在 實例信息頁面左側的導航欄中單擊 白名單設置。
單擊
default 區域框右側的
修改。
在彈出的對話框中,將 函數計算所在的 VPC 網絡的網段地址配置在白名單輸入框中。
最后訪問 Redis 數據庫 host 為實例的 內網地址,可以登錄阿里云控制臺查看:
多種語言的客戶端連接阿里云 Redis 可以參考 Redis 客戶端連接。
注意:函數計算服務所在區域與公共配置中創建的資源所在區域一致。
下面演示 Python3 開發語言訪問 Redis 數據庫函數示例創建:
使用 Fun 工具在建立存放代碼和依賴模塊目錄下安裝依賴和項目部署。
ROSTemplateFormatVersion: '2015-09-01'
Transform: 'Aliyun::Serverless-2018-04-03'
Resources:
Redis-test:
Type: 'Aliyun::Serverless::Service'
Properties:
Description: This is Redis service
Role: 'acs:ram::XXX:role/fc-public-test'
LogConfig:
Project: XXX
Logstore: XXXX
VpcConfig:
VpcId: vpc-XXXXX
VSwitchIds:
- vsw-XXXX
SecurityGroupId: sg-XXXX
InternetAccess: true
python-test:
Type: 'Aliyun::Serverless::Function'
Properties:
Initializer: 'index.initializer'
Handler: 'index.handler'
Runtime: python3
Timeout: 10
MemorySize: 128
CodeUri: './'
EnvironmentVariables:
REDIS_HOST: r-XXXXX.redis.rds.aliyuncs.com
REDIS_PASSWORD: XXXXX
REDIS_PORT: '6379'
RUNTIME python3
RUN fun-install pip install redis
執行
fun install
命令安裝依賴:
$ fun install
using template: template.yml
start installing function dependencies without docker
building Redis-test/python-test
Funfile exist, Fun will use container to build forcely
Step 1/2 : FROM registry.cn-beijing.aliyuncs.com/aliyunfc/runtime-python3.6:build-1.7.7
---> 373f5819463b
Step 2/2 : RUN fun-install pip install redis
---> Running in f26aef48f9e5
Task => PipTask
=> PYTHONUSERBASE=/code/.fun/python pip install --user redis
Removing intermediate container f26aef48f9e5
---> 809c6655f9e9
sha256:809c6655f9e93d137840b1446f46572fbab7548c5c36b6ae66599dfc2e27555b
Successfully built 809c6655f9e9
Successfully tagged fun-cache-78c74899-5497-4205-a670-24e4daf88284:latest
copying function artifact to /Users/txd123/Desktop/Redis/Python
Install Success
在函數根目錄下新建代碼文件,例如 /tmp/code/index.py,在代碼中使用 redis :
# -*- coding: utf-8 -*-
import os,sys
import redis
def initializer(context):
global conn_pool
conn_pool=redis.ConnectionPool(host=os.environ['REDIS_HOST'],password=os.environ['REDIS_PASSWORD'],port=os.environ['REDIS_PORT'],db=1,decode_responses=True)
def handler(event, context):
r = redis.Redis(connection_pool=conn_pool)
r.set('test','89898')
r.set('zyh_info','{"name":"Tanya","password":"123456","account":11234}')
print(r.get('test'))
return r.get('zyh_info')
使用 fun 工具部署:
$ fun deploy
using template: template.yml
using region: cn-hangzhou
using accountId: ***********3743
using accessKeyId: ***********Ptgk
using timeout: 60
Waiting for service Redis-test to be deployed...
Waiting for function python-test to be deployed...
Waiting for packaging function python-test code...
The function python-test has been packaged. A total of 25 files files were compressed and the final size was 138.78 KB
function python-test deploy success
service Redis-test deploy success
登錄控制臺,即可看到相關的服務、函數被創建成功,且觸發執行可以返回正確的結果。
通過本文介紹可以快速實現函數計算訪問 Redis 數據庫。
使用函數計算帶來的優勢:
“ 阿里巴巴云原生技術圈關注微服務、Serverless、容器、Service Mesh 等技術領域、聚焦云原生流行技術趨勢、云原生大規模的落地實踐,做最懂云原生開發者的技術圈。”
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。