Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/incubator-carbondata/pull/7#discussion_r69284120
--- Diff: docs/Quick-Start.md ---
@@ -60,12 +60,14 @@ $ ./bin/spark-shell --master local --jars
${carbondata_jar},${mysql_jar}
import org.apache.spark.sql.CarbonContext
import java.io.File
import org.apache.hadoop.hive.conf.HiveConf
-val cc = new CarbonContext(sc, "./carbondata/store")
+val storePath = "hdfs://hacluster/Opt/CarbonStore"
+val cc = new CarbonContext(sc, storePath)
cc.setConf("carbon.kettle.home","./carbondata/carbonplugins")
val metadata = new File("").getCanonicalPath + "/carbondata/metadata"
cc.setConf("hive.metastore.warehouse.dir", metadata)
cc.setConf(HiveConf.ConfVars.HIVECHECKFILEFORMAT.varname, "false")
```
+*Note*: `storePath` should be a hdfs path, the path is used to store table
data.
--- End diff --
May be in Note you can mention as `storePath` can be hdfs path as well like
`val storePath = "hdfs://hacluster/Opt/CarbonStore`
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---