| {{/* |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| */}} |
| <table class="configuration table table-bordered"> |
| <thead> |
| <tr> |
| <th class="text-left" style="width: 20%">Key</th> |
| <th class="text-left" style="width: 15%">Default</th> |
| <th class="text-left" style="width: 10%">Type</th> |
| <th class="text-left" style="width: 55%">Description</th> |
| </tr> |
| </thead> |
| <tbody> |
| <tr> |
| <td><h5>read.allow.fullScan</h5></td> |
| <td style="word-wrap: break-word;">true</td> |
| <td>Boolean</td> |
| <td>Whether to allow full scan when reading a partitioned table.</td> |
| </tr> |
| <tr> |
| <td><h5>read.changelog</h5></td> |
| <td style="word-wrap: break-word;">false</td> |
| <td>Boolean</td> |
| <td>Whether to read row in the form of changelog (add rowkind column in row to represent its change type).</td> |
| </tr> |
| <tr> |
| <td><h5>read.stream.maxBytesPerTrigger</h5></td> |
| <td style="word-wrap: break-word;">(none)</td> |
| <td>Long</td> |
| <td>The maximum number of bytes returned in a single batch.</td> |
| </tr> |
| <tr> |
| <td><h5>read.stream.maxFilesPerTrigger</h5></td> |
| <td style="word-wrap: break-word;">(none)</td> |
| <td>Integer</td> |
| <td>The maximum number of files returned in a single batch.</td> |
| </tr> |
| <tr> |
| <td><h5>read.stream.maxRowsPerTrigger</h5></td> |
| <td style="word-wrap: break-word;">(none)</td> |
| <td>Long</td> |
| <td>The maximum number of rows returned in a single batch.</td> |
| </tr> |
| <tr> |
| <td><h5>read.stream.maxTriggerDelayMs</h5></td> |
| <td style="word-wrap: break-word;">(none)</td> |
| <td>Long</td> |
| <td>The maximum delay between two adjacent batches, which used to create MinRowsReadLimit with read.stream.minRowsPerTrigger together.</td> |
| </tr> |
| <tr> |
| <td><h5>read.stream.minRowsPerTrigger</h5></td> |
| <td style="word-wrap: break-word;">(none)</td> |
| <td>Long</td> |
| <td>The minimum number of rows returned in a single batch, which used to create MinRowsReadLimit with read.stream.maxTriggerDelayMs together.</td> |
| </tr> |
| <tr> |
| <td><h5>requiredSparkConfsCheck.enabled</h5></td> |
| <td style="word-wrap: break-word;">true</td> |
| <td>Boolean</td> |
| <td>Whether to verify SparkSession is initialized with required configurations.</td> |
| </tr> |
| <tr> |
| <td><h5>write.merge-schema</h5></td> |
| <td style="word-wrap: break-word;">false</td> |
| <td>Boolean</td> |
| <td>If true, merge the data schema and the table schema automatically before write data.</td> |
| </tr> |
| <tr> |
| <td><h5>write.merge-schema.explicit-cast</h5></td> |
| <td style="word-wrap: break-word;">false</td> |
| <td>Boolean</td> |
| <td>If true, allow to merge data types if the two types meet the rules for explicit casting.</td> |
| </tr> |
| <tr> |
| <td><h5>write.use-v2-write</h5></td> |
| <td style="word-wrap: break-word;">false</td> |
| <td>Boolean</td> |
| <td>If true, v2 write will be used. Currently, only HASH_FIXED and BUCKET_UNAWARE bucket modes are supported. Will fall back to v1 write for other bucket modes. Currently, Spark V2 write does not support TableCapability.STREAMING_WRITE and TableCapability.ACCEPT_ANY_SCHEMA.</td> |
| </tr> |
| </tbody> |
| </table> |