Skip to content

Instantly share code, notes, and snippets.

@aialenti
Last active June 21, 2020 11:32
Show Gist options
  • Save aialenti/dddf4189c0db4694e77ae216cb8c757f to your computer and use it in GitHub Desktop.
Save aialenti/dddf4189c0db4694e77ae216cb8c757f to your computer and use it in GitHub Desktop.
val t0 = System.nanoTime()
// Create the Execution Plan
fact_table = fact_table.join(dimension_table2,
fact_table.col("dimension_2_id_suffix") === dimension_table.col("id_suffix"))
// 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