- 2923 Views
- 4 replies
- 0 kudos
I have a setup-notebook that users %run to run a series of notebooks. The notebook is in the root folder of my repo. In a subfolder I have several notebooks I want to run. If I run the notebook in databricks, the relative paths work (%run "./subfolde...
- 2923 Views
- 4 replies
- 0 kudos
Latest Reply
It seems that the directory is different under GitHub actions. Not sure what exactly mentioned GitHub actions do and which one it is. Maybe you can share GitHub action used.
3 More Replies
by
Ulf
• New Contributor II
- 1293 Views
- 1 replies
- 0 kudos
I have the same problem as described in this post (https://community.databricks.com/s/question/0D58Y00009ObQgdSAF/running-jobs-using-notebooks-in-a-remote-azure-devops-services-repos-git-repository-is-generating-notebook-not-found-error) and get this...
- 1293 Views
- 1 replies
- 0 kudos
Latest Reply
Hi,Could you please check and let us know if this helps. https://community.databricks.com/s/question/0D53f00001GHVTNCA5/notebook-path-cant-be-in-dbfs
- 2544 Views
- 3 replies
- 0 kudos
Hi,I am trying to set git credentials for my service principal. I follow the process described here but I get a 403 error when making the POST request to ${DATABRICKS_HOST}/api/2.0/git-credentials with service principal token.By the way, I also canno...
- 2544 Views
- 3 replies
- 0 kudos
Latest Reply
Hi @Sébastien FALQUIER it works for me, there are no restrictions. Maybe the PAT token you generated for the service principle got expired. Can you generate a new token and try to run GET/git-credentials API?How are you creating PAT for service prin...
2 More Replies
- 3771 Views
- 2 replies
- 2 kudos
I have an Azure service principle that is used for our CI/CD pipelines. We do not have access to the Databricks UI via user logins. Our github repos also require SSO PATs. How can I configure the git integration for the service principal so that I ca...
- 3771 Views
- 2 replies
- 2 kudos
by
JoeS
• New Contributor III
- 6316 Views
- 1 replies
- 1 kudos
It's been quite difficult to stay in VSCode while developing data science experiments and tooling for Databricks. Our team would like to have Github Copilot for the databricks IDE.
- 6316 Views
- 1 replies
- 1 kudos
Latest Reply
Hi @Joe Shull Does @Kaniz Fatma response answer your question? If yes, would you be happy to mark it as best so that other members can find the solution more quickly?We'd love to hear from you.Thanks!
- 1319 Views
- 2 replies
- 0 kudos
I have in issue in Pyspark.Pandas to report. Is there a github or some forum where I can register my issue?Here's the issue
- 1319 Views
- 2 replies
- 0 kudos
Latest Reply
Hi @Krishna Zanwar Does @Debayan Mukherjee response answer your question? If yes, would you be happy to mark it as best so that other members can find the solution more quickly?We'd love to hear from you.Thanks!
1 More Replies
- 2948 Views
- 2 replies
- 1 kudos
I have in issue in Pyspark.Pandas to report.Is there a github or some forum where I can register my issue?Here's the issue
- 2948 Views
- 2 replies
- 1 kudos
Latest Reply
Hi, @Krishna Zanwar Could you please raise a support case to report the bug. Please refer https://docs.databricks.com/resources/support.html to engage with Databricks Support.
1 More Replies
- 1484 Views
- 0 replies
- 1 kudos
Hi,We have a working Github integration in place for our production workspace which is running 14 different jobs that are scheduled during different intervals, but throughout the entire day.The issue over the past 3-4 weeks that we have encountered i...
- 1484 Views
- 0 replies
- 1 kudos
by
Kit
• New Contributor III
- 5103 Views
- 7 replies
- 1 kudos
I have a list of jobs that are using the code in GitHub as source.Everything worked fine until yesterday. Yesterday, I noticed that all the job that were using GitHub as source were failing. Because of the following error: ``` Run result unavailable:...
- 5103 Views
- 7 replies
- 1 kudos
Latest Reply
Just an update, to round this out. We investigated further internally, and found that although we have a cleanup process in place to remove the internal repos that are being checked out for workflows, it was failing to catch up due to the sheer volum...
6 More Replies
- 2549 Views
- 2 replies
- 3 kudos
Hello DataBricks,Struggling with a workflow issue and wondering if anyone can help. I am developing my project in R and sometimes Python locally on my laptop, and committing the files to a git repo. I can then clone that repo in databricks, and *see*...
- 2549 Views
- 2 replies
- 3 kudos
Latest Reply
This is separate script which than need to be run from notebook (or job). I am not using R but in Python and Scala it works the same. In Python I am just importing it in notebook ("from folder_structure import myClass") in R probably similar. There ...
1 More Replies
- 1132 Views
- 0 replies
- 1 kudos
Repos let you use Git functionality such as cloning a remote repo, managing branches, pushing and pulling changes and visually comparing differences upon commit. Here's a quick video (3:56) on setting up a repo for Databricks on AWS. Pre-reqs: Git in...
- 1132 Views
- 0 replies
- 1 kudos
- 1882 Views
- 1 replies
- 0 kudos
I'm migrating my files from Bitbucket to Github, but every time that I need to clone something from bitbucket and send it to GitHub, I need to create a new token to integrate the tools. It seems that when you save a Github credential, it overrides t...
- 1882 Views
- 1 replies
- 0 kudos
Latest Reply
Cross-posting my answer from StackOverflow:Unfortunately right now it works only with a single Git provider. It looks like that you're linking individual notebooks into Git repository. You can simplify things by cloning the Bitbucket repository(-ies)...
- 2050 Views
- 1 replies
- 1 kudos
We are trying to download our repository which is hosted on GitHub Enterprise to use its python libraries in our notebooks.Earlier we had issues with downloading our repository using the repos feature in Databricks platform since only notebooks can b...
- 2050 Views
- 1 replies
- 1 kudos
Latest Reply
To fix the issue, we need to pass the token in the header itself git clone https://<token>:x-oauth-basic@github.com/owner/repo.gitExample:%sh
git clone https://<token>@github.com/darshanbargal4747/databricks.git
- 2690 Views
- 1 replies
- 0 kudos
I have a function within a module in my git-repo. I want to import that to my DB notebook - how can I do that?
- 2690 Views
- 1 replies
- 0 kudos
Latest Reply
Databricks Repos allows you to sync your work in Databricks with a remote Git repository. This makes it easier to implement development best practices. Databricks supports integrations with GitHub, Bitbucket, and GitLab. Using Repos you can bring you...