forked from awslabs/amazon-kinesis-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
155 additions
and
14 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
44 changes: 44 additions & 0 deletions
44
.../software/amazon/kinesis/multilang/config/WorkerUtilizationAwareAssignmentConfigBean.java
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,44 @@ | ||
/* | ||
* Copyright 2019 Amazon.com, Inc. or its affiliates. | ||
* 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 software.amazon.kinesis.multilang.config; | ||
|
||
import java.time.Duration; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
//import software.amazon.awssdk.services.kinesis.KinesisAsyncClient; | ||
import software.amazon.kinesis.leases.LeaseManagementConfig.WorkerUtilizationAwareAssignmentConfig; | ||
|
||
@Getter | ||
@Setter | ||
public class WorkerUtilizationAwareAssignmentConfigBean { | ||
|
||
interface WorkerUtilizationAwareAssignmentConfigBeanDelegate { | ||
long inMemoryWorkerMetricsCaptureFrequencyMillis = Duration.ofSeconds(1L).toMillis(); | ||
|
||
void setInMemoryWorkerMetricsCaptureFrequencyMillis(long value); | ||
|
||
} | ||
|
||
@ConfigurationSettable(configurationClass = WorkerUtilizationAwareAssignmentConfig.class, convertToOptional = true) | ||
private long inMemoryWorkerMetricsCaptureFrequencyMillis; | ||
|
||
public WorkerUtilizationAwareAssignmentConfig create() { | ||
WorkerUtilizationAwareAssignmentConfig conf = new WorkerUtilizationAwareAssignmentConfig(); | ||
conf.inMemoryWorkerMetricsCaptureFrequencyMillis(this.inMemoryWorkerMetricsCaptureFrequencyMillis); | ||
return 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
68 changes: 68 additions & 0 deletions
68
...tware/amazon/kinesis/multilang/config/WorkerUtilizationAwareAssignmentConfigBeanTest.java
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,68 @@ | ||
/* | ||
* Copyright 2019 Amazon.com, Inc. or its affiliates. | ||
* 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 software.amazon.kinesis.multilang.config; | ||
|
||
import java.util.Optional; | ||
|
||
import org.apache.commons.beanutils.BeanUtilsBean; | ||
import org.apache.commons.beanutils.ConvertUtilsBean; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.mockito.Mock; | ||
import org.mockito.runners.MockitoJUnitRunner; | ||
import software.amazon.awssdk.services.kinesis.KinesisAsyncClient; | ||
import software.amazon.kinesis.retrieval.polling.PollingConfig; | ||
|
||
import static org.hamcrest.CoreMatchers.equalTo; | ||
import static org.junit.Assert.assertThat; | ||
|
||
@RunWith(MockitoJUnitRunner.class) | ||
public class WorkerUtilizationAwareAssignmentConfigBeanTest { | ||
|
||
@Mock | ||
private KinesisAsyncClient kinesisAsyncClient; | ||
|
||
@Test | ||
public void testAllPropertiesTransit() { | ||
PollingConfigBean pollingConfigBean = new PollingConfigBean(); | ||
pollingConfigBean.setIdleTimeBetweenReadsInMillis(1000); | ||
pollingConfigBean.setMaxGetRecordsThreadPool(20); | ||
pollingConfigBean.setMaxRecords(5000); | ||
pollingConfigBean.setRetryGetRecordsInSeconds(30); | ||
|
||
ConvertUtilsBean convertUtilsBean = new ConvertUtilsBean(); | ||
BeanUtilsBean utilsBean = new BeanUtilsBean(convertUtilsBean); | ||
|
||
MultiLangDaemonConfiguration multiLangDaemonConfiguration = | ||
new MultiLangDaemonConfiguration(utilsBean, convertUtilsBean); | ||
multiLangDaemonConfiguration.setStreamName("test-stream"); | ||
|
||
PollingConfig pollingConfig = pollingConfigBean.build(kinesisAsyncClient, multiLangDaemonConfiguration); | ||
|
||
assertThat(pollingConfig.kinesisClient(), equalTo(kinesisAsyncClient)); | ||
assertThat(pollingConfig.streamName(), equalTo(multiLangDaemonConfiguration.getStreamName())); | ||
assertThat( | ||
pollingConfig.idleTimeBetweenReadsInMillis(), | ||
equalTo(pollingConfigBean.getIdleTimeBetweenReadsInMillis())); | ||
assertThat( | ||
pollingConfig.maxGetRecordsThreadPool(), | ||
equalTo(Optional.of(pollingConfigBean.getMaxGetRecordsThreadPool()))); | ||
assertThat(pollingConfig.maxRecords(), equalTo(pollingConfigBean.getMaxRecords())); | ||
assertThat( | ||
pollingConfig.retryGetRecordsInSeconds(), | ||
equalTo(Optional.of(pollingConfigBean.getRetryGetRecordsInSeconds()))); | ||
} | ||
} |