This is an automated email from the ASF dual-hosted git repository. alexey pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/kudu.git
commit 3ac06337db360189539600ae4aa7c340a4ac8083 Author: Alexey Serbin <[email protected]> AuthorDate: Fri Jan 29 15:41:27 2021 -0800 [docs] minor update on the known issues I was re-reading the Known Issues page at kudu.apache.org and noticed a few nits: this patch addresses those. Change-Id: Ifc2fd273d2a78442795f41b02dec4974e0221c51 Reviewed-on: http://gerrit.cloudera.org:8080/17009 Tested-by: Kudu Jenkins Reviewed-by: Grant Henke <[email protected]> --- docs/known_issues.adoc | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/known_issues.adoc b/docs/known_issues.adoc index 203b195..3cdd719 100644 --- a/docs/known_issues.adoc +++ b/docs/known_issues.adoc @@ -46,7 +46,7 @@ * Auto-generated primary keys are not supported. -* Cells making up a composite primary key are limited to a total of 16KB after the internal +* Cells making up a composite primary key are limited to a total of 16KiB after the internal composite-key encoding done by Kudu. === Columns @@ -64,11 +64,14 @@ * Tables must have an odd number of replicas, with a maximum of 7. -* Replication factor (set at table creation time) cannot be changed. +* The replication factor is set at table creation time and cannot be changed + later. As a workaround, create a new table with the same schema and + the desired replication factor and insert the contents of the old table + into the new one. === Cells (individual values) -* Cells cannot be larger than 64KB before encoding or compression. +* By default, cells cannot be larger than 64KiB before encoding or compression. === Other usage limitations @@ -173,7 +176,7 @@ anecdotal values that have been seen in real world production clusters: * Server certificates generated by Kudu IPKI are incompatible with link:https://www.bouncycastle.org/[bouncycastle] version 1.52 and earlier. See - link:https://issues.apache.org/jira/browse/KUDU-2145[KUDU-2145] for details.' + link:https://issues.apache.org/jira/browse/KUDU-2145[KUDU-2145] for details. * The highest supported version of the TLS protocol is TLSv1.2
