Great. Good for you. Thank you for updates. :) Bests, Dongjoon.
On Sun, Apr 4, 2021 at 9:02 AM Vladimir Goncharov < vova.goncharov.2...@gmail.com> wrote: > My test stage was misconfigured. On a production cluster everything > went smoothly > Thank you, everybody! > > пт, 26 мар. 2021 г. в 19:00, Dongjoon Hyun <dongjoon.h...@gmail.com>: > >> Hi, Vladimir. >> >> Could you provide a simple reproducer example? >> >> Bests, >> Dongjoon. >> >> >> On Thu, Mar 25, 2021 at 11:46 PM Vladimir Goncharov < >> vova.goncharov.2...@gmail.com> wrote: >> >>> I've tried 4 variations in my pom.xml file: >>> 1: >>> <dependency> >>> <groupId>org.apache.orc</groupId> >>> <artifactId>orc-mapreduce</artifactId> >>> <version>1.6.7</version> >>> <scope>compile</scope> >>> <classifier>nohive</classifier> >>> </dependency> >>> <dependency> >>> <groupId>org.apache.hive</groupId> >>> <artifactId>hive-storage-api</artifactId> >>> <version>2.7.1</version> >>> <scope>compile</scope> >>> </dependency> >>> >>> 2: >>> <dependency> >>> <groupId>org.apache.orc</groupId> >>> <artifactId>orc-mapreduce</artifactId> >>> <version>1.6.7</version> >>> <scope>compile</scope> >>> </dependency> >>> <dependency> >>> <groupId>org.apache.hive</groupId> >>> <artifactId>hive-storage-api</artifactId> >>> <version>2.7.1</version> >>> <scope>compile</scope> >>> </dependency> >>> >>> 3: >>> <dependency> >>> <groupId>org.apache.orc</groupId> >>> <artifactId>orc-mapreduce</artifactId> >>> <version>1.6.7</version> >>> <scope>compile</scope> >>> <classifier>nohive</classifier> >>> </dependency> >>> >>> 4: >>> <dependency> >>> <groupId>org.apache.orc</groupId> >>> <artifactId>orc-mapreduce</artifactId> >>> <version>1.6.7</version> >>> <scope>compile</scope> >>> </dependency> >>> >>> None of it have worked out >>> >>> чт, 25 мар. 2021 г. в 20:38, Vladimir Goncharov < >>> vova.goncharov.2...@gmail.com>: >>> >>>> Hello everyone! >>>> >>>> I face the following error: >>>> "NoSuchMethod HiveDecimalWritable<init>(J)V" in my map-reduce program. I'm >>>> using the 1.6.7 version of org.apache.orc:orc-mapreduce lib. As I can see >>>> it includes dependency where HiveDecimalWritable has a constructor, that >>>> takes a long type argument. Hadoop version on my cluster is 2.8.5. What's >>>> wrong? >>>> >>>> Thank you >>>> >>>