- 4238 Views
- 4 replies
- 0 kudos
Databricks docs here:https://docs.databricks.com/notebooks/notebook-isolation.htmlstate that "Every notebook attached to a cluster has a pre-defined variable named spark that represents a SparkSession." What if 2 users run the same notebook on the sa...
- 4238 Views
- 4 replies
- 0 kudos
Latest Reply
The spark session is isolated at the notebook level and is not isolated at the user level. So, two users accessing the same notebook will be using the same spark session
3 More Replies
by
gdev
• New Contributor
- 7355 Views
- 6 replies
- 3 kudos
I want to move notebooks , workflows , data from one users to another user in Azure Databricks. We move have access to that databricks. Is it possible? If, yes. How to move it.
- 7355 Views
- 6 replies
- 3 kudos
- 2104 Views
- 3 replies
- 3 kudos
I'm looking for some information regarding log4j vulnerability - if any databricks runtime should be changed manually by the client or when specific update will be applied.I know I can go through the docs by myself, finding out which log4j library is...
- 2104 Views
- 3 replies
- 3 kudos
Latest Reply
Thanks for sharing such important facts. I got the best security service provider website on the internet. They are excellence in the field of security.
2 More Replies
- 5161 Views
- 2 replies
- 4 kudos
Hi, is there a way to find out/monitor which users has used my cluster, how long and how many times in an azure databricks workspace ?
- 5161 Views
- 2 replies
- 4 kudos
Latest Reply
Hello, You can activate Audit logs ( More specifically Cluster logs) https://learn.microsoft.com/en-us/azure/databricks/administration-guide/account-settings/azure-diagnostic-logs It can be very helpful to track all the metrics.
1 More Replies
- 1724 Views
- 2 replies
- 0 kudos
Hi, when I add a new user from admin console, the name of the user is empty. It does not happen all the time. For some users, the username and name both are available. But for some new users, the value in the name column in the users list is empty. W...
- 1724 Views
- 2 replies
- 0 kudos
- 3429 Views
- 1 replies
- 5 kudos
How to find out the users who accessed Databricks and from which location
- 3429 Views
- 1 replies
- 5 kudos
Latest Reply
You can use Audit logs to fetch this dataQuery:%sqlSELECT DISTINCT userIdentity.email, sourceIPAddressFROM audit_logsWHERE serviceName = "accounts" AND actionName LIKE "%login%"Please find below the docs to analyse the Audit logshttps://docs.databric...
- 2730 Views
- 5 replies
- 2 kudos
Which rest API to use in order to list the groups that belong to a specific user
- 2730 Views
- 5 replies
- 2 kudos
Latest Reply
@Mohit Miglani ,Make sure to select the best option so the post will be moved to the top and will help in case more users have this question in the future.
4 More Replies
- 2148 Views
- 1 replies
- 0 kudos
Looking to pull a list of all the users in their workspaces (including the ones who have never done anything), is there a way to do that? This for AWS
- 2148 Views
- 1 replies
- 0 kudos
Latest Reply
You can use the SKIM APIs. Endpoint: https://docs.databricks.com/dev-tools/api/latest/scim/scim-users.html#get-users Or you can use the Workspace API. The workspace API does not have a direct list users command, but you can use the workspace API to l...
- 1394 Views
- 1 replies
- 0 kudos
If users are allowed to create clusters, how can an operations team prevent them from consuming excessive costs?
- 1394 Views
- 1 replies
- 0 kudos
Latest Reply
Cluster policies can be used to constrain the node types that are available to users to create clusters, the number of nodes they can use to create clusters and the max DBU consumption they can use.The following resources provide further information:...