Skip to content

Instantly share code, notes, and snippets.

@mannharleen
Last active September 20, 2017 15:17
Show Gist options
  • Save mannharleen/c6281a2a49caf4d2edba5e25abd79a97 to your computer and use it in GitHub Desktop.
Save mannharleen/c6281a2a49caf4d2edba5e25abd79a97 to your computer and use it in GitHub Desktop.
hiveContext.udf.register("myudf",(a:Int, b:Int) => a+b)
//pyspark
//sqlContext.udf.register("myudf",lambda x,y: x+y)
hiveContext.sql("select myudf(1,2)").show
//same can be used with sqlContext
/*
Output:
+---+
|_c0|
+---+
| 3|
+---+
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment