- 3711 Views
- 3 replies
- 4 kudos
I have scala function as below, i am unable to understand how to write a scala jar with the same, please find below code i have used Enforcing Column-Level Encryption - Databrick %scala import com.macasaet.fernet.{Key, StringValidator, Token}import o...
- 3711 Views
- 3 replies
- 4 kudos
Latest Reply
I had to finally create the jar using teh intellij and sbt iconfiguration on the same env. and then installed the jar in the cluster it worked
2 More Replies
- 7393 Views
- 3 replies
- 1 kudos
I am in a situation where I have a notebook that runs in a pipeline that creates a "live streaming table". So, I cannot use a language other than sql in the pipeline. I would like to format a certain column in the pipeline using a scala code (it's a ...
- 7393 Views
- 3 replies
- 1 kudos
Latest Reply
no, DLT does not work with Scala unfortunately.Delta Live Tables are not vanilla spark.Is python an option instead of scala?
2 More Replies
by
TS
• New Contributor III
- 4105 Views
- 3 replies
- 3 kudos
Hello,I'm learning Scala / Spark and try to understand what's wrong with my function:I have a spark.sql query, stored in a variable:val uViewName = spark.sql("""
SELECT
v.Data_View_Name
FROM
apoHierarchy AS h
INNER JOIN apoView AS v ON h.View_N...
- 4105 Views
- 3 replies
- 3 kudos
Latest Reply
try add .first()(0) it will return only value from first row/column as currently you are returning Dataset: var uViewName = spark.sql(s"""
SELECT
v.Data_View_Name
FROM
apoHierarchy AS h
INNER JOIN apoView AS v ON h.View_Name = v.Context_View_N...
2 More Replies