You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently FlinkKinesisFirehoseProducer#createKinesisFirehoseClient is package-private. This means it's not nice to create a refinement to instrument metrics, etc. against client operations. It would be great if the following were possible:
/** * {@inheritDoc} * <p>See <a href="https://github.com/aws/aws-kinesisanalytics-flink-connectors/issues/15">aws-kinesisanalytics-flink-connector #15</a> * for description of why this is needed. */@Nonnull@OverrideprotectedAmazonKinesisFirehosecreateKinesisFirehoseClient() {
returnnewMeteredAmazonKinesisFirehose(getRuntimeContext().getMetricGroup(), super.createKinesisFirehoseClient());
}
The text was updated successfully, but these errors were encountered:
Currently
FlinkKinesisFirehoseProducer#createKinesisFirehoseClient
is package-private. This means it's not nice to create a refinement to instrument metrics, etc. against client operations. It would be great if the following were possible:The text was updated successfully, but these errors were encountered: