LIKE 运算符在 AWS lambda 函数上工作,但不是 =



>我有一个看起来像这样的小csv文件:

is_employee,candidate_id,gender,hesa_type,university
FALSE,b9bb80,Male,Mathematical sciences,Birmingham
FALSE,8e552d,Female,Computer science,Swansea
TRUE,2bc475,Male,Engineering & technology,Aston
TRUE,c3ac8d,Female,Mathematical sciences,Heriot-Watt
FALSE,ceb2fa,Female,Mathematical sciences,Imperial College London

以下 lambda 函数用于从 s3bucket 进行查询。

import boto3
import os
import json
def lambda_handler(event, context):
BUCKET_NAME = 'foo'
KEY = 'bar/data.csv'  
s3 = boto3.client('s3','eu-west-1')
response = s3.select_object_content(
Bucket = BUCKET_NAME,
Key = KEY,
ExpressionType = 'SQL',
Expression = 'Select count(*) from s3object s where s.gender like '%Female%'',
InputSerialization = {'CSV': {"FileHeaderInfo": "Use"}},
OutputSerialization = {'JSON': {}},
)
for i in response['Payload']:
if 'Records' in i:
query_result = i['Records']['Payload'].decode('utf-8')
print(list(json.loads(query_result).values())[0])

现在,这很好用,因为我得到了3的结果. 但是由于某种原因,当将like运算符更改为=时,相同的代码不起作用,结果下降到0,因此找不到匹配项。这是怎么回事?

所以我发现了问题。问题是最后一列的项目后跟换行符,AWS S3 解释器无法理解。所以真的,大学的名字不是Swansea,而是更Swansean

所以s.university = 'Swansea''不起作用;但是,s.university LIKE 'Swansea%''确实有效,并且仍然是一个可优化的表达式。

相关内容

  • 没有找到相关文章