1

How can I remove statement that happened when beeline terminal start? I have AD jar statement by default when I start beeline and I don't have this jar which case error message :

ADD JAR /usr/share/hive3-dim-lookup/dimlookup-hive-udf-1.1.....jar;
Error: Error while processing statement{Failed in 10.35.144.186} : //usr/share/hive3-dim-lookup/dimlookup-hive-udf-1.1.....jar does not exist (state=,code=1)

When I start beeline, how can I configure it to not start with beeline ?

leftjoin
  • 36,950
  • 8
  • 57
  • 116
Omer Anisfeld
  • 1,236
  • 12
  • 28

1 Answers1

0

It is possible using .hiverc file in users home dir. See HIVE-5160

Check your .hiverc file content:

cat ~/.hiverc

And remove ADD JAR from it

leftjoin
  • 36,950
  • 8
  • 57
  • 116