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
2b14ec10
Commit
2b14ec10
authored
8 years ago
by
Shwetha GS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-1066 Falcon fails to post entity to Atlas due to kafka exception (mneethiraj via shwethags)
parent
05277c27
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
4 deletions
+9
-4
AtlasService.java
...in/java/org/apache/atlas/falcon/service/AtlasService.java
+7
-0
FalconHook.java
...rc/main/java/org/apache/atlas/falcon/hook/FalconHook.java
+1
-1
AtlasService.java
...in/java/org/apache/atlas/falcon/service/AtlasService.java
+0
-3
release-log.txt
release-log.txt
+1
-0
No files found.
addons/falcon-bridge-shim/src/main/java/org/apache/atlas/falcon/service/AtlasService.java
View file @
2b14ec10
...
...
@@ -21,6 +21,7 @@ package org.apache.atlas.falcon.service;
import
org.apache.atlas.plugin.classloader.AtlasPluginClassLoader
;
import
org.apache.falcon.FalconException
;
import
org.apache.falcon.entity.store.ConfigurationStore
;
import
org.apache.falcon.entity.v0.Entity
;
import
org.apache.falcon.service.ConfigurationChangeListener
;
import
org.apache.falcon.service.FalconService
;
...
...
@@ -74,6 +75,9 @@ public class AtlasService implements FalconService, ConfigurationChangeListener
try
{
activatePluginClassLoader
();
ConfigurationStore
.
get
().
registerListener
(
this
);
falconServiceImpl
.
init
();
}
finally
{
deactivatePluginClassLoader
();
...
...
@@ -92,6 +96,9 @@ public class AtlasService implements FalconService, ConfigurationChangeListener
try
{
activatePluginClassLoader
();
ConfigurationStore
.
get
().
unregisterListener
(
this
);
falconServiceImpl
.
destroy
();
}
finally
{
deactivatePluginClassLoader
();
...
...
This diff is collapsed.
Click to expand it.
addons/falcon-bridge/src/main/java/org/apache/atlas/falcon/hook/FalconHook.java
View file @
2b14ec10
...
...
@@ -136,7 +136,7 @@ public class FalconHook extends AtlasHook implements FalconEventPublisher {
});
}
}
catch
(
Throwable
t
)
{
LOG
.
warn
(
"Error in processing data
{}"
,
data
);
LOG
.
warn
(
"Error in processing data
"
+
data
,
t
);
}
}
...
...
This diff is collapsed.
Click to expand it.
addons/falcon-bridge/src/main/java/org/apache/atlas/falcon/service/AtlasService.java
View file @
2b14ec10
...
...
@@ -23,7 +23,6 @@ import org.apache.atlas.falcon.event.FalconEvent;
import
org.apache.atlas.falcon.hook.FalconHook
;
import
org.apache.atlas.falcon.publisher.FalconEventPublisher
;
import
org.apache.falcon.FalconException
;
import
org.apache.falcon.entity.store.ConfigurationStore
;
import
org.apache.falcon.entity.v0.Entity
;
import
org.apache.falcon.entity.v0.EntityType
;
import
org.apache.falcon.service.ConfigurationChangeListener
;
...
...
@@ -51,13 +50,11 @@ public class AtlasService implements FalconService, ConfigurationChangeListener
@Override
public
void
init
()
throws
FalconException
{
ConfigurationStore
.
get
().
registerListener
(
this
);
publisher
=
new
FalconHook
();
}
@Override
public
void
destroy
()
throws
FalconException
{
ConfigurationStore
.
get
().
unregisterListener
(
this
);
}
@Override
...
...
This diff is collapsed.
Click to expand it.
release-log.txt
View file @
2b14ec10
...
...
@@ -6,6 +6,7 @@ INCOMPATIBLE CHANGES:
ALL CHANGES:
ATLAS-1066 Falcon fails to post entity to Atlas due to kafka exception (mneethiraj via shwethags)
ATLAS-1064 UI: Pagination for full text search results (Kalyanikashikar via shwethags)
ATLAS-1006 Paginate full text search results (shwethags)
ATLAS-1046 UI: Search pagination refinements (Kalyanikashikar via sumasai)
...
...
This diff is collapsed.
Click to expand it.
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