具有加载作业配置的表分区方案

时间:2016-11-17 21:58:34

标签: google-bigquery

根据https://cloud.google.com/bigquery/docs/creating-partitioned-tables#converting_dated_tables_into_a_partitioned_table,您可以为BQ表指定日期分区选项。

  

在Tables :: insert request

中指定分区配置

由于我们使用加载作业执行了很多ETL管道,因此使用<!DOCTYPE html> <html lang="en"> <head> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.3/angular.min.js"></script> </head> <body ng-app="myapp"> <div ng-controller="registerController"> <button ng-click='Register()' style='margin-top:15px'>Register</button> </div> <script type="text/javascript"> var app = angular.module('myapp', []); app.controller('registerController', function($scope, $http) { $scope.Register = function() { $http({ url:'http://tethys.dev.riekerinc.com/totalsolutions/UserExists/', method:'POST', data:{"email":"tina@test5.com"}, headers:{'Content-Type':'application/x-www-form-urlencoded'} }).success(function(data){ //console.log(data) alert("Success"); }); }; }); </script> </body> </html> 我想知道是否有一种方法可以使用加载作业配置指定表分区方案。

投入赞赏。

由于

2 个答案:

答案 0 :(得分:2)

现在必须在加载作业之前创建分区表。我们正在努力支持在加载/查询作业中创建分区表。

答案 1 :(得分:0)

非常热衷于此!我正在使用的Spark Connector是通过加载作业

完成的