forked from elastic/connectors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmssql.py
700 lines (624 loc) · 23.9 KB
/
mssql.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
#
# Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
# or more contributor license agreements. Licensed under the Elastic License 2.0;
# you may not use this file except in compliance with the Elastic License 2.0.
#
"""Microsoft SQL source module is responsible to fetch documents from Microsoft SQL."""
import asyncio
import os
from functools import cached_property, partial
from tempfile import NamedTemporaryFile
import fastjsonschema
from asyncpg.exceptions._base import InternalClientError
from fastjsonschema import JsonSchemaValueException
from sqlalchemy import create_engine, text
from sqlalchemy.engine import URL
from sqlalchemy.exc import ProgrammingError
from connectors.filtering.validation import (
AdvancedRulesValidator,
SyncRuleValidationResult,
)
from connectors.source import BaseDataSource
from connectors.sources.generic_database import (
DEFAULT_FETCH_SIZE,
DEFAULT_RETRY_COUNT,
DEFAULT_WAIT_MULTIPLIER,
Queries,
configured_tables,
fetch,
hash_id,
is_wildcard,
map_column_names,
)
from connectors.utils import (
RetryStrategy,
get_pem_format,
iso_utc,
retryable,
)
# Connector will skip the below tables if it gets from the input
TABLES_TO_SKIP = {"msdb": ["sysutility_ucp_configuration_internal"]}
class MSSQLQueries(Queries):
"""Class contains methods which return query"""
def ping(self):
"""Query to ping source"""
return "SELECT 1+1"
def all_tables(self, **kwargs):
"""Query to get all tables"""
return f"SELECT table_name FROM information_schema.tables WHERE TABLE_SCHEMA = '{ kwargs['schema'] }'"
def table_primary_key(self, **kwargs):
"""Query to get the primary key"""
return f"SELECT C.COLUMN_NAME FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS T JOIN INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE C ON C.CONSTRAINT_NAME=T.CONSTRAINT_NAME WHERE C.TABLE_NAME='{kwargs['table']}' and C.TABLE_SCHEMA='{kwargs['schema']}' and T.CONSTRAINT_TYPE='PRIMARY KEY'"
def table_data(self, **kwargs):
"""Query to get the table data"""
return f'SELECT * FROM {kwargs["schema"]}."{kwargs["table"]}"'
def table_last_update_time(self, **kwargs):
"""Query to get the last update time of the table"""
return f"SELECT last_user_update FROM sys.dm_db_index_usage_stats WHERE object_id=object_id('{kwargs['schema']}.{kwargs['table']}')"
def table_data_count(self, **kwargs):
"""Query to get the number of rows in the table"""
return f'SELECT COUNT(*) FROM {kwargs["schema"]}."{kwargs["table"]}"'
def all_schemas(self):
"""Query to get all schemas of database"""
pass
class MSSQLAdvancedRulesValidator(AdvancedRulesValidator):
QUERY_OBJECT_SCHEMA_DEFINITION = {
"type": "object",
"properties": {
"tables": {"type": "array", "minItems": 1},
"query": {"type": "string", "minLength": 1},
},
"required": ["tables", "query"],
"additionalProperties": False,
}
SCHEMA_DEFINITION = {"type": "array", "items": QUERY_OBJECT_SCHEMA_DEFINITION}
SCHEMA = fastjsonschema.compile(definition=SCHEMA_DEFINITION)
def __init__(self, source):
self.source = source
async def validate(self, advanced_rules):
if len(advanced_rules) == 0:
return SyncRuleValidationResult.valid_result(
SyncRuleValidationResult.ADVANCED_RULES
)
return await self._remote_validation(advanced_rules)
@retryable(
retries=DEFAULT_RETRY_COUNT,
interval=DEFAULT_WAIT_MULTIPLIER,
strategy=RetryStrategy.EXPONENTIAL_BACKOFF,
)
async def _remote_validation(self, advanced_rules):
try:
MSSQLAdvancedRulesValidator.SCHEMA(advanced_rules)
except JsonSchemaValueException as e:
return SyncRuleValidationResult(
rule_id=SyncRuleValidationResult.ADVANCED_RULES,
is_valid=False,
validation_message=e.message,
)
tables_to_filter = {
table
for query_info in advanced_rules
for table in query_info.get("tables", [])
}
tables = {
table
async for table in self.source.mssql_client.get_tables_to_fetch(
is_filtering=True
)
}
missing_tables = tables_to_filter - tables
if len(missing_tables) > 0:
return SyncRuleValidationResult(
SyncRuleValidationResult.ADVANCED_RULES,
is_valid=False,
validation_message=f"Tables not found or inaccessible: {missing_tables}.",
)
return SyncRuleValidationResult.valid_result(
SyncRuleValidationResult.ADVANCED_RULES
)
class MSSQLClient:
def __init__(
self,
host,
port,
user,
password,
database,
tables,
schema,
ssl_enabled,
ssl_ca,
validate_host,
logger_,
retry_count=DEFAULT_RETRY_COUNT,
fetch_size=DEFAULT_FETCH_SIZE,
):
self.host = host
self.port = port
self.user = user
self.password = password
self.database = database
self.tables = tables
self.schema = schema
self.retry_count = retry_count
self.fetch_size = fetch_size
self.ssl_enabled = ssl_enabled
self.ssl_ca = ssl_ca
self.validate_host = validate_host
self.connection = None
self.certfile = ""
self.queries = MSSQLQueries()
self._logger = logger_
def set_logger(self, logger_):
self._logger = logger_
def close(self):
if os.path.exists(self.certfile):
try:
os.remove(self.certfile)
except Exception as exception:
self._logger.warning(
f"Something went wrong while removing temporary certificate file. Exception: {exception}"
)
if self.connection is not None:
self.connection.close()
@cached_property
def engine(self):
"""Create sync engine for mssql"""
connection_string = URL.create(
"mssql+pytds",
username=self.user,
password=self.password,
host=self.host,
port=self.port,
database=self.database,
)
connect_args = {}
if self.ssl_enabled:
self.create_pem_file()
connect_args = {
"cafile": self.certfile,
"validate_host": self.validate_host,
}
return create_engine(connection_string, connect_args=connect_args)
def create_pem_file(self):
"""Create pem file for SSL Verification"""
pem_certificates = get_pem_format(key=self.ssl_ca)
with NamedTemporaryFile(mode="w", suffix=".pem", delete=False) as cert:
cert.write(pem_certificates)
self.certfile = cert.name
async def get_cursor(self, query):
"""Executes the passed query on the Non-Async supported Database server and return cursor.
Args:
query (str): Database query to be executed.
Returns:
cursor: Synchronous cursor
"""
try:
loop = asyncio.get_running_loop()
if self.connection is None:
self.connection = await loop.run_in_executor(
executor=None, func=self.engine.connect # pyright: ignore
)
cursor = await loop.run_in_executor(
executor=None,
func=partial(self.connection.execute, statement=text(query)),
)
return cursor
except Exception as exception:
self._logger.warning(
f"Something went wrong while executing query. Exception: {exception}"
)
raise
async def ping(self):
return await anext(
fetch(
cursor_func=partial(self.get_cursor, self.queries.ping()),
fetch_size=1,
retry_count=self.retry_count,
)
)
async def get_tables_to_fetch(self, is_filtering=False):
tables = configured_tables(self.tables)
if is_wildcard(tables) or is_filtering:
if is_filtering:
self._logger.info("Syncing all tables: advanced sync rules are enabled")
else:
self._logger.info("Syncing all tables: 'tables' is set to '*'")
async for row in fetch(
cursor_func=partial(
self.get_cursor,
self.queries.all_tables(
database=self.database,
schema=self.schema,
),
),
fetch_size=self.fetch_size,
retry_count=self.retry_count,
):
yield row[0]
else:
self._logger.info(f"Fetching configured tables: {tables}")
for table in tables:
yield table
async def get_table_row_count(self, table):
[row_count] = await anext(
fetch(
cursor_func=partial(
self.get_cursor,
self.queries.table_data_count(
schema=self.schema,
table=table,
),
),
fetch_size=1,
retry_count=self.retry_count,
)
)
self._logger.info(f'Table "{table}" has {row_count} records')
return row_count
async def get_table_primary_key(self, table):
primary_keys = [
key
async for [key] in fetch(
cursor_func=partial(
self.get_cursor,
self.queries.table_primary_key(
schema=self.schema,
table=table,
),
),
fetch_size=self.fetch_size,
retry_count=self.retry_count,
)
]
self._logger.debug(f'Found primary keys for table "{table}": {primary_keys}')
return primary_keys
async def get_table_last_update_time(self, table):
self._logger.debug(f"Fetching last updated time for table: {table}")
[last_update_time] = await anext(
fetch(
cursor_func=partial(
self.get_cursor,
self.queries.table_last_update_time(
schema=self.schema,
table=table,
),
),
fetch_size=1,
retry_count=self.retry_count,
)
)
self._logger.debug(
f'Last updated time for table "{table}" is {last_update_time}'
)
return last_update_time
async def data_streamer(self, table=None, query=None):
"""Streaming data from a table
Args:
table (str): Table.
Raises:
exception: Raise an exception after retrieving
Yields:
list: It will first yield the column names, then data in each row
"""
record_count = 0
if query is not None:
cursor_query = query
self._logger.debug(f"Streaming records from database using query: {query}")
else:
cursor_query = self.queries.table_data(
schema=self.schema,
table=table,
)
self._logger.debug(f'Streaming records from database for table "{table}"')
async for data in fetch(
cursor_func=partial(
self.get_cursor,
cursor_query,
),
fetch_columns=True,
fetch_size=self.fetch_size,
retry_count=self.retry_count,
):
record_count += 1
yield data
class MSSQLDataSource(BaseDataSource):
"""Microsoft SQL Server"""
name = "Microsoft SQL Server"
service_type = "mssql"
advanced_rules_enabled = True
def __init__(self, configuration):
"""Setup connection to the Microsoft SQL database-server configured by user
Args:
configuration (DataSourceConfiguration): Instance of DataSourceConfiguration class.
"""
super().__init__(configuration=configuration)
self.database = self.configuration["database"]
self.schema = self.configuration["schema"]
self.mssql_client = MSSQLClient(
host=self.configuration["host"],
port=self.configuration["port"],
user=self.configuration["username"],
password=self.configuration["password"],
database=self.configuration["database"],
tables=self.configuration["tables"],
schema=self.configuration["schema"],
ssl_enabled=self.configuration["ssl_enabled"],
ssl_ca=self.configuration["ssl_ca"],
validate_host=self.configuration["validate_host"],
retry_count=self.configuration["retry_count"],
fetch_size=self.configuration["fetch_size"],
logger_=self._logger,
)
def _set_internal_logger(self):
self.mssql_client.set_logger(self._logger)
@classmethod
def get_default_configuration(cls):
return {
"host": {
"label": "Host",
"order": 1,
"type": "str",
},
"port": {
"display": "numeric",
"label": "Port",
"order": 2,
"type": "int",
},
"username": {
"label": "Username",
"order": 3,
"type": "str",
},
"password": {
"label": "Password",
"order": 4,
"sensitive": True,
"type": "str",
},
"database": {
"label": "Database",
"order": 5,
"type": "str",
},
"tables": {
"display": "textarea",
"label": "Comma-separated list of tables",
"options": [],
"order": 6,
"tooltip": "This configurable field is ignored when Advanced Sync Rules are used.",
"type": "list",
"value": "*",
},
"fetch_size": {
"default_value": DEFAULT_FETCH_SIZE,
"display": "numeric",
"label": "Rows fetched per request",
"order": 7,
"required": False,
"type": "int",
"ui_restrictions": ["advanced"],
},
"retry_count": {
"default_value": DEFAULT_RETRY_COUNT,
"display": "numeric",
"label": "Retries per request",
"order": 8,
"required": False,
"type": "int",
"ui_restrictions": ["advanced"],
},
"schema": {
"label": "Schema",
"order": 9,
"type": "str",
},
"ssl_enabled": {
"display": "toggle",
"label": "Enable SSL verification",
"order": 10,
"type": "bool",
"value": False,
},
"ssl_ca": {
"depends_on": [{"field": "ssl_enabled", "value": True}],
"label": "SSL certificate",
"order": 11,
"type": "str",
},
"validate_host": {
"display": "toggle",
"label": "Validate host",
"order": 12,
"type": "bool",
"value": False,
},
}
def advanced_rules_validators(self):
return [MSSQLAdvancedRulesValidator(self)]
async def close(self):
self.mssql_client.close()
async def ping(self):
"""Verify the connection with the database-server configured by user"""
self._logger.debug("Validating the Connector Configuration...")
try:
await self.mssql_client.ping()
except Exception as e:
msg = f"Can't connect to Microsoft SQL on {self.mssql_client.host}"
raise Exception(msg) from e
def row2doc(self, row, doc_id, table, timestamp):
row.update(
{
"_id": doc_id,
"_timestamp": timestamp,
"database": self.database,
"table": table,
"schema": self.schema,
}
)
return row
async def get_primary_key(self, tables):
self._logger.debug(f"Extracting primary keys for tables: {tables}")
primary_key_columns = []
for table in tables:
primary_key_columns.extend(
await self.mssql_client.get_table_primary_key(table)
)
primary_key_columns = sorted(primary_key_columns)
return map_column_names(
column_names=primary_key_columns, schema=self.schema, tables=tables
)
async def yield_rows_for_query(self, primary_key_columns, tables, query=None):
if query is None:
streamer = self.mssql_client.data_streamer(table=tables[0])
else:
streamer = self.mssql_client.data_streamer(query=query)
column_names = await anext(streamer)
column_names = map_column_names(
column_names=column_names, schema=self.schema, tables=tables
)
if not set(primary_key_columns) - set(column_names):
async for row in streamer:
row = dict(zip(column_names, row, strict=True))
yield row
else:
self._logger.warning(
f"Skipping query {query} for tables {', '.join(tables)} as primary key column name is not present in query."
)
async def fetch_documents_from_table(self, table):
"""Fetches all the table entries and format them in Elasticsearch documents
Args:
table (str): Name of table
Yields:
Dict: Document to be indexed
"""
self._logger.info(f'Fetching records for table "{table}"')
try:
docs_generator = self._yield_all_docs_from_tables(table=table)
async for doc in docs_generator:
yield doc
except (InternalClientError, ProgrammingError) as exception:
self._logger.warning(
f'Something went wrong while fetching document for table "{table}". Error: {exception}'
)
async def fetch_documents_from_query(self, tables, query):
"""Fetches all the data from the given query and format them in Elasticsearch documents
Args:
table (str): Name of table
query (str): Database Query
Yields:
Dict: Document to be indexed
"""
self._logger.info(
f"Fetching records for tables {tables} using the custom query: {query}"
)
try:
docs_generator = self._yield_docs_custom_query(tables=tables, query=query)
async for doc in docs_generator:
yield doc
except (InternalClientError, ProgrammingError) as exception:
self._logger.warning(
f"Something went wrong while fetching document for query {query} and tables {', '.join(tables)}. Error: {exception}"
)
async def _yield_docs_custom_query(self, tables, query):
primary_key_columns = await self.get_primary_key(tables=tables)
if not primary_key_columns:
self._logger.warning(
f"Skipping tables {', '.join(tables)} from database {self.database} since no primary key is associated with them. Assign primary key to the tables to index it in the next sync interval."
)
return
last_update_times = list(
filter(
lambda update_time: update_time is not None,
[
await self.mssql_client.get_table_last_update_time(table)
for table in tables
],
)
)
last_update_time = (
max(last_update_times) if len(last_update_times) else iso_utc()
)
async for row in self.yield_rows_for_query(
primary_key_columns=primary_key_columns, tables=tables, query=query
):
doc_id = f"{self.database}_{self.schema}_{hash_id(list(tables), row, primary_key_columns)}"
yield self.serialize(
doc=self.row2doc(
row=row, doc_id=doc_id, table=tables, timestamp=last_update_time
)
)
async def _yield_all_docs_from_tables(self, table):
row_count = await self.mssql_client.get_table_row_count(table=table)
if row_count > 0:
# Query to get the table's primary key
keys = await self.get_primary_key(tables=[table])
if keys:
try:
last_update_time = (
await self.mssql_client.get_table_last_update_time(table=table)
)
except Exception:
self._logger.warning(
f'Unable to fetch last_updated_time for table "{table}"'
)
last_update_time = None
async for row in self.yield_rows_for_query(
primary_key_columns=keys, tables=[table]
):
doc_id = (
f"{self.database}_{self.schema}_{hash_id([table], row, keys)}"
)
yield self.serialize(
doc=self.row2doc(
row=row,
doc_id=doc_id,
table=table,
timestamp=last_update_time or iso_utc(),
)
)
else:
self._logger.warning(
f'"{self.database}"."{table}" has no primary key and is skipped. Assign primary key to the table to index it in the next sync interval.'
)
else:
self._logger.warning(f'No rows found for table "{table}"')
async def get_docs(self, filtering=None):
"""Executes the logic to fetch databases, tables and rows in async manner.
Args:
filtering (Filtering): Object of class Filtering
Yields:
dictionary: Row dictionary containing meta-data of the row.
"""
self._logger.info("Successfully connected to Microsoft SQL")
if filtering and filtering.has_advanced_rules():
advanced_rules = filtering.get_advanced_rules()
self._logger.info(
f"Fetching records from the database using advanced sync rules: {advanced_rules}"
)
for rule in advanced_rules:
query = rule.get("query")
tables = rule.get("tables")
async for row in self.fetch_documents_from_query(
tables=tables, query=query
):
yield row, None
else:
table_count = 0
async for table in self.mssql_client.get_tables_to_fetch():
if (
self.database in TABLES_TO_SKIP.keys()
and table in TABLES_TO_SKIP[self.database]
):
self._logger.debug(
f"Skip table: {table} in database: {self.database}"
)
continue
table_count += 1
async for row in self.fetch_documents_from_table(table=table):
yield row, None
if table_count < 1:
self._logger.warning(
f"Fetched 0 tables for schema: {self.schema} and database: {self.database}"
)