Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions java/core/src/java/org/apache/orc/OrcConf.java
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public enum OrcConf {
"dictionary encoding. Use 1 to always use dictionary encoding."),
DICTIONARY_MAX_SIZE_IN_BYTES("orc.dictionary.max.size.bytes",
"orc.dictionary.max.size.bytes",
16 * 1024 * 1024,
0,
"If the total size of the dictionary is greater than this\n" +
", turn off dictionary encoding. Use 0 to disable this check."),
ROW_INDEX_STRIDE_DICTIONARY_CHECK("orc.dictionary.early.check",
Expand Down Expand Up @@ -190,7 +190,7 @@ public enum OrcConf {
+ " Use orc.stripe.row.count instead if the value larger than orc.stripe.row.count."),
STRIPE_SIZE_CHECKRATIO("orc.stripe.size.check.ratio",
"orc.stripe.size.check.ratio",
2.0,
0.0,
"Flush stripe if the tree writer size in bytes is larger than (this * orc.stripe.size). " +
"Use 0 to disable this check."),
OVERWRITE_OUTPUT_FILE("orc.overwrite.output.file", "orc.overwrite.output.file", false,
Expand Down
4 changes: 2 additions & 2 deletions site/_docs/core-java-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ permalink: /docs/core-java-config.html
</tr>
<tr>
<td><code>orc.dictionary.max.size.bytes</code></td>
<td>16777216</td>
<td>0</td>
<td>
If the total size of the dictionary is greater than this, turn off dictionary encoding. Use 0 to disable this check.
</td>
Expand Down Expand Up @@ -293,7 +293,7 @@ permalink: /docs/core-java-config.html
</tr>
<tr>
<td><code>orc.stripe.size.check.ratio</code></td>
<td>2.0</td>
<td>0.0</td>
<td>
Flush stripe if the tree writer size in bytes is larger than (this * orc.stripe.size). Use 0 to disable this check.
</td>
Expand Down
Loading