[jira] [Updated] (CARBONDATA-3901) Documentation issues in https://github.com/apache/carbondata/tree/master/docs
Posted by Akash R Nilugal (Jira) on URL: http://apache-carbondata-dev-mailing-list-archive.168.s1.nabble.com/jira-Updated-CARBONDATA-3901-Documentation-issues-in-https-github-com-apache-carbondata-tree-master-s-tp102230.html
was:
*Issue 1 :* [https://github.com/apache/carbondata/blob/master/docs/alluxio-guide.md] getOrCreateCarbonSession not used in Carbon 2.0 version and should be removed.Issue 1 : [https://github.com/apache/carbondata/blob/master/docs/alluxio-guide.md] getOrCreateCarbonSession not used in Carbon 2.0 version and should be removed.
Testing use alluxio by CarbonSessionimport org.apache.spark.sql.CarbonSession._import org.apache.spark.sql.SparkSession val carbon = SparkSession.builder().master("local").appName("test").getOrCreateCarbonSession("alluxio://localhost:19998/carbondata");carbon.sql("CREATE TABLE carbon_alluxio(id String,name String, city String,age Int) STORED as carbondata");carbon.sql(s"LOAD DATA LOCAL INPATH '${CARBONDATA_PATH}/integration/spark/src/test/resources/sample.csv' into table carbon_alluxio");carbon.sql("select * from carbon_alluxio").show
*Issue 4 -* [https://github.com/apache/carbondata/blob/master/docs/index/bloomfilter-index-guide.md] Explain query does not hit the bloom. Hence the line "User can verify whether a query can leverage BloomFilter Index by executing {{EXPLAIN}} command, which will show the transformed logical plan, and thus user can check whether the BloomFilter Index can skip blocklets during the scan." needs to be removed.