How to calculate Rank in dataframe using scala with example

Requirement :

You have marks of all the students of class and you want to find ranks of students using scala.

Given :

A pipe separated file which contains roll number and marks of students : below are the sample values :-

R_nomarks
101389
102412
103435

Please download sample file marks

 

Solution :

Step 1 : Loading the Raw data into hive  table

As you can see we have our raw data into file which is pipe separated. I am keeping the raw file into class8 directory which is just created . Use below commands:-

 cd bdp/projects/

mkdir class8

cd class8

cat marks.txt

Now I am putting this file into Hdfs location after creating stu_marks directory into Hdfs location.

Use below commands:-

 

 hadoop fs -mkdir bdps/stu_marks

hadoop fs -put marks.txt bdps/stu_marks/

hadoop fs -ls bdps/stu_marks/

Now we will load this file into hive table . Please refer this post if you have trouble loading file into hive table .You need to give pipe (|) as delimiter .

I have created one hive table  named as “Studnt_mrks” on top of this data .

Which have two columns and both of them are of Int type.

Please use below commands one by one to create a hive table on top of it.

 

 CREATE SCHEMA IF NOT EXISTS bdp;

CREATE EXTERNAL TABLE IF NOT EXISTS bdp.class8_marks

(roll_no INT,

ttl_marks INT)

ROW FORMAT DELIMITED

FIELDS TERMINATED BY '|'

STORED AS TEXTFILE

LOCATION 'hdfs://sandbox-hdp.hortonworks.com:8020/user/root/bdps/stu_marks';

As you can see above the Location which I gave here is the path where my hdfs file is present.

Step 2: – Loading hive table into Spark using scala

First open spark shell by using below command:-

 Spark-shell

Note :-  I am using spark 2.3 version .

 

Once the CLI is opened .Use below commands to load the hive table:-

 var stu_marks=spark.table("bdp.class8_marks")

here you can see stu_marks is the data frame which contains the data of hive table: – You can see the data using show command :-

 stu_marks.show()

Step 3 : Assign Rank to the students

Now let’s come to the actual logic to find the rank of the students :-

Please use below command to import the required functions

 import org.apache.spark.sql.expressions.Window

import org.apache.spark.sql.functions.rank

 

 var ranked=stu_marks.withColumn("rank",rank().over(Window.orderBy($"ttl_marks".desc)))

In above command I am using rank function over marks . As we want to rank higher if one has score higher marks, So we are using desc .

Below command will give you the expected results ,In which rank of student is assigned against roll no.

 ranked.show()

You can save the result as per your requirements .

Wrapping Up:

Here we have understood how the rank functions works and what is the simple use case of this function. We can assign rank partition wise as well ,For that you have to use partition by in over clause .

Rank can be used if you want to find the result of n’th rank holder .You can filter based on the required rank. If you are looking for the same code in python instead of scala .Please read this blog post .

Don’t forget to subscribe our blog.

Don’t miss the tutorial on Top Big data courses on Udemy you should Buy

Sharing is caring!

Subscribe to our newsletter
Loading

Leave a Reply