scala> def f1(x:Int):Unit = {
| x match{
| case 1 => println("One")
| case 2 => println("Two")
| case 3 => println("Three")
| case 4 => println("Four")
| case _ => println("Other Number")
| }
| }
f1: (x: Int)Unit
scala> f1(1)
One
scala> f1(2)
Two
scala> f1(_)
res2: Int => Unit = $$Lambda$1067/1853443923@2e1ba142
scala> f1(0)
Other Number
Subscribe to:
Post Comments (Atom)
Flume - Simple Demo
// create a folder in hdfs : $ hdfs dfs -mkdir /user/flumeExa // Create a shell script which generates : Hadoop in real world <n>...
-
Import data from MySQL to HDFS using SQOOP with conditional data importing //Conditional import using Where sqoop import \ -connect jdbc:m...
-
// How to add auto generated column Index to existing dataframe? scala> import org.apache.spark.sql.functions._ import org.apache.spark.s...
-
Input file: emp.csv ---------------- empno,ename,designation,manager,hire_date,sal,deptno 7788,SCOTT,ANALYST,7566,12/9/1982,3000,20 73...
No comments:
Post a Comment