Skip to content

Commit

Permalink
Update apiary-metastore-listener package name references (#55)
Browse files Browse the repository at this point in the history
* Rename package of apiary-metastore-listener classes
* Update version references
* Update ApiarySnsListener reference
  • Loading branch information
warciuch authored and massdosage committed May 9, 2019
1 parent abb0236 commit 71719f9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
- Support for `_` in `HIVE_DB_NAMES` variable. Fixes [#5] (https://github.com/ExpediaGroup/apiary/issues/5).

### Changed
- Updated apiary-metastore-listener to 3.0.0 (was 1.1.0).
- Updated apiary-gluesync-listener to 3.0.0 (was 1.1.0).
- Updated apiary-ranger-plugin to 3.0.0 (was 1.1.0).
- Updated apiary-metastore-metrics to 3.0.0 (was 1.1.0).
- Updated apiary-metastore-auth to 3.0.0 (was 1.1.0).
- Updated apiary-metastore-listener to 4.0.0 (was 1.1.0).
- Updated apiary-gluesync-listener to 4.0.0 (was 1.1.0).
- Updated apiary-ranger-plugin to 4.0.0 (was 1.1.0).
- Updated apiary-metastore-metrics to 4.0.0 (was 1.1.0).
- Updated apiary-metastore-auth to 4.0.0 (was 1.1.0).

## [1.0.1] - 2019-02-15

Expand Down
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
from amazonlinux:latest

ENV RANGER_VERSION 1.1.0
ENV APIARY_METASTORE_LISTENER_VERSION 3.0.0
ENV APIARY_GLUESYNC_LISTENER_VERSION 3.0.0
ENV APIARY_RANGER_PLUGIN_VERSION 3.0.0
ENV APIARY_METASTORE_METRICS_VERSION 3.0.0
ENV APIARY_METASTORE_AUTH_VERSION 3.0.0
ENV APIARY_METASTORE_LISTENER_VERSION 4.0.0
ENV APIARY_GLUESYNC_LISTENER_VERSION 4.0.0
ENV APIARY_RANGER_PLUGIN_VERSION 4.0.0
ENV APIARY_METASTORE_METRICS_VERSION 4.0.0
ENV APIARY_METASTORE_AUTH_VERSION 4.0.0

COPY files/RPM-GPG-KEY-emr /etc/pki/rpm-gpg/RPM-GPG-KEY-emr
COPY files/emr-apps.repo /etc/yum.repos.d/emr-apps.repo
Expand Down
2 changes: 1 addition & 1 deletion files/startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ fi
[[ -z $HIVE_METASTORE_LOG_LEVEL ]] && HIVE_METASTORE_LOG_LEVEL="INFO"
sed "s/HIVE_METASTORE_LOG_LEVEL/$HIVE_METASTORE_LOG_LEVEL/" -i /etc/hive/conf/hive-log4j2.properties

[[ ! -z $SNS_ARN ]] && export METASTORE_LISTENERS="${METASTORE_LISTENERS},com.expediagroup.apiary.extensions.metastore.listener.ApiarySnsListener"
[[ ! -z $SNS_ARN ]] && export METASTORE_LISTENERS="${METASTORE_LISTENERS},com.expediagroup.apiary.extensions.events.metastore.listener.ApiarySnsListener"
[[ ! -z $ENABLE_GLUESYNC ]] && export METASTORE_LISTENERS="${METASTORE_LISTENERS},com.expediagroup.apiary.extensions.gluesync.listener.ApiaryGlueSync"
#remove leading , when external METASTORE_LISTENERS are not defined
export METASTORE_LISTENERS=$(echo $METASTORE_LISTENERS|sed 's/^,//')
Expand Down

0 comments on commit 71719f9

Please sign in to comment.