Github user xuchuanyin commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2239#discussion_r184842192
--- Diff:
integration/spark2/src/main/scala/org/apache/carbondata/store/SparkCarbonStore.scala
---
@@ -110,8 +110,16 @@ class SparkCarbonStore extends MetaCachedCarbonStore {
}
def startSearchMode(): Unit = {
--- End diff --
I think the log can be optimized like below:
```
"Starting search mode master"
```
```
s"Waiting search mode master to start, retrying $count times"
```
```
Search mode master started
```
---