deniskuzZ commented on code in PR #4970: URL: https://github.com/apache/hive/pull/4970#discussion_r1484328517
########## standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/txn/service/AcidHouseKeeperService.java: ########## @@ -15,19 +15,23 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.hadoop.hive.metastore.txn; +package org.apache.hadoop.hive.metastore.txn.service; -import org.apache.commons.lang3.Functions; +import com.google.common.collect.ImmutableMap; +import org.apache.commons.lang3.function.Failable; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.hive.metastore.MetastoreTaskThread; import org.apache.hadoop.hive.metastore.api.MetaException; import org.apache.hadoop.hive.metastore.conf.MetastoreConf; +import org.apache.hadoop.hive.metastore.txn.TxnStore; +import org.apache.hadoop.hive.metastore.txn.TxnUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import java.util.Map; import java.util.concurrent.TimeUnit; -import static org.apache.commons.lang3.Functions.FailableRunnable; +import org.apache.commons.lang3.function.FailableRunnable; Review Comment: optimize imports: move `Failable` here -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
