我正在尝试按照此处的说明从 scala 代码中添加排序键:https ://github.com/databricks/spark-redshift
df.write
.format(formatRS)
.option("url", connString)
.option("jdbcdriver", jdbcDriverRS)
.option("dbtable", table)
.option("tempdir", tempDirRS + table)
.option("usestagingtable", "true")
.option("diststyle", "KEY")
.option("distkey", "id")
.option("sortkeyspec", "INTERLEAVED SORTKEY (id,timestamp)")
.mode(mode)
.save()
排序键的实现是错误的,因为当我检查表信息时:
排序键 = INTERLEAVEDˇ
我需要正确的方法来添加排序键。