You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by br...@apache.org on 2016/10/03 18:03:36 UTC

[1/2] drill git commit: change note in config options introduction about config file changes in Drill 1.8

Repository: drill
Updated Branches:
  refs/heads/gh-pages 365dd28b2 -> 69ac9c48d


change note in config options introduction about config file changes in Drill 1.8


Project: http://git-wip-us.apache.org/repos/asf/drill/repo
Commit: http://git-wip-us.apache.org/repos/asf/drill/commit/694dce98
Tree: http://git-wip-us.apache.org/repos/asf/drill/tree/694dce98
Diff: http://git-wip-us.apache.org/repos/asf/drill/diff/694dce98

Branch: refs/heads/gh-pages
Commit: 694dce9835f857390786fd6210001e8e3a5a7e1e
Parents: 365dd28
Author: Bridget Bevens <bb...@maprtech.com>
Authored: Fri Sep 30 16:16:28 2016 -0700
Committer: Bridget Bevens <bb...@maprtech.com>
Committed: Fri Sep 30 16:16:28 2016 -0700

----------------------------------------------------------------------
 .../010-configuration-options-introduction.md                    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill/blob/694dce98/_docs/configure-drill/configuration-options/010-configuration-options-introduction.md
----------------------------------------------------------------------
diff --git a/_docs/configure-drill/configuration-options/010-configuration-options-introduction.md b/_docs/configure-drill/configuration-options/010-configuration-options-introduction.md
index a834291..6f30d8b 100644
--- a/_docs/configure-drill/configuration-options/010-configuration-options-introduction.md
+++ b/_docs/configure-drill/configuration-options/010-configuration-options-introduction.md
@@ -1,12 +1,12 @@
 ---
 title: "Configuration Options Introduction"
-date: 2016-08-12 01:11:42 UTC
+date: 2016-09-30 23:16:29 UTC
 parent: "Configuration Options"
 ---
 
 Drill provides many configuration options that you can enable, disable, or modify. Modifying certain configuration options can impact Drill performance. Many of the configuration options reside in the `drill-env.sh` script and the `drill-override.conf` configuration file located in the `$DRILL_HOME/conf` directory. Drill loads these files from `/etc/drill/conf`, if it exists. Otherwise, Drill loads the files from the `$DRILL_HOME/conf` directory.  
 
-{% include startnote.html %}As of Drill 1.8, default Drill settings reside in `$DRILL_HOME/bin/drill-config.sh`. You can override many settings by creating an entry in `$DRILL_HOME/conf/drill-env.sh`. The file includes descriptions of the options that you can set.{% include endnote.html %}
+{% include startnote.html %}As of Drill 1.8, most of the system options listed below are set in `$DRILL_HOME/conf/drill-override.conf`. Settings controlled through environment variables reside in `$DRILL_HOME/bin/drill-config.sh`. You can create an entry in `$DRILL_HOME/conf/drill-env.sh` to override many of the settings in `drill-config.sh`. See [Configuration and Launch Script Changes]({{site.baseurl}}/docs/apache-drill-1-8-0-release-notes/#configuration-and-launch-script-changes) in the Drill 1.8 release notes. {% include endnote.html %}
 
 The sys.options table contains information about system and session options. The sys.boot table contains information about Drill start-up options. The section, ["Start-up Options"]({{site.baseurl}}/docs/start-up-options), covers how to configure and view key boot options. The following table lists the system options in alphabetical order and provides a brief description of supported options.
 


[2/2] drill git commit: edits to typos in physical operators page

Posted by br...@apache.org.
edits to typos in physical operators page


Project: http://git-wip-us.apache.org/repos/asf/drill/repo
Commit: http://git-wip-us.apache.org/repos/asf/drill/commit/69ac9c48
Tree: http://git-wip-us.apache.org/repos/asf/drill/tree/69ac9c48
Diff: http://git-wip-us.apache.org/repos/asf/drill/diff/69ac9c48

Branch: refs/heads/gh-pages
Commit: 69ac9c48d32c02e5bb5a5d9061ee86c19e944405
Parents: 694dce9
Author: Bridget Bevens <bb...@maprtech.com>
Authored: Fri Sep 30 16:20:31 2016 -0700
Committer: Bridget Bevens <bb...@maprtech.com>
Committed: Fri Sep 30 16:20:31 2016 -0700

----------------------------------------------------------------------
 .../performance-tuning-reference/020-physical-operators.md     | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill/blob/69ac9c48/_docs/performance-tuning/performance-tuning-reference/020-physical-operators.md
----------------------------------------------------------------------
diff --git a/_docs/performance-tuning/performance-tuning-reference/020-physical-operators.md b/_docs/performance-tuning/performance-tuning-reference/020-physical-operators.md
index d019b82..215a427 100644
--- a/_docs/performance-tuning/performance-tuning-reference/020-physical-operators.md
+++ b/_docs/performance-tuning/performance-tuning-reference/020-physical-operators.md
@@ -1,6 +1,6 @@
 ---
 title: "Physical Operators"
-date: 2016-06-03 22:11:51 UTC
+date: 2016-09-30 23:20:32 UTC
 parent: "Performance Tuning Reference"
 --- 
 
@@ -13,10 +13,10 @@ Drill uses the following operators to perform data distribution over the network
 | Operator             | Description                                                                                                                                                                                                                                                                                                                                               |
 |----------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
 | HashToRandomExchange | A HashToRandomExchange gets an   input row, computes a hash value on the distribution key, determines the   destination receiver based on the hash value, and sends the row in a batch   operation. The join key or aggregation group-by keys are examples of distribution   keys. The destination receiver is a minor fragment on a destination   node.  |
-| HashToMergeExchange  | A HashToMergeExchange is similar   to the HashToRandomExchange operator, except that each destination receiver   mergers incoming streams of sorted data received from a sender.                                                                                                                                                                          |
+| HashToMergeExchange  | A HashToMergeExchange is similar   to the HashToRandomExchange operator, except that each destination receiver   merges incoming streams of sorted data received from a sender.                                                                                                                                                                          |
 | UnionExchange        | A UnionExchange is a   serialization operator in which each sender sends to a single (common)   destination. The receiver \u201cunions\u201d the input streams from various senders.                                                                                                                                                                                |
 | SingleMergeExchange  | A SingleMergeExchange is   distribution operator in which each sender sends a sorted stream of data to a   single receiver. The receiver performs a Merge operation to merge all of the   incoming streams. This operator is useful when performing an ORDER BY operation   that requires a final global ordering.                                        |
-| BroadcastExchange    | A BroadcastExchange is a   distrubtion operation in which each sender sends its input data to all N   receivers via a broadcast.                                                                                                                                                                                                                          |
+| BroadcastExchange    | A BroadcastExchange is a   distribution operation in which each sender sends its input data to all N   receivers via a broadcast.                                                                                                                                                                                                                          |
 | UnorderedMuxExchange | An UnorderedMuxExchange is an   operation that multiplexes the data from all minor fragments on a node so the   data can be sent out on a single channel to a destination receiver. A sender   node only needs to maintain buffers for each receiving node instead of each   receiving minor fragment on every node.                                    |
 
 ## Join Operators