Closed raghavchalapathy closed 1 year ago
Solved !! I was using wrong label "label", "player"
The correct label is "player" instead of cases and code which works is df = spark.read.format( "com.vesoft.nebula.connector.NebulaDataSource").option( "type", "vertex").option( "spaceName", "basketballplayer").option( "label", "player").option( "returnCols", "name,age").option( "metaAddress", "metad0:9559").option( "partitionNumber", 1).option( "user", "root").option( "passwd", "nebula").option( "operateType", "read").load()
Thanks @raghavchalapathy !
df = spark.read.format( "com.vesoft.nebula.connector.NebulaDataSource").option( "type", "vertex").option( "spaceName", "basketballplayer").option( "label", "cases").option( "returnCols", "*").option( "metaAddress", "metad0:9559").option( "partitionNumber", 1).option( "user", "root").option( "passwd", "nebula").option( "operateType", "read").load()
Getting error ETAG_NOT FOUND