Reflect api in hive failed while using it in beelineDifference between Pig and Hive? Why have both?Oozie hive action failsHow to capture a hive exit status or error code using JDBC APIHive Macros/UDFs - Parallel/combined/single interpreterUnable to connect to HIVE through JDBC from a webappIn HIVE, what gives best performance when joining 2 tables on 4 columns? key column type String, Int or binary?Hive Full Table Scan Issue (Partitioned Columns Used)How to resolve broken pipe issue in Hive streaming with Python?Hive query fails in spark, but works in beeline HiveFailed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.18.1:test (default-test) on project hive-exec: There are test failures

...and then she held the gun

How would Japanese people react to someone refusing to say “itadakimasu” for religious reasons?

Query nodes and attributes of parent ways

What is the precise meaning of "подсел на мак"?

How can I ping multiple IP addresses at the same time?

Operator currying: how to convert f[a,b][c,d] to a+c,b+d?

I just entered the USA without passport control at Atlanta airport

Can you place a web spell on a surface you cannot see?

Bash function: Execute $@ command with each argument in sequence executed separately

How to sort human readable size

King or Queen-Which piece is which?

Should I email my professor to clear up a (possibly very irrelevant) awkward misunderstanding?

How can I detect if I'm in a subshell?

How do credit card companies know what type of business I'm paying for?

What are the mechanical differences between Adapt and Monstrosity?

Do details of my undergraduate title matter?

Can a character with the Polearm Master feat make an opportunity attack against an invisible creature that enters their reach?

What is this airplane that sits in front of Barringer High School in Newark, NJ?

Why do you need to heat the pan before heating the olive oil?

When is the phrase "j'ai bon" used?

How much steel armor can you wear and still be able to swim?

Why can't I craft scaffolding in Minecraft 1.14?

Fill the maze with a wall-following Snake until it gets stuck

Got a new frameset, don't know why I need this split ring collar?



Reflect api in hive failed while using it in beeline


Difference between Pig and Hive? Why have both?Oozie hive action failsHow to capture a hive exit status or error code using JDBC APIHive Macros/UDFs - Parallel/combined/single interpreterUnable to connect to HIVE through JDBC from a webappIn HIVE, what gives best performance when joining 2 tables on 4 columns? key column type String, Int or binary?Hive Full Table Scan Issue (Partitioned Columns Used)How to resolve broken pipe issue in Hive streaming with Python?Hive query fails in spark, but works in beeline HiveFailed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.18.1:test (default-test) on project hive-exec: There are test failures






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I have a requirement to generate unique if for each and every record in hive.I have used the reflect api available in hive.The query works fine while using from hive command prompt but fails while using it from beeline(jdbc connector). It seems reflect api has been blacklisted and cant be used in beeline.



Kindly let me know if I can use the reflect api in any way to resolve the above issue and as I have already generated a set of unique id, I cant change the generated id, as its already been used in my project.



Query used:



insert into table abc select
reflect('org.apache.commons.codec.digest.DigestUtils', 'sha256Hex',concat(id,CTR,COD,YEAR,ITEM,DOC,CALYEAR)) as Unique_Id









share|improve this question
























  • Is there a way to "white-list" specific JARs in HiveServer2 conf? Do you have Sentry or Ranger in your cluster, with cystom security policies? Now you have to do your own research & debugging; good luck...

    – Samson Scharfrichter
    Mar 28 at 19:11

















0















I have a requirement to generate unique if for each and every record in hive.I have used the reflect api available in hive.The query works fine while using from hive command prompt but fails while using it from beeline(jdbc connector). It seems reflect api has been blacklisted and cant be used in beeline.



Kindly let me know if I can use the reflect api in any way to resolve the above issue and as I have already generated a set of unique id, I cant change the generated id, as its already been used in my project.



Query used:



insert into table abc select
reflect('org.apache.commons.codec.digest.DigestUtils', 'sha256Hex',concat(id,CTR,COD,YEAR,ITEM,DOC,CALYEAR)) as Unique_Id









share|improve this question
























  • Is there a way to "white-list" specific JARs in HiveServer2 conf? Do you have Sentry or Ranger in your cluster, with cystom security policies? Now you have to do your own research & debugging; good luck...

    – Samson Scharfrichter
    Mar 28 at 19:11













0












0








0








I have a requirement to generate unique if for each and every record in hive.I have used the reflect api available in hive.The query works fine while using from hive command prompt but fails while using it from beeline(jdbc connector). It seems reflect api has been blacklisted and cant be used in beeline.



Kindly let me know if I can use the reflect api in any way to resolve the above issue and as I have already generated a set of unique id, I cant change the generated id, as its already been used in my project.



Query used:



insert into table abc select
reflect('org.apache.commons.codec.digest.DigestUtils', 'sha256Hex',concat(id,CTR,COD,YEAR,ITEM,DOC,CALYEAR)) as Unique_Id









share|improve this question
















I have a requirement to generate unique if for each and every record in hive.I have used the reflect api available in hive.The query works fine while using from hive command prompt but fails while using it from beeline(jdbc connector). It seems reflect api has been blacklisted and cant be used in beeline.



Kindly let me know if I can use the reflect api in any way to resolve the above issue and as I have already generated a set of unique id, I cant change the generated id, as its already been used in my project.



Query used:



insert into table abc select
reflect('org.apache.commons.codec.digest.DigestUtils', 'sha256Hex',concat(id,CTR,COD,YEAR,ITEM,DOC,CALYEAR)) as Unique_Id






hive oozie reflect






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 25 at 4:45









Suraj Kumar

2,82951126




2,82951126










asked Mar 25 at 4:38









N BeheraN Behera

11




11












  • Is there a way to "white-list" specific JARs in HiveServer2 conf? Do you have Sentry or Ranger in your cluster, with cystom security policies? Now you have to do your own research & debugging; good luck...

    – Samson Scharfrichter
    Mar 28 at 19:11

















  • Is there a way to "white-list" specific JARs in HiveServer2 conf? Do you have Sentry or Ranger in your cluster, with cystom security policies? Now you have to do your own research & debugging; good luck...

    – Samson Scharfrichter
    Mar 28 at 19:11
















Is there a way to "white-list" specific JARs in HiveServer2 conf? Do you have Sentry or Ranger in your cluster, with cystom security policies? Now you have to do your own research & debugging; good luck...

– Samson Scharfrichter
Mar 28 at 19:11





Is there a way to "white-list" specific JARs in HiveServer2 conf? Do you have Sentry or Ranger in your cluster, with cystom security policies? Now you have to do your own research & debugging; good luck...

– Samson Scharfrichter
Mar 28 at 19:11












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55331348%2freflect-api-in-hive-failed-while-using-it-in-beeline%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55331348%2freflect-api-in-hive-failed-while-using-it-in-beeline%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript