dbwong commented on a change in pull request #771:
URL: https://github.com/apache/phoenix/pull/771#discussion_r417621247
##########
File path:
phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixConnection.java
##########
@@ -441,6 +453,17 @@ private static Properties
filterKnownNonProperties(Properties info) {
return result.build();
}
+ public boolean isInternalConnection() {
+ return isInternalConnection;
+ }
+
+ public void addChildConnection(PhoenixConnection connection) {
Review comment:
I'm hoping to only synchronize of the construction of the iterable, as I
hope most threads will be able to add themselves in parallel as this is a
possible new slowdown, think the effort is worth it over normal ArrayList?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]