Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
f51c8861
Commit
f51c8861
authored
Jul 01, 2016
by
Suma Shivaprasad
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-917 Add hdfs paths to process qualified name for non-partition based queries(sumasai)
parent
f623bddf
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
3 deletions
+4
-3
HiveMetaStoreBridge.java
...ava/org/apache/atlas/hive/bridge/HiveMetaStoreBridge.java
+2
-2
HiveHook.java
...ge/src/main/java/org/apache/atlas/hive/hook/HiveHook.java
+0
-0
HiveHookIT.java
.../src/test/java/org/apache/atlas/hive/hook/HiveHookIT.java
+0
-0
AtlasHook.java
...cation/src/main/java/org/apache/atlas/hook/AtlasHook.java
+1
-1
release-log.txt
release-log.txt
+1
-0
No files found.
addons/hive-bridge/src/main/java/org/apache/atlas/hive/bridge/HiveMetaStoreBridge.java
View file @
f51c8861
...
...
@@ -426,8 +426,8 @@ public class HiveMetaStoreBridge {
createDate
=
new
Date
(
hiveTable
.
getTTable
().
getCreateTime
()
*
MILLIS_CONVERT_FACTOR
);
LOG
.
debug
(
"Setting create time to {} "
,
createDate
);
tableReference
.
set
(
HiveDataModelGenerator
.
CREATE_TIME
,
createDate
);
}
catch
(
NumberFormat
Exception
ne
)
{
LOG
.
error
(
"Error while
upda
ting createTime for the table {} "
,
hiveTable
.
getCompleteName
(),
ne
);
}
catch
(
Exception
ne
)
{
LOG
.
error
(
"Error while
set
ting createTime for the table {} "
,
hiveTable
.
getCompleteName
(),
ne
);
}
}
...
...
addons/hive-bridge/src/main/java/org/apache/atlas/hive/hook/HiveHook.java
View file @
f51c8861
This diff is collapsed.
Click to expand it.
addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/HiveHookIT.java
View file @
f51c8861
This diff is collapsed.
Click to expand it.
notification/src/main/java/org/apache/atlas/hook/AtlasHook.java
View file @
f51c8861
...
...
@@ -128,7 +128,7 @@ public abstract class AtlasHook {
}
catch
(
Exception
e
)
{
numRetries
++;
if
(
numRetries
<
maxRetries
)
{
LOG
.
debug
(
"Failed to notify atlas for entity {}. Retrying"
,
message
,
e
);
LOG
.
info
(
"Failed to notify atlas for entity {}. Retrying"
,
message
,
e
);
}
else
{
if
(
shouldLogFailedMessages
&&
e
instanceof
NotificationException
)
{
List
<
String
>
failedMessages
=
((
NotificationException
)
e
).
getFailedMessages
();
...
...
release-log.txt
View file @
f51c8861
...
...
@@ -7,6 +7,7 @@ INCOMPATIBLE CHANGES:
ALL CHANGES:
ATLAS-966 Exit execution of import_hive.sh if HIVE_HOME is not set (svimal2106 via sumasai)
ATLAS-917 Add hdfs paths to process qualified name for non-partition based queries (sumasai)
--Release 0.7-incubating
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment