[
https://issues.apache.org/jira/browse/HIVE-18783?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16374612#comment-16374612
]
Sergio Peña commented on HIVE-18783:
------------------------------------
[~akolb] I think the problem is about the transactionalListenerResponses does
not exist for ALTER_TABLE events. For other events, such as CREATE_TABLE, the
transactionalListenerResponses is obtained from the transactional listener
which contains the EVENT_ID of the notification generated, and this is passed
to the post-listener so that clients listening later can do something with that
EVENT_ID. For ALTER_TABLE events, this EVENT_ID is not passed to the
post-listener, so clients can fail if they expect such EVENT_ID on the
post-listener.
> Set Notification ID for Alter Table event
> -----------------------------------------
>
> Key: HIVE-18783
> URL: https://issues.apache.org/jira/browse/HIVE-18783
> Project: Hive
> Issue Type: Bug
> Reporter: Na Li
> Assignee: Alexander Kolbasov
> Priority: Major
>
> in HiveMetaStore, alter_table_core does NOT call transactional listener, and
> the notification ID corresponding to the alter table event is NOT set in the
> event parameters.
> {code}
> + alter_table_core
>
> try {
> Table oldt = this.get_table_core(dbname, name);
> this.firePreEvent(new PreAlterTableEvent(oldt, newTable, this));
> this.alterHandler.alterTable(this.getMS(), this.wh, dbname, name,
> newTable, envContext, this);
> success = true;
> if (!this.listeners.isEmpty()) {
> MetaStoreListenerNotifier.notifyEvent(this.listeners,
> EventType.ALTER_TABLE, new AlterTableEvent(oldt, newTable, true, this),
> envContext);
> }
> } catch (NoSuchObjectException var12) {
> ex = var12;
> throw new InvalidOperationException(var12.getMessage());
> } catch (Exception var13) {
> ex = var13;
> if (var13 instanceof MetaException) {
> throw (MetaException)var13;
> }
> if (var13 instanceof InvalidOperationException) {
> throw (InvalidOperationException)var13;
> }
> {code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)