-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add TPCDS benchmarking utility class #1
base: master
Are you sure you want to change the base?
Conversation
val conf = new SparkConf() | ||
conf.set("spark.hadoop.hive.exec.scratchdir", "/tmp/hive-scratch") | ||
// Add the following to set hive metastore uri | ||
// ("spark.hadoop.hive.metastore.uris", "thrift://pdxa-axg-17-vm1.prod.twttr.net:31131") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please remove our hostname?
conf.set("spark.hadoop.hive.exec.scratchdir", "/tmp/hive-scratch") | ||
// Add the following to set hive metastore uri | ||
// ("spark.hadoop.hive.metastore.uris", "thrift://pdxa-axg-17-vm1.prod.twttr.net:31131") | ||
conf.set("spark.hadoop.hive.metastore.kerberos.principal", "hive/hive-metastore@TWITTER.BIZ") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And principal too
numPartitions: Int = 100) | ||
numPartitions: Int = 100, | ||
databaseName: String = "", | ||
createHiveTableEnabled: Boolean = false) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please also update the doc on how to use with newly added options?
This PR intends to add a benchmarking utility class that can help run a stand alone spark benchmarking application to benchmark TPCDS data.