<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Sql Error on MultiNode cluster, but fine on SingleNode in Get Started Discussions</title>
    <link>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/95525#M4476</link>
    <description>&lt;P&gt;Have you granted ANY FILE access?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.databricks.com/en/dbfs/unity-catalog.html#how-does-dbfs-work-in-shared-access-mode" target="_blank"&gt;https://docs.databricks.com/en/dbfs/unity-catalog.html#how-does-dbfs-work-in-shared-access-mode&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;GRANT SELECT ON ANY FILE TO `&amp;lt;user@domain-name&amp;gt;`&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 22 Oct 2024 15:09:02 GMT</pubDate>
    <dc:creator>gchandra</dc:creator>
    <dc:date>2024-10-22T15:09:02Z</dc:date>
    <item>
      <title>Sql Error on MultiNode cluster, but fine on SingleNode</title>
      <link>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/94628#M4439</link>
      <description>&lt;P&gt;If I run the following code on a cluster in SingleNode mode it works fine, but if I run the exact same cell on a MultiNode Cluster It throws:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SparkConnectGrpcException: (java.sql.SQLTransientConnectionException) Could not connect to address=(host=HOSTm)(port=PORT)(type=master) : (conn=715518) Connections using insecure transport are prohibited while --require_secure_transport=ON.&lt;/LI-CODE&gt;&lt;P&gt;code:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;secret_scope="myScope"
user = dbutils.secrets.get(secret_scope, "MyUser")
password = dbutils.secrets.get(secret_scope, "MyPass")
url = dbutils.secrets.get(secret_scope, "MyURL") #format: jdbc:mysql://DOMAIN:PORT/SCHEMA
host = dbutils.secrets.get(secret_scope, "MyHost")

options = {
    "url": url,
    "query": "select 1 as id",
    "user": user,
    "password": password,
    "useSSL": "True",
    "sslmode": "required",
    "ssl" : "{ \"ca\" = \"/dbfs/databricks/certs/aws-global-bundle.pem\"}",
    "serverSslCert": "dbfs:/databricks/certs/aws-global-bundle.pem",
    "isolationLevel":"READ_UNCOMMITTED",
    "enabledSslProtocolSuites":"TLSv1.2",
}
df = spark.read.format('JDBC').options(**options).load()
df.display()&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas? seems like maybe its some spark setting I'm missing.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2024 17:43:42 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/94628#M4439</guid>
      <dc:creator>brandocomando8</dc:creator>
      <dc:date>2024-10-17T17:43:42Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Error on MultiNode cluster, but fine on SingleNode</title>
      <link>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/94681#M4446</link>
      <description>&lt;P&gt;Try moving the .pem files from dbfs to WSFS or Volume&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2024 02:26:54 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/94681#M4446</guid>
      <dc:creator>gchandra</dc:creator>
      <dc:date>2024-10-18T02:26:54Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Error on MultiNode cluster, but fine on SingleNode</title>
      <link>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/94902#M4455</link>
      <description>&lt;P&gt;I tried both and get the same error.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2024 15:14:51 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/94902#M4455</guid>
      <dc:creator>brandocomando8</dc:creator>
      <dc:date>2024-10-18T15:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Error on MultiNode cluster, but fine on SingleNode</title>
      <link>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/94903#M4456</link>
      <description>&lt;P&gt;changed to:&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"serverSslCert"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"/Volumes/catalog/schema/volume/aws-global-bundle.pem"&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;got the same error&lt;BR /&gt;to confirm its not an issues with the pem file I was able to view the contents of the file with:&lt;BR /&gt;dbutils.fs.head("/Volumes/catalog/schema/volume/aws-global-bundle.pem")&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 18 Oct 2024 15:33:53 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/94903#M4456</guid>
      <dc:creator>brandocomando8</dc:creator>
      <dc:date>2024-10-18T15:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Error on MultiNode cluster, but fine on SingleNode</title>
      <link>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/94904#M4457</link>
      <description>&lt;P&gt;Try this code from Shared Compute&amp;nbsp;&lt;/P&gt;
&lt;P&gt;dbutils.fs.ls("/dfbs/databricks/")&lt;/P&gt;
&lt;P&gt;I see you are using /dbfs/databricks under SSL key.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2024 15:48:16 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/94904#M4457</guid>
      <dc:creator>gchandra</dc:creator>
      <dc:date>2024-10-18T15:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Error on MultiNode cluster, but fine on SingleNode</title>
      <link>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/94914#M4458</link>
      <description>&lt;P&gt;Thanks for the quick reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;dbutils.fs.ls("dbfs:/databricks/certs/")
[FileInfo(path='dbfs:/databricks/certs/aws-global-bundle.pem', name='aws-global-bundle.pem', size=152872, modificationTime=1728053118000)]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV&gt;current state:&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;secret_scope="myScope"
user = dbutils.secrets.get(secret_scope, "MyUser")
password = dbutils.secrets.get(secret_scope, "MyPass")
url = dbutils.secrets.get(secret_scope, "MyURL") #format: jdbc:mysql://DOMAIN:PORT/SCHEMA
host = dbutils.secrets.get(secret_scope, "MyHost")

options = {
    "url": url,
    "query": "select 1 as id",
    "user": user,
    "password": password,
    "useSSL": "True",
    "sslmode": "required",
    "serverSslCert": "dbfs:/databricks/certs/aws-global-bundle.pem",
    "isolationLevel":"READ_UNCOMMITTED",
    "enabledSslProtocolSuites":"TLSv1.2",
}
df = spark.read.format('JDBC').options(**options).load()
df.display()​&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;Same error:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SparkConnectGrpcException: (java.sql.SQLTransientConnectionException) Could not connect to address=(host=HOSTm)(port=PORT)(type=master) : (conn=715518) Connections using insecure transport are prohibited while --require_secure_transport=ON.​&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2024 16:19:40 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/94914#M4458</guid>
      <dc:creator>brandocomando8</dc:creator>
      <dc:date>2024-10-18T16:19:40Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Error on MultiNode cluster, but fine on SingleNode</title>
      <link>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/95397#M4470</link>
      <description>&lt;P&gt;I see you gave a thumbs up; if the solution worked, can you please Accept it?&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2024 03:48:35 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/95397#M4470</guid>
      <dc:creator>gchandra</dc:creator>
      <dc:date>2024-10-22T03:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Error on MultiNode cluster, but fine on SingleNode</title>
      <link>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/95519#M4475</link>
      <description>&lt;P&gt;Sorry, I was just trying to get you attention back on this post. No the issue is not resolved.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2024 14:48:48 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/95519#M4475</guid>
      <dc:creator>brandocomando8</dc:creator>
      <dc:date>2024-10-22T14:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Error on MultiNode cluster, but fine on SingleNode</title>
      <link>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/95525#M4476</link>
      <description>&lt;P&gt;Have you granted ANY FILE access?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.databricks.com/en/dbfs/unity-catalog.html#how-does-dbfs-work-in-shared-access-mode" target="_blank"&gt;https://docs.databricks.com/en/dbfs/unity-catalog.html#how-does-dbfs-work-in-shared-access-mode&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;GRANT SELECT ON ANY FILE TO `&amp;lt;user@domain-name&amp;gt;`&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2024 15:09:02 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/95525#M4476</guid>
      <dc:creator>gchandra</dc:creator>
      <dc:date>2024-10-22T15:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Error on MultiNode cluster, but fine on SingleNode</title>
      <link>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/95528#M4477</link>
      <description>&lt;P&gt;Thanks for looking into this,&lt;BR /&gt;I was able to grant myself select on any file, but it did not resolve the issue&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2024 15:33:40 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/95528#M4477</guid>
      <dc:creator>brandocomando8</dc:creator>
      <dc:date>2024-10-22T15:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Error on MultiNode cluster, but fine on SingleNode</title>
      <link>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/95597#M4478</link>
      <description>&lt;P&gt;Will it be possible to paste the cluster config screenshot of the ones that work and the ones that fail?&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2024 19:01:16 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/95597#M4478</guid>
      <dc:creator>gchandra</dc:creator>
      <dc:date>2024-10-22T19:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Error on MultiNode cluster, but fine on SingleNode</title>
      <link>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/95602#M4479</link>
      <description>&lt;P&gt;Can you try with this config?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;options = { &lt;BR /&gt;&lt;SPAN class="hljs-string"&gt;"url"&lt;/SPAN&gt;: url, &lt;BR /&gt;&lt;SPAN class="hljs-string"&gt;"query"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"select 1 as id"&lt;/SPAN&gt;, &lt;BR /&gt;&lt;SPAN class="hljs-string"&gt;"user"&lt;/SPAN&gt;: user, &lt;BR /&gt;&lt;SPAN class="hljs-string"&gt;"password"&lt;/SPAN&gt;: password, &lt;BR /&gt;&lt;SPAN class="hljs-string"&gt;"useSSL"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"true"&lt;/SPAN&gt;, &lt;SPAN class="hljs-comment"&gt;# Use lowercase 'true'&lt;/SPAN&gt; &lt;BR /&gt;&lt;SPAN class="hljs-string"&gt;"sslmode"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"VERIFY_CA"&lt;/SPAN&gt;, &lt;BR /&gt;&lt;SPAN class="hljs-string"&gt;"serverSslCert"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"/dbfs/databricks/certs/aws-global-bundle.pem"&lt;/SPAN&gt;, &lt;BR /&gt;&lt;SPAN class="hljs-string"&gt;"isolationLevel"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"READ_UNCOMMITTED"&lt;/SPAN&gt;, &lt;BR /&gt;&lt;SPAN class="hljs-string"&gt;"enabledSslProtocolSuites"&lt;/SPAN&gt;: &lt;SPAN class="hljs-string"&gt;"TLSv1.2"&lt;/SPAN&gt;, }&lt;/PRE&gt;
&lt;P&gt;There are some minor changes please see whether this works in both cluster modes.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2024 19:37:52 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/95602#M4479</guid>
      <dc:creator>gchandra</dc:creator>
      <dc:date>2024-10-22T19:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Error on MultiNode cluster, but fine on SingleNode</title>
      <link>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/95604#M4480</link>
      <description>&lt;P&gt;unfortunately, same error.&lt;BR /&gt;Emailed the cluster config json files to our SA, whom you are working with.&amp;nbsp;&lt;BR /&gt;the difference is:&lt;BR /&gt;works:&lt;BR /&gt;"data_security_mode": "NONE",&lt;BR /&gt;"spark_conf": {&lt;BR /&gt;"spark.master": "local[*, 4]",&lt;BR /&gt;"spark.databricks.cluster.profile": "singleNode"&lt;BR /&gt;},&lt;BR /&gt;&lt;BR /&gt;doesn't work:&lt;BR /&gt;"spark_conf": {}&lt;BR /&gt;"data_security_mode": "USER_ISOLATION"&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2024 19:45:59 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/95604#M4480</guid>
      <dc:creator>brandocomando8</dc:creator>
      <dc:date>2024-10-22T19:45:59Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Error on MultiNode cluster, but fine on SingleNode</title>
      <link>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/95608#M4481</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;data_security_mode": "NONE"&lt;/STRONG&gt;:&amp;nbsp; This is a non-Unity Catalog Cluster. No Governance enforced.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;"data_security_mode": "USER_ISOLATION"&lt;/STRONG&gt;: This is a UC Shared Compute cluster that has certain limitations when accessing Low-Level APIs, RDDs, and dbfs/data bricks folders.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;If the .pem files are copied under /Workspace/Shared or /Volumes you should be able to access them via &lt;BR /&gt;&lt;BR /&gt;/Workspace/Shared/file.pem&lt;BR /&gt;/Volumes/path/file.pem&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Please make sure READ access to these folders is available.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2024 20:12:05 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/95608#M4481</guid>
      <dc:creator>gchandra</dc:creator>
      <dc:date>2024-10-22T20:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Error on MultiNode cluster, but fine on SingleNode</title>
      <link>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/95611#M4482</link>
      <description>&lt;P&gt;so I copied the pem file into a volume:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;/Volumes/catalog/schema/volume/aws-global-bundle.pem&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;and to the workspace:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;/Workspace/Shared/global-bundle.pem&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;data sec mode: None cannot read this file and so throws the error:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Failed to find serverSslCert file. serverSslCert=/Volumes/catalog/schema/volume.....&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;this is expected since UC is not enabled basically in this mode.&amp;nbsp;&lt;BR /&gt;I get the same thing if I try to reference it at the workspace location:&amp;nbsp;/Workspace/Shared/global-bundle.pem.&lt;BR /&gt;&lt;BR /&gt;But really I want it to work with data security mode User isolation. the result is the same error as before using both locations:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SparkConnectGrpcException: (java.sql.SQLTransientConnectionException) Could not connect to address=(host=HOSTm)(port=PORT)(type=master) : (conn=715518) Connections using insecure transport are prohibited while --require_secure_transport=ON.​&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;What is interesting to me is its either not getting to the part where it looks for this pem file, OR its getting passed it but erroring out afterwards. To test this I tried a bogus file location in the volume&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;/Volumes/catalog/schema/volume/bad.pem&lt;/LI-CODE&gt;&lt;P&gt;Same error. Which makes me thing its erroring before its even going to look for that file....&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2024 21:26:49 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/95611#M4482</guid>
      <dc:creator>brandocomando8</dc:creator>
      <dc:date>2024-10-22T21:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Error on MultiNode cluster, but fine on SingleNode</title>
      <link>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/95761#M4486</link>
      <description>&lt;P&gt;Any ideas on what to try next?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2024 17:18:25 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/sql-error-on-multinode-cluster-but-fine-on-singlenode/m-p/95761#M4486</guid>
      <dc:creator>brandocomando8</dc:creator>
      <dc:date>2024-10-23T17:18:25Z</dc:date>
    </item>
  </channel>
</rss>

