[CARBONDATA-694] update quick start document
diff --git a/docs/quick-start-guide.md b/docs/quick-start-guide.md
index 5a2d6e2..e6ef742 100644
--- a/docs/quick-start-guide.md
+++ b/docs/quick-start-guide.md
@@ -62,8 +62,9 @@
 * Create a CarbonSession :
 
 ```
-val carbon = SparkSession.builder().config(sc.getConf).getOrCreateCarbonSession()
+val carbon = SparkSession.builder().config(sc.getConf).getOrCreateCarbonSession("<hdfs store path>")
 ```
+NOTE: By default metastore location is pointed to "../carbon.metastore", user can provide own metastore location to CarbonSession like `SparkSession.builder().config(sc.getConf).getOrCreateCarbonSession("<hdfs store path>", "<local metastore path>")`
 
 #### Executing Queries