-
Notifications
You must be signed in to change notification settings - Fork 167
/
Copy pathimpl.py
828 lines (686 loc) · 28.8 KB
/
impl.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
from dataclasses import dataclass
from typing import Dict, List, Optional, Any, Set, Union
from dbt.dataclass_schema import dbtClassMixin, ValidationError
import dbt.deprecations
import dbt.exceptions
import dbt.clients.agate_helper
from dbt import ui
from dbt.adapters.base import (
BaseAdapter, available, RelationType, SchemaSearchMap, AdapterConfig
)
from dbt.adapters.bigquery.relation import BigQueryRelation
from dbt.adapters.bigquery import BigQueryColumn
from dbt.adapters.bigquery import BigQueryConnectionManager
from dbt.contracts.graph.manifest import Manifest
from dbt.events import AdapterLogger
from dbt.utils import filter_null_values
import google.auth
import google.api_core
import google.oauth2
import google.cloud.exceptions
import google.cloud.bigquery
from google.cloud.bigquery import AccessEntry, SchemaField
import time
import agate
import json
logger = AdapterLogger("BigQuery")
# Write dispositions for bigquery.
WRITE_APPEND = google.cloud.bigquery.job.WriteDisposition.WRITE_APPEND
WRITE_TRUNCATE = google.cloud.bigquery.job.WriteDisposition.WRITE_TRUNCATE
def sql_escape(string):
if not isinstance(string, str):
dbt.exceptions.raise_compiler_exception(
f'cannot escape a non-string: {string}'
)
return json.dumps(string)[1:-1]
@dataclass
class PartitionConfig(dbtClassMixin):
field: str
data_type: str = 'date'
granularity: str = 'day'
range: Optional[Dict[str, Any]] = None
def render(self, alias: Optional[str] = None):
column: str = self.field
if alias:
column = f'{alias}.{self.field}'
if self.data_type.lower() == 'int64' or (
self.data_type.lower() == 'date' and
self.granularity.lower() == 'day'
):
return column
else:
return f'{self.data_type}_trunc({column}, {self.granularity})'
@classmethod
def parse(cls, raw_partition_by) -> Optional['PartitionConfig']:
if raw_partition_by is None:
return None
try:
cls.validate(raw_partition_by)
return cls.from_dict(raw_partition_by)
except ValidationError as exc:
msg = dbt.exceptions.validator_error_message(exc)
dbt.exceptions.raise_compiler_error(
f'Could not parse partition config: {msg}'
)
except TypeError:
dbt.exceptions.raise_compiler_error(
f'Invalid partition_by config:\n'
f' Got: {raw_partition_by}\n'
f' Expected a dictionary with "field" and "data_type" keys'
)
@dataclass
class GrantTarget(dbtClassMixin):
dataset: str
project: str
def render(self):
return f'{self.project}.{self.dataset}'
def _stub_relation(*args, **kwargs):
return BigQueryRelation.create(
database='',
schema='',
identifier='',
quote_policy={},
type=BigQueryRelation.Table
)
@dataclass
class BigqueryConfig(AdapterConfig):
cluster_by: Optional[Union[List[str], str]] = None
partition_by: Optional[Dict[str, Any]] = None
kms_key_name: Optional[str] = None
labels: Optional[Dict[str, str]] = None
partitions: Optional[List[str]] = None
grant_access_to: Optional[List[Dict[str, str]]] = None
hours_to_expiration: Optional[int] = None
require_partition_filter: Optional[bool] = None
partition_expiration_days: Optional[int] = None
merge_update_columns: Optional[str] = None
class BigQueryAdapter(BaseAdapter):
RELATION_TYPES = {
'TABLE': RelationType.Table,
'VIEW': RelationType.View,
'EXTERNAL': RelationType.External
}
Relation = BigQueryRelation
Column = BigQueryColumn
ConnectionManager = BigQueryConnectionManager
AdapterSpecificConfigs = BigqueryConfig
###
# Implementations of abstract methods
###
@classmethod
def date_function(cls) -> str:
return 'CURRENT_TIMESTAMP()'
@classmethod
def is_cancelable(cls) -> bool:
return False
def drop_relation(self, relation: BigQueryRelation) -> None:
is_cached = self._schema_is_cached(relation.database, relation.schema)
if is_cached:
self.cache_dropped(relation)
conn = self.connections.get_thread_connection()
table_ref = self.get_table_ref_from_relation(relation)
conn.handle.delete_table(table_ref)
def truncate_relation(self, relation: BigQueryRelation) -> None:
raise dbt.exceptions.NotImplementedException(
'`truncate` is not implemented for this adapter!'
)
def rename_relation(
self, from_relation: BigQueryRelation, to_relation: BigQueryRelation
) -> None:
conn = self.connections.get_thread_connection()
client = conn.handle
from_table_ref = self.get_table_ref_from_relation(from_relation)
from_table = client.get_table(from_table_ref)
if from_table.table_type == "VIEW" or \
from_relation.type == RelationType.View or \
to_relation.type == RelationType.View:
raise dbt.exceptions.RuntimeException(
'Renaming of views is not currently supported in BigQuery'
)
to_table_ref = self.get_table_ref_from_relation(to_relation)
self.cache_renamed(from_relation, to_relation)
client.copy_table(from_table_ref, to_table_ref)
client.delete_table(from_table_ref)
@available
def list_schemas(self, database: str) -> List[str]:
# the database string we get here is potentially quoted. Strip that off
# for the API call.
database = database.strip('`')
conn = self.connections.get_thread_connection()
client = conn.handle
def query_schemas():
# this is similar to how we have to deal with listing tables
all_datasets = client.list_datasets(project=database,
max_results=10000)
return [ds.dataset_id for ds in all_datasets]
return self.connections._retry_and_handle(
msg='list dataset', conn=conn, fn=query_schemas)
@available.parse(lambda *a, **k: False)
def check_schema_exists(self, database: str, schema: str) -> bool:
conn = self.connections.get_thread_connection()
client = conn.handle
dataset_ref = self.connections.dataset_ref(database, schema)
# try to do things with the dataset. If it doesn't exist it will 404.
# we have to do it this way to handle underscore-prefixed datasets,
# which appear in neither the information_schema.schemata view nor the
# list_datasets method.
try:
next(iter(client.list_tables(dataset_ref, max_results=1)))
except StopIteration:
pass
except google.api_core.exceptions.NotFound:
# the schema does not exist
return False
return True
def get_columns_in_relation(
self, relation: BigQueryRelation
) -> List[BigQueryColumn]:
try:
table = self.connections.get_bq_table(
database=relation.database,
schema=relation.schema,
identifier=relation.identifier
)
return self._get_dbt_columns_from_bq_table(table)
except (ValueError, google.cloud.exceptions.NotFound) as e:
logger.debug("get_columns_in_relation error: {}".format(e))
return []
def expand_column_types(
self, goal: BigQueryRelation, current: BigQueryRelation
) -> None:
# This is a no-op on BigQuery
pass
def expand_target_column_types(
self, from_relation: BigQueryRelation, to_relation: BigQueryRelation
) -> None:
# This is a no-op on BigQuery
pass
@available.parse_list
def list_relations_without_caching(
self, schema_relation: BigQueryRelation
) -> List[BigQueryRelation]:
connection = self.connections.get_thread_connection()
client = connection.handle
dataset_ref = self.connections.dataset_ref(
schema_relation.database, schema_relation.schema
)
all_tables = client.list_tables(
dataset_ref,
# BigQuery paginates tables by alphabetizing them, and using
# the name of the last table on a page as the key for the
# next page. If that key table gets dropped before we run
# list_relations, then this will 404. So, we avoid this
# situation by making the page size sufficiently large.
# see: https://github.com/dbt-labs/dbt/issues/726
# TODO: cache the list of relations up front, and then we
# won't need to do this
max_results=100000)
# This will 404 if the dataset does not exist. This behavior mirrors
# the implementation of list_relations for other adapters
try:
return [self._bq_table_to_relation(table) for table in all_tables]
except google.api_core.exceptions.NotFound:
return []
except google.api_core.exceptions.Forbidden as exc:
logger.debug('list_relations_without_caching error: {}'.format(str(exc)))
return []
def get_relation(
self, database: str, schema: str, identifier: str
) -> BigQueryRelation:
if self._schema_is_cached(database, schema):
# if it's in the cache, use the parent's model of going through
# the relations cache and picking out the relation
return super().get_relation(
database=database,
schema=schema,
identifier=identifier
)
try:
table = self.connections.get_bq_table(database, schema, identifier)
except google.api_core.exceptions.NotFound:
table = None
return self._bq_table_to_relation(table)
def create_schema(self, relation: BigQueryRelation) -> None:
database = relation.database
schema = relation.schema
logger.debug('Creating schema "{}.{}".', database, schema)
self.connections.create_dataset(database, schema)
def drop_schema(self, relation: BigQueryRelation) -> None:
database = relation.database
schema = relation.schema
logger.debug('Dropping schema "{}.{}".', database, schema)
self.connections.drop_dataset(database, schema)
self.cache.drop_schema(database, schema)
@classmethod
def quote(cls, identifier: str) -> str:
return '`{}`'.format(identifier)
@classmethod
def convert_text_type(cls, agate_table: agate.Table, col_idx: int) -> str:
return "string"
@classmethod
def convert_number_type(
cls, agate_table: agate.Table, col_idx: int
) -> str:
decimals = agate_table.aggregate(agate.MaxPrecision(col_idx))
return "float64" if decimals else "int64"
@classmethod
def convert_boolean_type(
cls, agate_table: agate.Table, col_idx: int
) -> str:
return "bool"
@classmethod
def convert_datetime_type(
cls, agate_table: agate.Table, col_idx: int
) -> str:
return "datetime"
@classmethod
def convert_date_type(cls, agate_table: agate.Table, col_idx: int) -> str:
return "date"
@classmethod
def convert_time_type(cls, agate_table: agate.Table, col_idx: int) -> str:
return "time"
###
# Implementation details
###
def _make_match_kwargs(
self, database: str, schema: str, identifier: str
) -> Dict[str, str]:
return filter_null_values({
'database': database,
'identifier': identifier,
'schema': schema,
})
def _get_dbt_columns_from_bq_table(self, table) -> List[BigQueryColumn]:
"Translates BQ SchemaField dicts into dbt BigQueryColumn objects"
columns = []
for col in table.schema:
# BigQuery returns type labels that are not valid type specifiers
dtype = self.Column.translate_type(col.field_type)
column = self.Column(
col.name, dtype, col.fields, col.mode)
columns.append(column)
return columns
def _agate_to_schema(
self, agate_table: agate.Table, column_override: Dict[str, str]
) -> List[SchemaField]:
"""Convert agate.Table with column names to a list of bigquery schemas.
"""
bq_schema = []
for idx, col_name in enumerate(agate_table.column_names):
inferred_type = self.convert_agate_type(agate_table, idx)
type_ = column_override.get(col_name, inferred_type)
bq_schema.append(SchemaField(col_name, type_))
return bq_schema
def _materialize_as_view(self, model: Dict[str, Any]) -> str:
model_database = model.get('database')
model_schema = model.get('schema')
model_alias = model.get('alias')
model_sql = model.get('compiled_sql')
logger.debug("Model SQL ({}):\n{}".format(model_alias, model_sql))
self.connections.create_view(
database=model_database,
schema=model_schema,
table_name=model_alias,
sql=model_sql
)
return "CREATE VIEW"
def _materialize_as_table(
self,
model: Dict[str, Any],
model_sql: str,
decorator: Optional[str] = None,
) -> str:
model_database = model.get('database')
model_schema = model.get('schema')
model_alias = model.get('alias')
if decorator is None:
table_name = model_alias
else:
table_name = "{}${}".format(model_alias, decorator)
logger.debug("Model SQL ({}):\n{}".format(table_name, model_sql))
self.connections.create_table(
database=model_database,
schema=model_schema,
table_name=table_name,
sql=model_sql
)
return "CREATE TABLE"
@available.parse(lambda *a, **k: '')
def copy_table(self, source, destination, materialization):
if materialization == 'incremental':
write_disposition = WRITE_APPEND
elif materialization == 'table':
write_disposition = WRITE_TRUNCATE
else:
dbt.exceptions.raise_compiler_error(
'Copy table materialization must be "copy" or "table", but '
f"config.get('copy_materialization', 'table') was "
f'{materialization}')
self.connections.copy_bq_table(
source, destination, write_disposition)
return "COPY TABLE with materialization: {}".format(materialization)
@classmethod
def poll_until_job_completes(cls, job, timeout):
retry_count = timeout
while retry_count > 0 and job.state != 'DONE':
retry_count -= 1
time.sleep(1)
job.reload()
if job.state != 'DONE':
raise dbt.exceptions.RuntimeException("BigQuery Timeout Exceeded")
elif job.error_result:
message = '\n'.join(
error['message'].strip() for error in job.errors
)
raise dbt.exceptions.RuntimeException(message)
def _bq_table_to_relation(self, bq_table):
if bq_table is None:
return None
return self.Relation.create(
database=bq_table.project,
schema=bq_table.dataset_id,
identifier=bq_table.table_id,
quote_policy={
'schema': True,
'identifier': True
},
type=self.RELATION_TYPES.get(
bq_table.table_type, RelationType.External
),
)
@classmethod
def warning_on_hooks(hook_type):
msg = "{} is not supported in bigquery and will be ignored"
warn_msg = dbt.ui.color(msg, ui.COLOR_FG_YELLOW)
logger.info(warn_msg)
@available
def add_query(self, sql, auto_begin=True, bindings=None,
abridge_sql_log=False):
if self.nice_connection_name() in ['on-run-start', 'on-run-end']:
self.warning_on_hooks(self.nice_connection_name())
else:
raise dbt.exceptions.NotImplementedException(
'`add_query` is not implemented for this adapter!')
###
# Special bigquery adapter methods
###
def _partitions_match(
self, table, conf_partition: Optional[PartitionConfig]
) -> bool:
"""
Check if the actual and configured partitions for a table are a match.
BigQuery tables can be replaced if:
- Both tables are not partitioned, OR
- Both tables are partitioned using the exact same configs
If there is a mismatch, then the table cannot be replaced directly.
"""
is_partitioned = (table.range_partitioning or table.time_partitioning)
if not is_partitioned and not conf_partition:
return True
elif conf_partition and table.time_partitioning is not None:
table_field = table.time_partitioning.field.lower()
table_granularity = table.partitioning_type.lower()
return table_field == conf_partition.field.lower() \
and table_granularity == conf_partition.granularity.lower()
elif conf_partition and table.range_partitioning is not None:
dest_part = table.range_partitioning
conf_part = conf_partition.range or {}
return dest_part.field == conf_partition.field \
and dest_part.range_.start == conf_part.get('start') \
and dest_part.range_.end == conf_part.get('end') \
and dest_part.range_.interval == conf_part.get('interval')
else:
return False
def _clusters_match(self, table, conf_cluster) -> bool:
"""
Check if the actual and configured clustering columns for a table
are a match. BigQuery tables can be replaced if clustering columns
match exactly.
"""
if isinstance(conf_cluster, str):
conf_cluster = [conf_cluster]
return table.clustering_fields == conf_cluster
@available.parse(lambda *a, **k: True)
def is_replaceable(
self,
relation,
conf_partition: Optional[PartitionConfig],
conf_cluster
) -> bool:
"""
Check if a given partition and clustering column spec for a table
can replace an existing relation in the database. BigQuery does not
allow tables to be replaced with another table that has a different
partitioning spec. This method returns True if the given config spec is
identical to that of the existing table.
"""
if not relation:
return True
try:
table = self.connections.get_bq_table(
database=relation.database,
schema=relation.schema,
identifier=relation.identifier
)
except google.cloud.exceptions.NotFound:
return True
return all((
self._partitions_match(table, conf_partition),
self._clusters_match(table, conf_cluster)
))
@available
def parse_partition_by(
self, raw_partition_by: Any
) -> Optional[PartitionConfig]:
"""
dbt v0.16.0 expects `partition_by` to be a dictionary where previously
it was a string. Check the type of `partition_by`, raise error
or warning if string, and attempt to convert to dict.
"""
return PartitionConfig.parse(raw_partition_by)
def get_table_ref_from_relation(self, relation):
return self.connections.table_ref(
relation.database, relation.schema, relation.identifier
)
def _update_column_dict(self, bq_column_dict, dbt_columns, parent=''):
"""
Helper function to recursively traverse the schema of a table in the
update_column_descriptions function below.
bq_column_dict should be a dict as obtained by the to_api_repr()
function of a SchemaField object.
"""
if parent:
dotted_column_name = '{}.{}'.format(parent, bq_column_dict['name'])
else:
dotted_column_name = bq_column_dict['name']
if dotted_column_name in dbt_columns:
column_config = dbt_columns[dotted_column_name]
bq_column_dict['description'] = column_config.get('description')
if column_config.get('policy_tags'):
bq_column_dict['policyTags'] = {
'names': column_config.get('policy_tags')
}
new_fields = []
for child_col_dict in bq_column_dict.get('fields', list()):
new_child_column_dict = self._update_column_dict(
child_col_dict,
dbt_columns,
parent=dotted_column_name
)
new_fields.append(new_child_column_dict)
bq_column_dict['fields'] = new_fields
return bq_column_dict
@available.parse_none
def update_columns(self, relation, columns):
if len(columns) == 0:
return
conn = self.connections.get_thread_connection()
table_ref = self.get_table_ref_from_relation(relation)
table = conn.handle.get_table(table_ref)
new_schema = []
for bq_column in table.schema:
bq_column_dict = bq_column.to_api_repr()
new_bq_column_dict = self._update_column_dict(
bq_column_dict,
columns
)
new_schema.append(SchemaField.from_api_repr(new_bq_column_dict))
new_table = google.cloud.bigquery.Table(table_ref, schema=new_schema)
conn.handle.update_table(new_table, ['schema'])
@available.parse_none
def update_table_description(
self, database: str, schema: str, identifier: str, description: str
):
conn = self.connections.get_thread_connection()
client = conn.handle
table_ref = self.connections.table_ref(database, schema, identifier)
table = client.get_table(table_ref)
table.description = description
client.update_table(table, ['description'])
@available.parse_none
def alter_table_add_columns(self, relation, columns):
logger.debug('Adding columns ({}) to table {}".'.format(
columns, relation))
conn = self.connections.get_thread_connection()
client = conn.handle
table_ref = self.get_table_ref_from_relation(relation)
table = client.get_table(table_ref)
new_columns = [col.column_to_bq_schema() for col in columns]
new_schema = table.schema + new_columns
new_table = google.cloud.bigquery.Table(table_ref, schema=new_schema)
client.update_table(new_table, ['schema'])
@available.parse_none
def load_dataframe(self, database, schema, table_name, agate_table,
column_override):
bq_schema = self._agate_to_schema(agate_table, column_override)
conn = self.connections.get_thread_connection()
client = conn.handle
table_ref = self.connections.table_ref(database, schema, table_name)
load_config = google.cloud.bigquery.LoadJobConfig()
load_config.skip_leading_rows = 1
load_config.schema = bq_schema
with open(agate_table.original_abspath, "rb") as f:
job = client.load_table_from_file(f, table_ref, rewind=True,
job_config=load_config)
timeout = self.connections.get_job_execution_timeout_seconds(conn)
with self.connections.exception_handler("LOAD TABLE"):
self.poll_until_job_completes(job, timeout)
@classmethod
def _catalog_filter_table(
cls, table: agate.Table, manifest: Manifest
) -> agate.Table:
table = table.rename(column_names={
col.name: col.name.replace('__', ':') for col in table.columns
})
return super()._catalog_filter_table(table, manifest)
def _get_catalog_schemas(self, manifest: Manifest) -> SchemaSearchMap:
candidates = super()._get_catalog_schemas(manifest)
db_schemas: Dict[str, Set[str]] = {}
result = SchemaSearchMap()
for candidate, schemas in candidates.items():
database = candidate.database
if database not in db_schemas:
db_schemas[database] = set(self.list_schemas(database))
if candidate.schema in db_schemas[database]:
result[candidate] = schemas
else:
logger.debug(
'Skipping catalog for {}.{} - schema does not exist'
.format(database, candidate.schema)
)
return result
@available.parse(lambda *a, **k: {})
def get_common_options(
self, config: Dict[str, Any], node: Dict[str, Any], temporary: bool = False
) -> Dict[str, Any]:
opts = {}
if (config.get('hours_to_expiration') is not None) and (not temporary):
expiration = (
'TIMESTAMP_ADD(CURRENT_TIMESTAMP(), INTERVAL '
'{} hour)').format(config.get('hours_to_expiration'))
opts['expiration_timestamp'] = expiration
if config.persist_relation_docs() and 'description' in node:
description = sql_escape(node['description'])
opts['description'] = '"""{}"""'.format(description)
if config.get('labels'):
labels = config.get('labels', {})
opts['labels'] = list(labels.items())
return opts
@available.parse(lambda *a, **k: {})
def get_table_options(
self, config: Dict[str, Any], node: Dict[str, Any], temporary: bool
) -> Dict[str, Any]:
opts = self.get_common_options(config, node, temporary)
if config.get('kms_key_name') is not None:
opts['kms_key_name'] = "'{}'".format(config.get('kms_key_name'))
if temporary:
expiration = 'TIMESTAMP_ADD(CURRENT_TIMESTAMP(), INTERVAL 12 hour)'
opts['expiration_timestamp'] = expiration
else:
# It doesn't apply the `require_partition_filter` option for a temporary table
# so that we avoid the error by not specifying a partition with a temporary table
# in the incremental model.
if config.get('require_partition_filter') is not None and \
config.get('partition_by') is not None:
opts['require_partition_filter'] = config.get(
'require_partition_filter')
if config.get('partition_expiration_days') is not None:
opts['partition_expiration_days'] = config.get(
'partition_expiration_days')
return opts
@available.parse(lambda *a, **k: {})
def get_view_options(
self, config: Dict[str, Any], node: Dict[str, Any]
) -> Dict[str, Any]:
opts = self.get_common_options(config, node)
return opts
@available.parse_none
def grant_access_to(self, entity, entity_type, role, grant_target_dict):
"""
Given an entity, grants it access to a permissioned dataset.
"""
conn = self.connections.get_thread_connection()
client = conn.handle
GrantTarget.validate(grant_target_dict)
grant_target = GrantTarget.from_dict(grant_target_dict)
dataset_ref = self.connections.dataset_ref(grant_target.project, grant_target.dataset)
dataset = client.get_dataset(dataset_ref)
if entity_type == 'view':
entity = self.get_table_ref_from_relation(entity).to_api_repr()
access_entry = AccessEntry(role, entity_type, entity)
access_entries = dataset.access_entries
if access_entry in access_entries:
logger.debug(f"Access entry {access_entry} "
f"already exists in dataset")
return
access_entries.append(AccessEntry(role, entity_type, entity))
dataset.access_entries = access_entries
client.update_dataset(dataset, ['access_entries'])
def get_rows_different_sql(
self,
relation_a: BigQueryRelation,
relation_b: BigQueryRelation,
column_names: Optional[List[str]] = None,
except_operator='EXCEPT DISTINCT'
) -> str:
return super().get_rows_different_sql(
relation_a=relation_a,
relation_b=relation_b,
column_names=column_names,
except_operator=except_operator,
)
def timestamp_add_sql(
self, add_to: str, number: int = 1, interval: str = 'hour'
) -> str:
return f'timestamp_add({add_to}, interval {number} {interval})'
def string_add_sql(
self, add_to: str, value: str, location='append',
) -> str:
if location == 'append':
return f"concat({add_to}, '{value}')"
elif location == 'prepend':
return f"concat('{value}', {add_to})"
else:
raise dbt.exceptions.RuntimeException(
f'Got an unexpected location value of "{location}"'
)