<?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: How to obtain the server url for using spark's REST API in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/83606#M36974</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/116531"&gt;@prathameshJoshi&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I was able to get the API url using this piece of code and is working on my browser.&lt;BR /&gt;Not sure how to authenticate while making calls programmatically.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;from databricks_api import DatabricksAPI
from dbruntime.databricks_repl_context import get_context

databricks_api_instance = DatabricksAPI(
    host=get_context().apiUrl,
    token=get_context().apiToken,
)
host = get_context().browserHostName
cluster_id = get_context().clusterId
spark_context_id = databricks_api_instance.cluster.get_cluster(get_context().clusterId)['spark_context_id']

spark_ui_api_url = f"https://{host}/sparkui/{cluster_id}/driver-{spark_context_id}/api/v1/"
endpoint = 'applications'

print(spark_ui_api_url + endpoint)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 20 Aug 2024 12:53:52 GMT</pubDate>
    <dc:creator>menotron</dc:creator>
    <dc:date>2024-08-20T12:53:52Z</dc:date>
    <item>
      <title>How to obtain the server url for using spark's REST API</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/83410#M36926</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I want to access the stage and job information (usually available through Spark UI) through the REST API provided by Spark:&amp;nbsp;&lt;SPAN&gt;&lt;A href="https://community.databricks.com/" target="_blank"&gt;http://&amp;lt;server-url&amp;gt;:18080/api/v1&lt;/A&gt;/applications/[app-id]/stages. More information can be found at following link:&amp;nbsp;&lt;A href="https://spark.apache.org/docs/latest/monitoring.html#rest-api" target="_blank"&gt;https://spark.apache.org/docs/latest/monitoring.html#rest-api&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Now to access this API, we need the server URL. But I am having trouble while trying to find this server URL. Another similar discussion on this forum highlighted that I can obtain this URL by copying the URL present when Spark UI is opened.&lt;BR /&gt;&lt;BR /&gt;Please let me know how can these API's be accessed through Databricks. Thanks in advance.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2024 08:44:49 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/83410#M36926</guid>
      <dc:creator>prathameshJoshi</dc:creator>
      <dc:date>2024-08-19T08:44:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain the server url for using spark's REST API</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/83446#M36935</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/116531"&gt;@prathameshJoshi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;You can find this kind of information when you go to compute and click advanced options:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Slash_0-1724073743871.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/10419i2610E22A9D60C810/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="Slash_0-1724073743871.png" alt="Slash_0-1724073743871.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2024 13:22:39 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/83446#M36935</guid>
      <dc:creator>szymon_dybczak</dc:creator>
      <dc:date>2024-08-19T13:22:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain the server url for using spark's REST API</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/83574#M36957</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/110502"&gt;@szymon_dybczak&lt;/a&gt;&amp;nbsp;I have tried using it directly as well as the http path mentioned in the image you have posted. I have even tried using the spark ui url and even the url with only the cluster id. Nothing has worked for me. Perhaps if possible could you show me a dummy url which works with the Spark REST API for accessing jobs and stages.&lt;/P&gt;&lt;P&gt;For ex. sending request to this url -&amp;nbsp;&lt;A href="https://adb-1234.0.azuredatabricks.net/api/v1/applications" target="_blank"&gt;https://adb-1234.0.azuredatabricks.net/api/v1/applications&lt;/A&gt;&amp;nbsp;yields following error:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"error"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt; &lt;SPAN&gt;"Bad Target: /api/v1/applications"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;BR /&gt;Even if we add the http path mentioned like:&amp;nbsp;&lt;A href="https://adb-1234.azuredatabricks.net/sql/protocolv1/o/4567/cluster_id/api/v1/applications" target="_blank"&gt;https://adb-1234.azuredatabricks.net/sql/protocolv1/o/4567/cluster_id/api/v1/applications&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;we get the error&amp;nbsp;Path must be of form /sql/protocolv1/o/&amp;lt;orgId&amp;gt;/&amp;lt;clusterIdent&amp;gt;&lt;BR /&gt;&lt;BR /&gt;The errors are quite obvious but we don't know which url to use in order to remove them.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 20 Aug 2024 09:29:35 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/83574#M36957</guid>
      <dc:creator>prathameshJoshi</dc:creator>
      <dc:date>2024-08-20T09:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain the server url for using spark's REST API</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/83606#M36974</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/116531"&gt;@prathameshJoshi&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I was able to get the API url using this piece of code and is working on my browser.&lt;BR /&gt;Not sure how to authenticate while making calls programmatically.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;from databricks_api import DatabricksAPI
from dbruntime.databricks_repl_context import get_context

databricks_api_instance = DatabricksAPI(
    host=get_context().apiUrl,
    token=get_context().apiToken,
)
host = get_context().browserHostName
cluster_id = get_context().clusterId
spark_context_id = databricks_api_instance.cluster.get_cluster(get_context().clusterId)['spark_context_id']

spark_ui_api_url = f"https://{host}/sparkui/{cluster_id}/driver-{spark_context_id}/api/v1/"
endpoint = 'applications'

print(spark_ui_api_url + endpoint)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Aug 2024 12:53:52 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/83606#M36974</guid>
      <dc:creator>menotron</dc:creator>
      <dc:date>2024-08-20T12:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain the server url for using spark's REST API</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/83674#M36981</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/116531"&gt;@prathameshJoshi&lt;/a&gt;, Thanks for reaching out! Please review the responses and let us know which best addresses your question. Your feedback is valuable to us and the community.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the response resolves your issue, kindly mark it as the accepted solution. This will help close the thread and assist others with similar queries.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We appreciate your participation and are here if you need further assistance!&lt;/P&gt;</description>
      <pubDate>Tue, 20 Aug 2024 19:12:01 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/83674#M36981</guid>
      <dc:creator>Retired_mod</dc:creator>
      <dc:date>2024-08-20T19:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain the server url for using spark's REST API</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/83712#M36993</link>
      <description>&lt;P&gt;Thanks for providing a starting point, I tried out the URL which you have provided, but its not working when I try to send a request to it. I tried passing the Access token as a bearer token, but the request is sending back some login html page back.. Please find the output attached. Please let me know if there's any chance to fix it.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks in Advance.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for providing a starting point, I tried out the URL which you have provided, but its not working when I try to send a request to it. I tried passing the Access token as a bearer token, but the request is sending back some login html page back.. Please find the output attached. Please let me know if there's any chance to fix it.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks in Advance.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;!doctype html&amp;gt;
&amp;lt;html&amp;gt;
 &amp;lt;head&amp;gt;
  &amp;lt;meta charset="utf-8"&amp;gt;
  &amp;lt;meta http-equiv="Content-Language" content="en"&amp;gt;
  &amp;lt;title&amp;gt;Databricks - Sign In&amp;lt;/title&amp;gt;
  &amp;lt;meta name="viewport" content="width=960"&amp;gt;
  &amp;lt;link rel="icon" type="image/png" href="https://databricks-ui-assets.azureedge.net/favicon.ico"&amp;gt;
  &amp;lt;meta http-equiv="content-type" content="text/html; charset=UTF8"&amp;gt;
  &amp;lt;script id="__databricks_react_script"&amp;gt;&amp;lt;/script&amp;gt;
  &amp;lt;script&amp;gt;window.__DATABRICKS_SAFE_FLAGS__={
    "databricks.infra.showErrorModalOnFetchError": true,
    "databricks.fe.infra.useReact18": true,
    "databricks.fe.infra.useReact18NewAPI": false,
    "databricks.fe.infra.fixConfigPrefetch": true
},window.__DATABRICKS_CONFIG__={
    "isCuttingEdge": false,
    "publicPath": {
        "mlflow": "https://databricks-ui-assets.azureedge.net/",
        "dbsql": "https://databricks-ui-assets.azureedge.net/",
        "feature-store": "https://databricks-ui-assets.azureedge.net/",
        "monolith": "https://databricks-ui-assets.azureedge.net/",
        "jaws": "https://databricks-ui-assets.azureedge.net/"
    }
}&amp;lt;/script&amp;gt;
  &amp;lt;link rel="icon" href="https://databricks-ui-assets.azureedge.net/favicon.ico"&amp;gt;
  &amp;lt;script&amp;gt;
  function setNoCdnAndReload() {
      document.cookie = `x-databricks-cdn-inaccessible=true; path=/; max-age=86400`;
      const metric = 'cdnFallbackOccurred';
      const browserUserAgent = navigator.userAgent;
      const browserTabId = window.browserTabId;
      const performanceEntry = performance.getEntriesByType('resource').filter(e =&amp;gt; e.initiatorType === 'script').slice(-1)[
        0
    ]
      sessionStorage.setItem('databricks-cdn-fallback-telemetry-key', JSON.stringify({ tags: { browserUserAgent, browserTabId
        }, performanceEntry
    }));
      window.location.reload();
}
&amp;lt;/script&amp;gt;
  &amp;lt;script&amp;gt;
  // Set a manual timeout for dropped packets to CDN
  function loadScriptWithTimeout(src, timeout) {
     return new Promise((resolve, reject) =&amp;gt; {
        const script = document.createElement('script');
          script.defer = true;
          script.src=src;
          script.onload = resolve;
          script.onerror = reject;
          document.head.appendChild(script);
          setTimeout(() =&amp;gt; {
              reject(new Error('Script load timeout'));
        }, timeout);
    });
}
  loadScriptWithTimeout('https: //databricks-ui-assets.azureedge.net/static/js/login/login.acadbe8a.js', 10000).catch(setNoCdnAndReload);
&amp;lt;/script&amp;gt;
 &amp;lt;/head&amp;gt;
 &amp;lt;body class="light-mode"&amp;gt;
  &amp;lt;uses-legacy-bootstrap&amp;gt;
   &amp;lt;div id="login-page"&amp;gt;&amp;lt;/div&amp;gt;
  &amp;lt;/uses-legacy-bootstrap&amp;gt;
  &amp;lt;script&amp;gt;const telemetryEndpoint="/telemetry-unauth?t=",uiModuleName="workspaceLogin";function shouldIgnoreError(e){return!1
}function generateUuidV4(){const e=window.crypto?.randomUUID?.();return e||"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy
    ]/g,(e=&amp;gt;{const n=16*Math.random()|0;return("x"===e?n: 3&amp;amp;n|8).toString(16)
    }))
}function networkConnectivityTags(){const e=window.navigator.onLine,n=window.navigator.connection?.rtt??-1,t=window.navigator.connection?.downlink??-1;return{browserNavigatorOnline:e,browserConnectionEstimatedRtt:n,browserConnectionEstimatedDownlink:t,browserConnected:e&amp;amp;&amp;amp;n&amp;gt;0&amp;amp;&amp;amp;t&amp;gt;0
    }
}function createTelemetryRequestBody(e,n={},t=null){const o=Math.round(Date.now()/1e3),r={eventId:generateUuidV4(),metric:e,tags: {...n,...networkConnectivityTags(),browserTabId:window.browserTabId,browserUserAgent:navigator.userAgent
        },ts:o
    };return t&amp;amp;&amp;amp;(r.blob=t),JSON.stringify({uploadTime:o,items: [JSON.stringify(r)
        ]
    })
}function recordTelemetry(e,n={},t=""){const o={method: "POST",credentials: "include",body:createTelemetryRequestBody(e,n,t)
    };fetch(telemetryEndpoint+Date.now(),o)
}window.__databricks_networkConnectivityTags=networkConnectivityTags,Object.defineProperty(window,
"browserTabId",
{value:generateUuidV4()
}),window.recordTelemetry=recordTelemetry,recordTelemetry("uiInit",
{uiModule:uiModuleName,eventId: "init",eventClientSource:uiModuleName,eventType: "init"
});let logCount=0;function error_handler(e,n,t,o,r){logCount++&amp;gt;4||shouldIgnoreError(e)||recordTelemetry("uncaughtJsException",
    {eventType: "jsExceptionV3",jsExceptionMessage:e,jsExceptionSource:n,jsExceptionLineno:t,jsExceptionColno:o,jsExceptionBeforeInit:!0
    },r&amp;amp;&amp;amp;r.stack&amp;amp;&amp;amp;r.stack.toString())
}function sendBeaconOnPageExit(e){if(navigator.sendBeacon){const n=e&amp;amp;&amp;amp;e.type||"unknown",t=(Math.round(Date.now()/1e3),createTelemetryRequestBody("uiInit",
        {eventType: "pageExitBeforeAppInitComplete",eventName:n,eventClientSource:uiModuleName
        }));navigator.sendBeacon(telemetryEndpoint+Date.now(),t)
    }
}window.onerror=error_handler,window.onunhandledrejection=function(e){error_handler(String(e.reason),
    null,
    null,
    null,e.reason)
},window.addEventListener("beforeunload",sendBeaconOnPageExit),window.addEventListener("unload",sendBeaconOnPageExit),window.addEventListener("pagehide",sendBeaconOnPageExit),window.cleanupAfterAppInit=()=&amp;gt;{window.removeEventListener("beforeunload",sendBeaconOnPageExit),window.removeEventListener("unload",sendBeaconOnPageExit),window.removeEventListener("pagehide",sendBeaconOnPageExit)
}&amp;lt;/script&amp;gt;
 &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2024 06:24:08 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/83712#M36993</guid>
      <dc:creator>prathameshJoshi</dc:creator>
      <dc:date>2024-08-21T06:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain the server url for using spark's REST API</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/83714#M36994</link>
      <description>&lt;P&gt;Hi Kaniz,&lt;BR /&gt;&lt;BR /&gt;The solution posted by&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/64686"&gt;@menotron&lt;/a&gt;&amp;nbsp;is giving me some errors. Once those are fixed, I will mark the appropriate response as accepted solution.&lt;BR /&gt;&lt;BR /&gt;Thank You&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2024 06:26:49 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/83714#M36994</guid>
      <dc:creator>prathameshJoshi</dc:creator>
      <dc:date>2024-08-21T06:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain the server url for using spark's REST API</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/83771#M36998</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/116531"&gt;@prathameshJoshi&lt;/a&gt;, Try this.&amp;nbsp;&lt;SPAN&gt;Should be something like this:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;ADMIN_TOKEN="dapi9___________________________"
WORKSPACE="my_workspace.cloud.databricks.com"
CLUSTER="__________"
MPORT="40001"

PREFIX="https://${WORKSPACE}/driver-proxy-api/o/0/${CLUSTER}/${MPORT}"

curl -L -H "Authorization: Bearer $ADMIN_TOKEN" -X GET ${PREFIX}&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 21 Aug 2024 10:41:40 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/83771#M36998</guid>
      <dc:creator>Retired_mod</dc:creator>
      <dc:date>2024-08-21T10:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain the server url for using spark's REST API</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/83828#M37014</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/116531"&gt;@prathameshJoshi&lt;/a&gt;&amp;nbsp;The url mentioned by&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/9"&gt;@Retired_mod&lt;/a&gt;&amp;nbsp;seems to be the correct one.&lt;BR /&gt;You can use this script to interact with the monitoring REST API.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;from dbruntime.databricks_repl_context import get_context
import requests

host = get_context().browserHostName
cluster_id = get_context().clusterId

spark_ui_api_url = f"https://{host}/driver-proxy-api/o/0/{cluster_id}/40001/api/v1/"
endpoint = 'applications'

requests.get(spark_ui_api_url + endpoint, headers={"Authorization": f"Bearer {get_context().apiToken}"}).json()&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 21 Aug 2024 15:31:01 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/83828#M37014</guid>
      <dc:creator>menotron</dc:creator>
      <dc:date>2024-08-21T15:31:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain the server url for using spark's REST API</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/84045#M37115</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/9"&gt;@Retired_mod&lt;/a&gt;&amp;nbsp; and&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/64686"&gt;@menotron&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Thanks a lot; your solutions are working. I apologise for the delay, as I had some issue logging in.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Aug 2024 09:40:57 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/84045#M37115</guid>
      <dc:creator>prathameshJoshi</dc:creator>
      <dc:date>2024-08-23T09:40:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain the server url for using spark's REST API</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/109490#M43331</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/64686"&gt;@menotron&lt;/a&gt;&amp;nbsp;this work for cluster which are in running state, is there any way to get the same for terminated clusters?&lt;/P&gt;</description>
      <pubDate>Sat, 08 Feb 2025 14:17:47 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-obtain-the-server-url-for-using-spark-s-rest-api/m-p/109490#M43331</guid>
      <dc:creator>tanuboddihari</dc:creator>
      <dc:date>2025-02-08T14:17:47Z</dc:date>
    </item>
  </channel>
</rss>

