You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've attached the notebook to a new cluster dedicated 16.0 DBR and I get error message:
SSLError: HTTPSConnectionPool(host='adb-984752964297111.11.azuredatabricks.net', port=443): Max retries exceeded with url: /api/2.0/workspace/import (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:2406)')))
File /databricks/python/lib/python3.12/site-packages/urllib3/connectionpool.py:714, in HTTPConnectionPool.urlopen(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, **response_kw)
713 # Make the request on the httplib connection object.
--> 714 httplib_response = self._make_request(
715 conn,
716 method,
717 url,
718 timeout=timeout_obj,
719 body=body,
720 headers=headers,
721 chunked=chunked,
722 )
724 # If we're going to release the connection in finally:, then
725 # the response doesn't need to know about the connection. Otherwise
726 # it will also try to release it and we'll have a double-release
727 # mess.
File /databricks/python/lib/python3.12/site-packages/requests/adapters.py:620, in HTTPAdapter.send(self, request, stream, timeout, verify, cert, proxies)
616 raise ProxyError(e, request=request)
618 if isinstance(e.reason, _SSLError):
619 # This branch is for urllib3 v1.22 and later.
--> 620 raise SSLError(e, request=request)
622 raise ConnectionError(e, request=request)
624 except ClosedPoolError as e:
The text was updated successfully, but these errors were encountered:
https://www.databricks.com/resources/demos/tutorials/lakehouse-platform/dbdemos-fsi-smart-claims
I'm trying to set up this dbdemo, using the setup here:
https://notebooks.databricks.com/demos/lakehouse-fsi-smart-claims/index.html#
%pip install dbdemos
import dbdemos
dbdemos.install('lakehouse-fsi-smart-claims')
I've attached the notebook to a new cluster dedicated 16.0 DBR and I get error message:
SSLError: HTTPSConnectionPool(host='adb-984752964297111.11.azuredatabricks.net', port=443): Max retries exceeded with url: /api/2.0/workspace/import (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:2406)')))
File /databricks/python/lib/python3.12/site-packages/urllib3/connectionpool.py:714, in HTTPConnectionPool.urlopen(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, **response_kw)
713 # Make the request on the httplib connection object.
--> 714 httplib_response = self._make_request(
715 conn,
716 method,
717 url,
718 timeout=timeout_obj,
719 body=body,
720 headers=headers,
721 chunked=chunked,
722 )
724 # If we're going to release the connection in
finally:
, then725 # the response doesn't need to know about the connection. Otherwise
726 # it will also try to release it and we'll have a double-release
727 # mess.
File /databricks/python/lib/python3.12/site-packages/requests/adapters.py:620, in HTTPAdapter.send(self, request, stream, timeout, verify, cert, proxies)
616 raise ProxyError(e, request=request)
618 if isinstance(e.reason, _SSLError):
619 # This branch is for urllib3 v1.22 and later.
--> 620 raise SSLError(e, request=request)
622 raise ConnectionError(e, request=request)
624 except ClosedPoolError as e:
The text was updated successfully, but these errors were encountered: