Lui*_*ang 5 python google-bigquery
我阅读了很多关于google bigquery-python的文档,但我无法理解如何通过python代码管理bigquery数据.
首先,我创建一个新表,如下所示.
credentials = GoogleCredentials.get_application_default()
service = build('bigquery', 'v2', credentials = credentials)
project_id = 'my_project'
dataset_id = 'my_dataset'
table_id = 'my_table'
project_ref = {'projectId': project_id}
dataset_ref = {'datasetId': dataset_id,
'projectId': project_id}
table_ref = {'tableId': table_id,
'datasetId': dataset_id,
'projectId': project_id}
dataset = {'datasetReference': dataset_ref}
table = {'tableReference': table_ref}
table['schema'] = {'fields': [
{'name': 'id', 'type': 'string'},
...
]}
table = service.tables().insert(body = table, **dataset_ref).execute()
Run Code Online (Sandbox Code Playgroud)
然后我想在这个表中插入一个数据,所以我试着这样做.
fetch_list = []
patch = {'key': 'value'}
fetch_list.append(patch)
table = service.tables().patch(body = fetch_list, **table_ref).execute()
Run Code Online (Sandbox Code Playgroud)
但什么都没发生.
如何将新数据更新到bigquery表?
请给我看一些示例代码.
Wil*_*uks 16
编辑2018年11月:
这个问题的答案已经过时,因为谷歌云客户端自上一篇文章以来已经有了很大的发展.
此链接显示如何使用最新的客户端进行流式处理,这个链接有一个作业插入操作的示例,如前面在答案中所述.
原答案:
您可以使用几种不同的方法将数据插入BQ.
为了更深入地了解python-api是如何工作的,这里有你需要的一切:bq-python-api(起初文档有些可怕但是在你掌握了它之后它就相当简单了).
我使用两种主要方法将数据插入BQ.第一个是数据流,当你可以以实时方式逐行插入时,它应该被使用.代码示例:
import uuid
def stream_data(self, table, data, schema):
# first checks if table already exists. If it doesn't, then create it
r = self.service.tables().list(projectId=your_project_id,
datasetId=your_dataset_id).execute()
table_exists = [row['tableReference']['tableId'] for row in
r['tables'] if
row['tableReference']['tableId'] == table]
if not table_exists:
body = {
'tableReference': {
'tableId': table,
'projectId': your_project_id,
'datasetId': your_dataset_id
},
'schema': schema
}
self.service.tables().insert(projectId=your_project_id,
datasetId=your_dataset_id,
body=body).execute()
# with table created, now we can stream the data
# to do so we'll use the tabledata().insertall() function.
body = {
'rows': [
{
'json': data,
'insertId': str(uuid.uuid4())
}
]
}
self.service.tabledata().insertAll(projectId=your_project_id),
datasetId=your_dataset_id,
tableId=table,
body=body).execute(num_retries=5)
Run Code Online (Sandbox Code Playgroud)
在这里,我self.service对应你的service对象.
data我们项目中的输入示例:
data = {u'days_validated': '20', u'days_trained': '80', u'navigated_score': '1', u'description': 'First trial of top seller alg. No filter nor any condition is applied. Skus not present in train count as rank=0.5', u'init_cv_date': '2016-03-06', u'metric': 'rank', u'unix_date': '1461610020241117', u'purchased_score': '10', u'result': '0.32677139316724546', u'date': '2016-04-25', u'carted_score': '3', u'end_cv_date': '2016-03-25'}
Run Code Online (Sandbox Code Playgroud)
记者schema:
schema = {u'fields': [{u'type': u'STRING', u'name': u'date', u'mode': u'NULLABLE'}, {u'type': u'INTEGER', u'name': u'unix_date', u'mode': u'NULLABLE'}, {u'type': u'STRING', u'name': u'init_cv_date', u'mode': u'NULLABLE'}, {u'type': u'STRING', u'name': u'end_cv_date', u'mode': u'NULLABLE'}, {u'type': u'INTEGER', u'name': u'days_trained', u'mode': u'NULLABLE'}, {u'type': u'INTEGER', u'name': u'days_validated', u'mode': u'NULLABLE'}, {u'type': u'INTEGER', u'name': u'navigated_score', u'mode': u'NULLABLE'}, {u'type': u'INTEGER', u'name': u'carted_score', u'mode': u'NULLABLE'}, {u'type': u'INTEGER', u'name': u'purchased_score', u'mode': u'NULLABLE'}, {u'type': u'STRING', u'name': u'description', u'mode': u'NULLABLE'}, {u'type': u'STRING', u'name': u'metric', u'mode': u'NULLABLE'}, {u'type': u'FLOAT', u'name': u'result', u'mode': u'NULLABLE'}]}
Run Code Online (Sandbox Code Playgroud)
插入数据的另一种方法是使用作业插入功能.正如您在文档中看到的,它接受了几个数据源.我有一个例子,说明如何通过将查询结果加载到另一个表中来实现:
def create_table_from_query(self,
query,
dest_table,
how):
body = {
'configuration': {
'query': {
'destinationTable': {
'projectId': your_project_id,
'tableId': dest_table,
'datasetId': your_dataset_id
},
'writeDisposition': how,
'query': query,
},
}
}
response = self.connector.jobs().insert(projectId=self._project_id,
body=body).execute()
self.wait_job_completion(response['jobReference']['jobId'])
def wait_job_completion(self, job_id):
while True:
response = self.connector.jobs().get(projectId=self._project_id,
jobId=job_id).execute()
if response['status']['state'] == 'DONE':
return
Run Code Online (Sandbox Code Playgroud)
所述how输入接受文档在此字段中可用的选项(如"WRITE_TRUNCATE"或"WRITE_APPEND").
例如,您可以从csv文件加载数据,在这种情况下,configuration变量将按行定义:
"configuration": {
"load": {
"fieldDelimiter": "\t"
"sourceFormat": "CSV"
"destinationTable": {
"projectId": your_project_id,
"tableId": table_id,
"datasetId": your_dataset_id
},
"writeDisposition": "WRITE_TRUNCATE"
"schema": schema,
"sourceUris": file_location_in_google_cloud_storage
},
}
Run Code Online (Sandbox Code Playgroud)
(例如,使用由制表符分隔的csv文件.它也可以是json文件,文档将引导您完成可用选项).
运行jobs()需要一些时间才能完成(这就是我们创建wait_job_completion方法的原因).与实时流相比,它应该更便宜.
有任何问题请告诉我们,
| 归档时间: |
|
| 查看次数: |
17258 次 |
| 最近记录: |