This repository has been archived by the owner on Oct 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
5 changed files
with
397 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
sudo: false | ||
sudo: required | ||
language: scala | ||
services: | ||
- docker | ||
scala: | ||
- 2.11.11 | ||
- 2.12.5 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
171 changes: 171 additions & 0 deletions
171
src/main/scala/com/weightwatchers/reactive/kinesis/producer/KinesisProducerConfig.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,171 @@ | ||
/* | ||
* Copyright 2017 WeightWatchers | ||
* | ||
* Licensed 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. | ||
*/ | ||
|
||
package com.weightwatchers.reactive.kinesis.producer | ||
|
||
import com.amazonaws.auth.AWSCredentialsProvider | ||
import com.amazonaws.regions.Regions | ||
import com.amazonaws.services.kinesis.producer.KinesisProducerConfiguration | ||
import com.amazonaws.services.kinesis.producer.KinesisProducerConfiguration.ThreadingModel | ||
import com.amazonaws.services.kinesis.producer.protobuf.Config.AdditionalDimension | ||
import com.typesafe.config.{Config, ConfigFactory} | ||
|
||
/** Typed config class for the KPL */ | ||
final case class KinesisProducerConfig( | ||
additionalMetricDimensions: List[AdditionalDimension], | ||
credentialsProvider: Option[AWSCredentialsProvider], | ||
metricsCredentialsProvider: Option[AWSCredentialsProvider], | ||
aggregationEnabled: Boolean, | ||
aggregationMaxCount: Long, | ||
aggregationMaxSize: Long, | ||
cloudwatchEndpoint: Option[String], | ||
cloudwatchPort: Long, | ||
collectionMaxCount: Long, | ||
collectionMaxSize: Long, | ||
connectTimeout: Long, | ||
credentialsRefreshDelay: Long, | ||
enableCoreDumps: Boolean, | ||
failIfThrottled: Boolean, | ||
kinesisEndpoint: Option[String], | ||
kinesisPort: Long, | ||
logLevel: String, | ||
maxConnections: Long, | ||
metricsGranularity: String, | ||
metricsLevel: String, | ||
metricsNamespace: String, | ||
metricsUploadDelay: Long, | ||
minConnections: Long, | ||
nativeExecutable: Option[String], | ||
rateLimit: Long, | ||
recordMaxBufferedTime: Long, | ||
recordTtl: Long, | ||
region: Option[Regions], | ||
requestTimeout: Long, | ||
tempDirectory: Option[String], | ||
verifyCertificate: Boolean, | ||
threadingModel: ThreadingModel, | ||
threadPoolSize: Int | ||
) { | ||
|
||
def toAwsConfig: KinesisProducerConfiguration = { | ||
val initial = new KinesisProducerConfiguration() | ||
.setAggregationEnabled(aggregationEnabled) | ||
.setAggregationMaxCount(aggregationMaxCount) | ||
.setAggregationMaxSize(aggregationMaxSize) | ||
.setCloudwatchPort(cloudwatchPort) | ||
.setCollectionMaxCount(collectionMaxCount) | ||
.setCollectionMaxSize(collectionMaxSize) | ||
.setConnectTimeout(connectTimeout) | ||
.setCredentialsRefreshDelay(credentialsRefreshDelay) | ||
.setEnableCoreDumps(enableCoreDumps) | ||
.setFailIfThrottled(failIfThrottled) | ||
.setKinesisPort(kinesisPort) | ||
.setLogLevel(logLevel) | ||
.setMaxConnections(maxConnections) | ||
.setMetricsGranularity(metricsGranularity) | ||
.setMetricsLevel(metricsLevel) | ||
.setMetricsNamespace(metricsNamespace) | ||
.setMetricsUploadDelay(metricsUploadDelay) | ||
.setMinConnections(minConnections) | ||
.setRateLimit(rateLimit) | ||
.setRecordMaxBufferedTime(recordMaxBufferedTime) | ||
.setRecordTtl(recordTtl) | ||
.setRequestTimeout(requestTimeout) | ||
.setVerifyCertificate(verifyCertificate) | ||
.setThreadingModel(threadingModel) | ||
.setThreadPoolSize(threadPoolSize) | ||
|
||
KinesisProducerConfig.setAdditionalDimensions(initial, additionalMetricDimensions) | ||
|
||
// This is ugly | ||
val wCredProv = credentialsProvider.fold(initial)(initial.setCredentialsProvider) | ||
val wMetricCredProv = | ||
metricsCredentialsProvider.fold(wCredProv)(wCredProv.setMetricsCredentialsProvider) | ||
val wCWEP = cloudwatchEndpoint.fold(wMetricCredProv)(wMetricCredProv.setCloudwatchEndpoint) | ||
val wKinesisEP = kinesisEndpoint.fold(wCWEP)(wCWEP.setKinesisEndpoint) | ||
val wNativeExec = nativeExecutable.fold(wKinesisEP)(wKinesisEP.setNativeExecutable) | ||
val wRegion = region.fold(wNativeExec)(reg => wNativeExec.setRegion(reg.getName)) | ||
val wTempDir = tempDirectory.fold(wRegion)(wRegion.setTempDirectory) | ||
|
||
wTempDir | ||
} | ||
} | ||
|
||
object KinesisProducerConfig { | ||
def apply(): KinesisProducerConfig = default | ||
def apply(config: KinesisProducerConfiguration): KinesisProducerConfig = fromAwsConfig(config) | ||
def apply(config: Config): KinesisProducerConfig = | ||
fromAwsConfig(ProducerConf.buildKPLConfig(config, None)) | ||
def apply(config: Config, credentialsProvider: AWSCredentialsProvider): KinesisProducerConfig = | ||
fromAwsConfig(ProducerConf.buildKPLConfig(config, Some(credentialsProvider))) | ||
|
||
// Sets default values as if no typesafe configuration was passed. This ensures that the default | ||
// KinesisProducerConfiguration is used | ||
def default: KinesisProducerConfig = { | ||
val defaultConfig = ProducerConf.buildKPLConfig(ConfigFactory.empty(), None) | ||
fromAwsConfig(defaultConfig) | ||
} | ||
|
||
private def fromAwsConfig(config: KinesisProducerConfiguration): KinesisProducerConfig = | ||
KinesisProducerConfig( | ||
additionalMetricDimensions = List(), // No way to retrieve this from a KinesisProducerConfiguration | ||
credentialsProvider = Some(config.getCredentialsProvider), | ||
metricsCredentialsProvider = Some(config.getMetricsCredentialsProvider), | ||
aggregationEnabled = config.isAggregationEnabled, | ||
aggregationMaxCount = config.getAggregationMaxCount, | ||
aggregationMaxSize = config.getAggregationMaxSize, | ||
cloudwatchEndpoint = Some(config.getCloudwatchEndpoint), | ||
cloudwatchPort = config.getCloudwatchPort, | ||
collectionMaxCount = config.getCollectionMaxCount, | ||
collectionMaxSize = config.getCollectionMaxSize, | ||
connectTimeout = config.getConnectTimeout, | ||
credentialsRefreshDelay = config.getCredentialsRefreshDelay, | ||
enableCoreDumps = config.isEnableCoreDumps, | ||
failIfThrottled = config.isFailIfThrottled, | ||
kinesisEndpoint = Some(config.getKinesisEndpoint), | ||
kinesisPort = config.getKinesisPort, | ||
logLevel = config.getLogLevel, | ||
maxConnections = config.getMaxConnections, | ||
metricsGranularity = config.getMetricsGranularity, | ||
metricsLevel = config.getMetricsLevel, | ||
metricsNamespace = config.getMetricsNamespace, | ||
metricsUploadDelay = config.getMetricsUploadDelay, | ||
minConnections = config.getMinConnections, | ||
nativeExecutable = Some(config.getNativeExecutable), | ||
rateLimit = config.getRateLimit, | ||
recordMaxBufferedTime = config.getRecordMaxBufferedTime, | ||
recordTtl = config.getRecordTtl, | ||
region = config.getRegion match { | ||
case x if x.isEmpty => None | ||
case x => Some(Regions.fromName(x)) | ||
}, | ||
requestTimeout = config.getRequestTimeout, | ||
tempDirectory = Some(config.getTempDirectory), | ||
verifyCertificate = config.isVerifyCertificate, | ||
threadingModel = config.getThreadingModel, | ||
threadPoolSize = config.getThreadPoolSize | ||
) | ||
|
||
private def setAdditionalDimensions( | ||
conf: KinesisProducerConfiguration, | ||
dimensions: List[AdditionalDimension] | ||
) = dimensions.foldLeft(conf) { (conf, dimension) => | ||
conf.addAdditionalMetricsDimension(dimension.getKey, | ||
dimension.getValue, | ||
dimension.getGranularity) | ||
conf | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.