[ https://issues.apache.org/jira/browse/HIVE-21776?focusedWorklogId=248033&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-248033 ]
ASF GitHub Bot logged work on HIVE-21776: ----------------------------------------- Author: ASF GitHub Bot Created on: 24/May/19 13:44 Start Date: 24/May/19 13:44 Worklog Time Spent: 10m Work Description: sankarh commented on pull request #642: HIVE-21776 : Replication fails to replicate a UDF with jar on HDFS during incremental URL: https://github.com/apache/hive/pull/642#discussion_r287365528 ########## File path: standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/ReplChangeManager.java ########## @@ -356,6 +356,9 @@ public static FileInfo getFileInfo(Path src, String checksumString, String srcCM // Currently using fileuri#checksum#cmrooturi#subdirs as the format public static String encodeFileUri(String fileUriStr, String fileChecksum, String encodedSubDir) throws IOException { + if (instance == null) { + throw new IOException("Uninitialized ReplChangeManager instance."); + } String encodedUri = fileUriStr; Review comment: I agree that we need not fix it right away as we currently enforce to enable CM for replication to work. But, in HDP 2.6, we already support replication even when CM is disabled which is broken in HDP 3.1. This is due to difference in implementation of isCMFileUri method in both these versions. ---------------------------------------------------------------- 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: us...@infra.apache.org Issue Time Tracking ------------------- Worklog Id: (was: 248033) Time Spent: 1h 10m (was: 1h) > Replication fails to replicate a UDF with jar on HDFS during incremental > ------------------------------------------------------------------------ > > Key: HIVE-21776 > URL: https://issues.apache.org/jira/browse/HIVE-21776 > Project: Hive > Issue Type: Bug > Affects Versions: 4.0.0 > Reporter: Ashutosh Bapat > Assignee: Ashutosh Bapat > Priority: Major > Labels: pull-request-available > Fix For: 4.0.0 > > Attachments: HIVE-21776.01.patch, HIVE-21776.02.patch, > HIVE-21776.03.patch, HIVE-21776.04.patch > > Time Spent: 1h 10m > Remaining Estimate: 0h > > TestReplicationScenariosAcrossInstances has test to test bootstrap of a UDF > with jar on HDFS but no test for incremental. Add the same. -- This message was sent by Atlassian JIRA (v7.6.3#76005)