This is an automated email from the ASF dual-hosted git repository.
granthenke pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git
The following commit(s) were added to refs/heads/master by this push:
new 5623b9b [java] Document increasing Intellij intellisense configuration
5623b9b is described below
commit 5623b9b55c222582aa6394c990111326a4488f55
Author: Grant Henke <[email protected]>
AuthorDate: Mon Feb 3 16:26:14 2020 -0600
[java] Document increasing Intellij intellisense configuration
Our Protobuf files generate Java classes that are too large for
Intellij to provide code assistance for by default.
This results in what appears to be missing classes and difficulty
working with the Protobuf classes.
I added a note under the Intellij section of the Java readme to help
others workaround this.
Change-Id: I37ed4fd9b838fb363a91aa08acae8e7dbb13939a
Reviewed-on: http://gerrit.cloudera.org:8080/15155
Tested-by: Kudu Jenkins
Reviewed-by: Alexey Serbin <[email protected]>
---
java/README.adoc | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/java/README.adoc b/java/README.adoc
index cb4deb7..525cebe 100644
--- a/java/README.adoc
+++ b/java/README.adoc
@@ -140,6 +140,14 @@ in the IDE, be sure to enable `Delegate IDE build/run
actions to gradle`
and run tests using the `Gradle Test Runner` as described
https://www.jetbrains.com/help/idea/gradle.html#delegate_build_gradle[here].
+Some of the classes generated by Kudu Protobuf files are larger than the
+default "intellisense" limit in Intellij. This means Intellij won't
+provide code assistance for the classes in those files and may indicate
+that the classes in those files are not found. Follow the instructions
+https://intellij-support.jetbrains.com/hc/en-us/articles/206544869-Configuring-JVM-options-and-platform-properties[here]
+to set "idea.max.intellisense.filesize=5000" in the `idea.properties` file
+to work around this issue.
+
=== Eclipse
Follow the instructions as laid out