Compare commits

...

5 Commits

Author SHA1 Message Date
Nico Poggi
dd72b3cfb9 Revert "Update Scala Logging to officially supported one"
This reverts commit 56f73482d7.
2018-10-19 16:40:35 +02:00
Nico Poggi
fd66b17305 Revert "Fixing TPCH DDL datatype of customer.c_nationkey from string to long (#167)"
This reverts commit aac7eb54c1.
2018-10-19 16:40:35 +02:00
Nico Poggi
de957dd168 Revert "Fix 3 local benchmark classes (#165)"
This reverts commit d9a41a1204.
2018-10-19 16:40:35 +02:00
Nico Poggi
12907e6796 Revert "Rebase for PR 87: Add -m for custom master, use SBT_HOME if set (#169)"
This reverts commit 3c1c9e9070.
2018-10-19 16:40:35 +02:00
Nico Poggi
1d659d9631 Revert "Coalesce(n) instead of hardcoded (1) for large tables/partitions"
This reverts commit 0367ff65a6.
2018-10-19 16:40:35 +02:00
5 changed files with 5 additions and 5 deletions

View File

@ -42,7 +42,7 @@ libraryDependencies += "org.scalatest" %% "scalatest" % "2.2.1" % "test"
libraryDependencies += "org.yaml" % "snakeyaml" % "1.17"
libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging" % "3.9.0"
libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging-slf4j" % "2.1.2"
resolvers += "Apache Development Snapshot Repository" at "https://repository.apache.org/content/repositories/snapshots"

View File

@ -18,7 +18,7 @@ package com.databricks.spark.sql.perf
import java.util.UUID
import com.typesafe.scalalogging.{LazyLogging => Logging}
import com.typesafe.scalalogging.slf4j.{LazyLogging => Logging}
import scala.concurrent.duration._
import scala.collection.mutable.ArrayBuffer

View File

@ -1,6 +1,6 @@
package com.databricks.spark.sql.perf.mllib
import com.typesafe.scalalogging.{LazyLogging => Logging}
import com.typesafe.scalalogging.slf4j.{LazyLogging => Logging}
import org.apache.spark.ml.attribute.{NominalAttribute, NumericAttribute}
import org.apache.spark.ml.{Estimator, PipelineStage, Transformer}
import org.apache.spark.ml.evaluation.Evaluator

View File

@ -4,7 +4,7 @@ package com.databricks.spark.sql.perf.mllib
import scala.io.Source
import scala.language.implicitConversions
import com.typesafe.scalalogging.{LazyLogging => Logging}
import com.typesafe.scalalogging.slf4j.{LazyLogging => Logging}
import org.apache.spark.sql.{DataFrame, SQLContext}
import org.apache.spark.{SparkConf, SparkContext}

View File

@ -3,7 +3,7 @@ package com.databricks.spark.sql.perf.mllib
import scala.collection.mutable.ArrayBuffer
import scala.util.control.NonFatal
import com.typesafe.scalalogging.{LazyLogging => Logging}
import com.typesafe.scalalogging.slf4j.{LazyLogging => Logging}
import org.apache.spark.ml.{Estimator, Transformer}
import org.apache.spark.sql._