lakshmi-manasa-g commented on code in PR #1598: URL: https://github.com/apache/samza/pull/1598#discussion_r865475247
########## samza-core/src/main/java/org/apache/samza/elasticity/ElasticityUtils.java: ########## @@ -0,0 +1,494 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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 org.apache.samza.elasticity; + +import java.util.HashMap; +import java.util.HashSet; +import java.util.Map; +import java.util.Objects; +import java.util.Optional; +import java.util.Set; +import java.util.regex.Matcher; +import java.util.regex.Pattern; +import java.util.stream.Collectors; +import org.apache.commons.lang3.tuple.ImmutablePair; +import org.apache.commons.lang3.tuple.Pair; +import org.apache.samza.checkpoint.Checkpoint; +import org.apache.samza.container.TaskName; +import org.apache.samza.system.SystemAdmin; +import org.apache.samza.system.SystemAdmins; +import org.apache.samza.system.SystemStreamPartition; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + + +/** + * Class with util methods to be used for checkpoint computation when elasticity is enabled + * Elasticity is supported only for tasks created by either + * the {@link org.apache.samza.container.grouper.stream.GroupByPartition} SSP grouper or + * the {@link org.apache.samza.container.grouper.stream.GroupBySystemStreamPartition} SSP grouper + */ +public class ElasticityUtils { Review Comment: typically utils in samza are names like ZkUtils, BlobUtils, coordinationUtils and so on. so keeping this class as ElasticityUtils itself to be a lil clearer on what the class does. ########## samza-core/src/main/java/org/apache/samza/elasticity/ElasticityUtils.java: ########## @@ -0,0 +1,494 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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 org.apache.samza.elasticity; + +import java.util.HashMap; +import java.util.HashSet; +import java.util.Map; +import java.util.Objects; +import java.util.Optional; +import java.util.Set; +import java.util.regex.Matcher; +import java.util.regex.Pattern; +import java.util.stream.Collectors; +import org.apache.commons.lang3.tuple.ImmutablePair; +import org.apache.commons.lang3.tuple.Pair; +import org.apache.samza.checkpoint.Checkpoint; +import org.apache.samza.container.TaskName; +import org.apache.samza.system.SystemAdmin; +import org.apache.samza.system.SystemAdmins; +import org.apache.samza.system.SystemStreamPartition; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + + +/** + * Class with util methods to be used for checkpoint computation when elasticity is enabled + * Elasticity is supported only for tasks created by either + * the {@link org.apache.samza.container.grouper.stream.GroupByPartition} SSP grouper or + * the {@link org.apache.samza.container.grouper.stream.GroupBySystemStreamPartition} SSP grouper + */ +public class ElasticityUtils { + private static final Logger log = LoggerFactory.getLogger(ElasticityUtils.class); + + // GroupByPartition tasks have names like Partition 0_1_2 + // where 0 is the partition number, 1 is the key bucket and 2 is the elasticity factor + // see {@link GroupByPartition.ELASTIC_TASK_NAME_FORMAT} + static final String ELASTIC_TASK_NAME_GROUP_BY_PARTITION_REGEX = "Partition (\\d+)_(\\d+)_(\\d+)"; + static final String TASK_NAME_GROUP_BY_PARTITION_REGEX = "Partition (\\d+)"; + static final String TASK_NAME_GROUP_BY_PARTITION_PREFIX = "Partition "; + + //GroupBySSP tasks have names like "SystemStreamPartition [<system>, <Stream>, <partition>, keyBucket]_2" + // where 2 is the elasticity factor + // see {@link GroupBySystemStreamPartition} and {@link SystemStreamPartition.toString} + static final String ELASTIC_TASK_NAME_GROUP_BY_SSP_REGEX = "SystemStreamPartition \\[(\\S+), (\\S+), (\\d+), (\\d+)\\]_(\\d+)"; + static final String TASK_NAME_GROUP_BY_SSP_REGEX = "SystemStreamPartition \\[(\\S+), (\\S+), (\\d+)\\]"; + static final String TASK_NAME_GROUP_BY_SSP_PREFIX = "SystemStreamPartition "; + + /** + * Elasticity is supported for GroupByPartition tasks and GroupBySystemStreamPartition tasks + * When elasticity is enabled, GroupByPartition tasks have names Partition 0_1_2 + * When elasticity is enabled, GroupBySystemStreamPartition tasks have names SystemStreamPartition [systemA, streamB, 0, 1]_2 + * Both tasks have names ending with _%d where %d is the elasticity factor + * @param taskName of either GroupByPartition or GroupBySystemStreamPartition task + * @return + * for GroupByPartition and GroupBySystemStreamPartition tasks returns elasticity factor from the task name + * for other tasks returns 1 which is the default elasticity factor + */ + static int getElasticityFactorFromTaskName(TaskName taskName) { + return getTaskNameParts(taskName).elasticityFactor; + } + + /** + * checks if the given taskname is of a GroupByPartition task + * @param taskName of any task + * @return true if GroupByPartition (starts with prefix "Partition ") or false otherwise + */ + static boolean isGroupByPartitionTask(TaskName taskName) { + return taskName.getTaskName().startsWith(TASK_NAME_GROUP_BY_PARTITION_PREFIX); + } + + /** + * checks if the given taskname is of a GroupBySystemStreamPartition task + * @param taskName of any task + * @return true if GroupBySystemStreamPartition (starts with prefix "SystemStreamPartition ") or false otherwise + */ + static boolean isGroupBySystemStreamPartitionTask(TaskName taskName) { + return taskName.getTaskName().startsWith(TASK_NAME_GROUP_BY_SSP_PREFIX); + } + + /** + * checks if given taskName is elastic aka created with an elasticity factor > 1 + * @param taskName of any task + * @return true for following, false otherwise + * for task created by GroupByPartition, taskName has format "Partition 0_1_2" + * for task created by GroupBySystemStreamPartition, taskName has format "SystemStreamPartition [systemA, streamB, 0, 1]_2" + */ + static boolean isTaskNameElastic(TaskName taskName) { Review Comment: actually, task name does not have key bucket or elasticity factor if elasticity is not enabled. so dealing with that means the code will look similar to above. retaining this method and removing the newly added config elasticity.checkpoints.enabled instead. added unit test for this method as it will now become part of the flow for all jobs irresp of whether they ever had elasticity enabled. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
