[ https://issues.apache.org/jira/browse/HIVE-690?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12735633#action_12735633 ]
Namit Jain commented on HIVE-690: --------------------------------- By default, the auto progress is false, which means that the timer would also be off. It is a change from the existing behavior - is that acceptable ? > ScriptOperator still times out > ------------------------------ > > Key: HIVE-690 > URL: https://issues.apache.org/jira/browse/HIVE-690 > Project: Hadoop Hive > Issue Type: Bug > Reporter: Zheng Shao > Assignee: Zheng Shao > Priority: Blocker > Fix For: 0.4.0 > > Attachments: HIVE-690.1.patch, HIVE-690.2.patch > > > The code is using exp_interval instead of exp_int in the > "scheduleAtFxiedRate". > {code} > Integer exp_interval = null; > int exp_int; > exp_interval = > Integer.decode(hconf.get("mapred.tasktracker.expiry.interval")); > if (exp_interval != null) > exp_int = exp_interval.intValue() / 2; > else > exp_int = 300000; > rpTimer = new Timer(true); > rpTimer.scheduleAtFixedRate(new ReporterTask(reporter), 0, > exp_interval); > {code} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.