我正在将数据从sql服务器拉到hdfs。这是我的摘录,

val predicates = Array[String]("int_id < 500000", "int_id >= 500000 && int_id < 1000000")

  val jdbcDF = spark.read.format("jdbc")
      .option("url", dbUrl)
      .option("databaseName", "DatabaseName")
      .option("dbtable", table)
      .option("user", "***")
      .option("password", "***")
      .option("predicates", predicates)
      .load()

我的Intellij IDE一直在说



在谓词中。不知道这怎么了。谁能看到这有什么问题吗?另外我如何在这里使用提取大小?

谢谢。

最佳答案

option方法仅接受BooleanLongDoubleString。要将predicates作为Array[String]传递,您必须使用jdbc方法,而不是在format方法中指定它。

val predicates = Array[String]("int_id < 500000", "int_id >= 500000 && int_id < 1000000")

val jdbcDF = spark.read.jdbc(
  url = dbUrl,
  table = table,
  predicates = predicates,
  connectionProperties = new Properties(???) // user, pass, db, etc.
)
您可以看到一个示例here

08-25 05:10