fix #43 for some reason we need to set different folders for temp and…#71
Open
dircsem wants to merge 1 commit intoegen:masterfrom
Open
fix #43 for some reason we need to set different folders for temp and…#71dircsem wants to merge 1 commit intoegen:masterfrom
dircsem wants to merge 1 commit intoegen:masterfrom
Conversation
… and mount point, because spark cluster need a different url to access the azure datalake
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This fixes $43 for azure datalake gen1 and gen2, and for that I need to add some configuration options.
For this to work you need to mount your datalake into databricks cluster.
This is a working sample
Df.write.
format("com.springml.spark.sftp").
option("host", salesforceHost).
option("username", salesforceUser).
option("password", salesforcePw).
option("fileType", "csv").
option("delimiter", ",").
option("azuremountpoint", tempFolder). // /dbfs/mnt/your_mount_point/your_folder
option("templocation", gen2TempFolder"). // same address as temp folder, but with abfss protocol
option("gen","gen2").
save(output_destination)