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
59c67696
Commit
59c67696
authored
Jan 12, 2018
by
rmani
Committed by
Madhan Neethiraj
Jan 12, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-2361: Package each Atlas hook in separate tar files
Signed-off-by:
Madhan Neethiraj
<
madhan@apache.org
>
parent
d5b438b5
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
246 additions
and
0 deletions
+246
-0
pom.xml
distro/pom.xml
+5
-0
atlas-falcon-hook-package.xml
distro/src/main/assemblies/atlas-falcon-hook-package.xml
+41
-0
atlas-hbase-hook-package.xml
distro/src/main/assemblies/atlas-hbase-hook-package.xml
+59
-0
atlas-hive-hook-package.xml
distro/src/main/assemblies/atlas-hive-hook-package.xml
+59
-0
atlas-sqoop-hook-package.xml
distro/src/main/assemblies/atlas-sqoop-hook-package.xml
+41
-0
atlas-storm-hook-package.xml
distro/src/main/assemblies/atlas-storm-hook-package.xml
+41
-0
No files found.
distro/pom.xml
View file @
59c67696
...
...
@@ -105,6 +105,11 @@ atlas.graph.index.search.solr.wait-searcher=true
<configuration>
<skipAssembly>
false
</skipAssembly>
<descriptors>
<descriptor>
src/main/assemblies/atlas-hbase-hook-package.xml
</descriptor>
<descriptor>
src/main/assemblies/atlas-hive-hook-package.xml
</descriptor>
<descriptor>
src/main/assemblies/atlas-falcon-hook-package.xml
</descriptor>
<descriptor>
src/main/assemblies/atlas-sqoop-hook-package.xml
</descriptor>
<descriptor>
src/main/assemblies/atlas-storm-hook-package.xml
</descriptor>
<descriptor>
src/main/assemblies/standalone-package.xml
</descriptor>
<descriptor>
src/main/assemblies/src-package.xml
</descriptor>
</descriptors>
...
...
distro/src/main/assemblies/atlas-falcon-hook-package.xml
0 → 100644
View file @
59c67696
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<assembly
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xsi:schemaLocation=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"
>
<formats>
<format>
tar.gz
</format>
<format>
dir
</format>
</formats>
<id>
falcon-hook
</id>
<baseDirectory>
apache-atlas-falcon-hook-${project.version}
</baseDirectory>
<fileSets>
<!-- addons/falcon -->
<fileSet>
<directory>
../addons/falcon-bridge/target/dependency/bridge
</directory>
<outputDirectory>
bridge
</outputDirectory>
</fileSet>
<fileSet>
<directory>
../addons/falcon-bridge/target/dependency/hook
</directory>
<outputDirectory>
hook
</outputDirectory>
</fileSet>
</fileSets>
</assembly>
distro/src/main/assemblies/atlas-hbase-hook-package.xml
0 → 100644
View file @
59c67696
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<assembly
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xsi:schemaLocation=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"
>
<formats>
<format>
tar.gz
</format>
<format>
dir
</format>
</formats>
<id>
hbase-hook
</id>
<baseDirectory>
apache-atlas-hbase-hook-${project.version}
</baseDirectory>
<fileSets>
<fileSet>
<directory>
target/bin
</directory>
<outputDirectory>
hook-bin
</outputDirectory>
<includes>
<include>
import-hbase.sh
</include>
</includes>
<fileMode>
0755
</fileMode>
<directoryMode>
0755
</directoryMode>
</fileSet>
<!-- addons/hbase -->
<fileSet>
<directory>
../addons/hbase-bridge/src/bin
</directory>
<outputDirectory>
hook-bin
</outputDirectory>
<fileMode>
0755
</fileMode>
<directoryMode>
0755
</directoryMode>
</fileSet>
<!-- addons/hbase -->
<fileSet>
<directory>
../addons/hbase-bridge/target/dependency/bridge
</directory>
<outputDirectory>
bridge
</outputDirectory>
</fileSet>
<fileSet>
<directory>
../addons/hbase-bridge/target/dependency/hook
</directory>
<outputDirectory>
hook
</outputDirectory>
</fileSet>
</fileSets>
</assembly>
distro/src/main/assemblies/atlas-hive-hook-package.xml
0 → 100644
View file @
59c67696
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<assembly
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xsi:schemaLocation=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"
>
<formats>
<format>
tar.gz
</format>
<format>
dir
</format>
</formats>
<id>
hive-hook
</id>
<baseDirectory>
apache-atlas-hive-hook-${project.version}
</baseDirectory>
<fileSets>
<fileSet>
<directory>
target/bin
</directory>
<outputDirectory>
hook-bin
</outputDirectory>
<includes>
<include>
import-hive.sh
</include>
</includes>
<fileMode>
0755
</fileMode>
<directoryMode>
0755
</directoryMode>
</fileSet>
<!-- addons/hive -->
<fileSet>
<directory>
../addons/hive-bridge/src/bin
</directory>
<outputDirectory>
hook-bin
</outputDirectory>
<fileMode>
0755
</fileMode>
<directoryMode>
0755
</directoryMode>
</fileSet>
<!-- addons/hive -->
<fileSet>
<directory>
../addons/hive-bridge/target/dependency/bridge
</directory>
<outputDirectory>
bridge
</outputDirectory>
</fileSet>
<fileSet>
<directory>
../addons/hive-bridge/target/dependency/hook
</directory>
<outputDirectory>
hook
</outputDirectory>
</fileSet>
</fileSets>
</assembly>
distro/src/main/assemblies/atlas-sqoop-hook-package.xml
0 → 100644
View file @
59c67696
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<assembly
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xsi:schemaLocation=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"
>
<formats>
<format>
tar.gz
</format>
<format>
dir
</format>
</formats>
<id>
sqoop-hook
</id>
<baseDirectory>
apache-atlas-sqoop-hook-${project.version}
</baseDirectory>
<fileSets>
<!-- addons/sqoop -->
<fileSet>
<directory>
../addons/sqoop-bridge/target/dependency/bridge
</directory>
<outputDirectory>
bridge
</outputDirectory>
</fileSet>
<fileSet>
<directory>
../addons/sqoop-bridge/target/dependency/hook
</directory>
<outputDirectory>
hook
</outputDirectory>
</fileSet>
</fileSets>
</assembly>
distro/src/main/assemblies/atlas-storm-hook-package.xml
0 → 100644
View file @
59c67696
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<assembly
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xsi:schemaLocation=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"
>
<formats>
<format>
tar.gz
</format>
<format>
dir
</format>
</formats>
<id>
storm-hook
</id>
<baseDirectory>
apache-atlas-storm-hook-${project.version}
</baseDirectory>
<fileSets>
<!-- addons/storm -->
<fileSet>
<directory>
../addons/storm-bridge/target/dependency/bridge
</directory>
<outputDirectory>
bridge
</outputDirectory>
</fileSet>
<fileSet>
<directory>
../addons/storm-bridge/target/dependency/hook
</directory>
<outputDirectory>
hook
</outputDirectory>
</fileSet>
</fileSets>
</assembly>
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