Last active
October 27, 2019 22:56
-
-
Save aialenti/b57a04d89fa9419eaed486495b5fec75 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
val t0 = System.nanoTime() | |
// Create the Execution Plan | |
fact_table = fact_table.join(dimension_table, | |
fact_table.col("dimension_id") === dimension_table.col("id")) | |
// Perform an action to run the execution | |
fact_table.count | |
val t1 = System.nanoTime() | |
println("Elapsed time: " + (t1 - t0)/10e8 + "s") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment