Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1611#discussion_r154961220
--- 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 --
It can't work if `dbName` is not specified?
---