ramesh0201 commented on a change in pull request #1701:
URL: https://github.com/apache/hive/pull/1701#discussion_r552220196
##########
File path:
ql/src/java/org/apache/hadoop/hive/ql/exec/tez/DynamicPartitionPruner.java
##########
@@ -100,37 +99,19 @@
private int sourceInfoCount = 0;
- private final Object endOfEvents = new Object();
-
private int totalEventCount = 0;
- public DynamicPartitionPruner(InputInitializerContext context, MapWork work,
JobConf jobConf) throws
- SerDeException {
- this.context = context;
- this.work = work;
- this.jobConf = jobConf;
- synchronized (this) {
- initialize();
+ public void prune() throws SerDeException, IOException,
InterruptedException, HiveException {
+ if (sourcesWaitingForEvents.isEmpty()) {
+ return;
}
- }
-
- public void prune()
- throws SerDeException, IOException,
- InterruptedException, HiveException {
- synchronized(sourcesWaitingForEvents) {
Review comment:
Makes sense for me now. Thank you much for helping me understand.
----------------------------------------------------------------
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]