Last active
September 20, 2017 15:17
-
-
Save mannharleen/c6281a2a49caf4d2edba5e25abd79a97 to your computer and use it in GitHub Desktop.
This file contains 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
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