For the MSSQL source are we able to set the isolat...
# ingestion
c
For the MSSQL source are we able to set the isolation level?
We are experiencing blocking on a few of our tables due to profiling being enabled.
h
@careful-insurance-60247, I think you can specify the isolation level for MSSQL using the
options
config field MSSQL Datahub Source Configuration. Also see SQL Alchemy Engine.
c
thanks for the info @helpful-optician-78938 I was already headed down that path.
Copy code
table_pattern:
      deny:
        - "^.*\\.sys_.*" # deny all tables that start with sys_
        - "^.*\\.cdc.*"
    options:
      isolation_level: "READ UNCOMMITTED"
    profiling:
      enabled: true
👍 1
had to comment out line 143 in site-packages/sqlalchemy_pytds/dialect.py