Github user jackylk commented on a diff in the pull request: https://github.com/apache/carbondata/pull/1205#discussion_r130923366 --- Diff: docs/dml-operation-on-carbondata.md --- @@ -149,6 +149,50 @@ You can use the following options to load data: * If this option is set to TRUE, then high.cardinality.identify.enable property will be disabled during data load. +- **SORT_SCOPE:** This property can have four possible values : + + * BATCH_SORT : The sorting scope is smaller and more index tree will be created,thus loading is faster but query maybe slower. + + * LOCAL_SORT : The sorting scope is bigger and one index tree per data node will be created, thus loading is slower but query is faster. + + * GLOBAL_SORT : The sorting scope is bigger and one index tree per task will be created, thus loading is slower but query is faster. + + * NO_SORT : Feasible if we want to load our data in unsorted manner. --- End diff -- Introduce this first
--- 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 infrastruct...@apache.org or file a JIRA ticket with INFRA. ---