I have JDBC HOCON configuration for a SQL Server JDBC data source, which uses the JDBC URL format:
jdbc:sqlserver://myDBhost\\myDBInstance
This works fine, and allows me to successfully connect to my SQL Server data source using the Streaming JDBC Query operators. However, the same URL format does not work for the
Database Change Data Capture adapter, where it fails:
INFO InputAdapter: Failed to connect to database 'jdbc:sqlserver://myDBhost\\myDBInstance'"
WARN InputAdapter: Adapter is shutting down: The connection to the host myDBhost,
named instance \myDBinstance failed. Error: "java.net.SocketTimeoutException: Receive timed out".
Verify the server and instance names and check that no firewall is blocking UDP traffic to port 1434.
For SQL Server 2005 or later, verify that the SQL Server Browser Service is running on the host.