我有一个Person
标签,其中定义了created
属性:
schema.propertyKey(“created”).Timestamp().single().create()
当尝试使用DseGraphFrame通过created
中的dse spark
属性来过滤Person标签时,出现以下错误:
scala> g.V()。hasLabel(“ Person”)。has(“ created”, P.gt(“ 2018-10-07T14:46:26.790Z”))。count()。next()
org.apache.spark.sql.AnalysisException:无法解析'(
created
> 1538923586790L)'由于数据类型不匹配: '({created
> 1538923586790L)'(时间戳和bigint)。 '过滤 ((〜label#270 = Person)&&(created#280> 1538923586790))…
知道为什么吗?