Github user QiangCai commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1611#discussion_r155136917
--- Diff:
examples/spark2/src/main/scala/org/apache/carbondata/examples/StreamExample.scala
---
@@ -169,7 +168,7 @@ object StreamExample {
.format("carbondata")
.trigger(ProcessingTime("5 seconds"))
.option("checkpointLocation",
tablePath.getStreamingCheckpointDir)
- .option("tablePath", tablePath.getPath)
+ .option("dbName", "default")
--- End diff --
if using default database, it can work. If not, it can't work
---