0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Databricksにて現在のノートブックのワークスペースURLを取得する方法

Last updated at Posted at 2021-07-18

概要

dbutils.notebook.entry_point.getDbutils().notebook().getContext()によりノートブックのセッション情報が取得でき、browserHostNameの値が現在実行しているノートブックのワークスペースURLであるようです。

import json
notebook_info = json.loads(dbutils.notebook.entry_point.getDbutils().notebook().getContext().toJson())

notebook_info

image.png

ただし、Jobsとして実行する場合に、取得できなことに注意してください。
image.png

現在のノートブックのURLを取得する方法

1. 下記のコードを実行

import json
browserHostName = json.loads(dbutils.notebook.entry_point
                                      .getDbutils()
                                      .notebook()
                                      .getContext()
                                  .toJson()
                                 )['tags']['browserHostName']

# プロトコルを追加
db_url = f"https://{browserHostName}" # DatabricksのURL 

print(db_url)

image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?