Member since
02-09-2016
9
Posts
4
Kudos Received
0
Solutions
06-29-2016
10:28 AM
Thanks for your reply but right now we are facing some issues while executing multiple join query on TEZ.
... View more
06-20-2016
05:20 AM
Hi All , We are using HDP 2.3.4 in production, we want to upgrade to HDP 2.4 , just want to know is it recommended to use HDP 2.4 in prodution environment ? Thanks
... View more
Labels:
- Labels:
-
Hortonworks Data Platform (HDP)
04-28-2016
05:29 AM
1 Kudo
Below is code snippet def printVersions():
result = {}
for f in os.listdir(root):
if f not in [".", "..", "current", "share", "lost+found","usr"]:
result[tuple(map(int, versionRegex.split(f)))] = f
keys = result.keys()
keys.sort()
for k in keys:
print result[k]
... View more