This is an automated email from the ASF dual-hosted git repository.
boryas pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/samza.git.
from ba1d456 SAMZA-2319: [1/2] Simplify Container Allocation logic (#1152)
new 57f8bac rename
new ad95122 replaced StreamConfig with StreamConfigJava
new c5791ac added file
new f862358 more cleanup
new 135b17c updates
new a109588 add comments
new f0b2f4c rename back to StreamConfig
new 548c9f0 review comments
new 20f8508 modified comment
new fab7c56 Merge pull request #1171 from sborya/StreamConfigJava1
The 1965 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../samza/system/kinesis/KinesisSystemFactory.java | 1 -
.../samza/system/eventhub/EventHubConfig.java | 3 +-
.../java/org/apache/samza/config/SystemConfig.java | 4 +-
.../execution/JobNodeConfigurationGenerator.java | 10 +-
.../org/apache/samza/execution/StreamEdge.java | 24 +-
.../org/apache/samza/execution/StreamManager.java | 3 +-
.../samza/operators/impl/OperatorImplGraph.java | 4 +-
.../apache/samza/storage/StorageManagerUtil.java | 18 +-
.../samza/storage/TaskSideInputStorageManager.java | 29 +-
.../java/org/apache/samza/util/StreamUtil.java | 7 +-
.../apache/samza/checkpoint/OffsetManager.scala | 11 +-
.../org/apache/samza/config/StreamConfig.java | 396 +++++++++++++++++++++
.../org/apache/samza/config/StreamConfig.scala | 381 --------------------
.../apache/samza/container/SamzaContainer.scala | 28 +-
.../org/apache/samza/container/TaskInstance.scala | 9 +-
.../reporter/MetricsSnapshotReporterFactory.scala | 10 +-
.../org/apache/samza/config/TestStreamConfig.java | 361 +++++++++----------
.../org/apache/samza/config/TestSystemConfig.java | 21 +-
.../samza/execution/TestExecutionPlanner.java | 4 +-
.../apache/samza/testUtils/StreamTestUtils.java | 6 +-
.../java/org/apache/samza/util/TestStreamUtil.java | 83 ++---
.../samza/system/kafka/KafkaSystemAdmin.java | 34 +-
.../org/apache/samza/config/KafkaConfig.scala | 7 +-
.../samza/system/kafka/KafkaConsumerProxy.java | 4 +
.../samza/system/kafka/KafkaSystemFactory.scala | 3 +-
.../org/apache/samza/config/TestKafkaConfig.scala | 12 +-
.../org/apache/samza/config/Log4jSystemConfig.java | 6 +-
.../org/apache/samza/config/Log4jSystemConfig.java | 6 +-
.../org/apache/samza/sql/SamzaSqlInputMessage.java | 6 +-
.../apache/samza/sql/interfaces/SqlIOConfig.java | 6 +-
.../samza/sql/planner/SamzaSqlValidator.java | 2 +-
.../apache/samza/test/framework/TestRunner.java | 6 +-
.../samza/test/operator/TestAsyncFlatMap.java | 2 +-
.../TestLocalTableWithSideInputsEndToEnd.java | 6 +-
34 files changed, 765 insertions(+), 748 deletions(-)
create mode 100644
samza-core/src/main/scala/org/apache/samza/config/StreamConfig.java
delete mode 100644
samza-core/src/main/scala/org/apache/samza/config/StreamConfig.scala