blob: 243139fc808af6d83ef76cb59308caa4d8817c58 [file] [log] [blame]
/*
* 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.inlong.manager.service.core.impl;
import lombok.extern.slf4j.Slf4j;
import org.apache.inlong.common.pojo.sdk.SortSourceConfigResponse;
import org.apache.inlong.common.pojo.sortstandalone.SortClusterResponse;
import org.apache.inlong.manager.common.exceptions.BusinessException;
import org.apache.inlong.manager.common.plugin.Plugin;
import org.apache.inlong.manager.common.plugin.PluginBinder;
import org.apache.inlong.manager.common.util.Preconditions;
import org.apache.inlong.manager.pojo.group.InlongGroupInfo;
import org.apache.inlong.manager.pojo.sort.SortStatusInfo;
import org.apache.inlong.manager.pojo.sort.SortStatusRequest;
import org.apache.inlong.manager.service.core.SortClusterService;
import org.apache.inlong.manager.service.core.SortService;
import org.apache.inlong.manager.service.core.SortSourceService;
import org.apache.inlong.manager.service.group.InlongGroupService;
import org.apache.inlong.manager.workflow.plugin.sort.PollerPlugin;
import org.apache.inlong.manager.workflow.plugin.sort.SortPoller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Service;
import java.util.List;
import java.util.Objects;
import java.util.stream.Collectors;
/**
* Sort service implementation.
*/
@Lazy
@Slf4j
@Service
public class SortServiceImpl implements SortService, PluginBinder {
@Lazy
@Autowired
private SortSourceService sortSourceService;
@Lazy
@Autowired
private SortClusterService sortClusterService;
@Autowired
private InlongGroupService groupService;
/**
* The plugin poller will be initialed after the application starts.
*
* @see org.apache.inlong.manager.service.plugin.PluginService#afterPropertiesSet
*/
private SortPoller sortPoller;
@Override
public SortClusterResponse getClusterConfig(String clusterName, String md5) {
return sortClusterService.getClusterConfig(clusterName, md5);
}
@Override
public SortSourceConfigResponse getSourceConfig(String clusterName, String sortTaskId, String md5) {
return sortSourceService.getSourceConfig(clusterName, sortTaskId, md5);
}
@Override
public List<SortStatusInfo> listSortStatus(SortStatusRequest request) {
Preconditions.expectNotNull(sortPoller, "sort status poller not initialized, please try later");
try {
List<InlongGroupInfo> groupInfoList = request.getInlongGroupIds().stream()
.map(groupId -> {
try {
return groupService.get(groupId);
} catch (Exception e) {
log.error("can not get groupId: {}, skip it", groupId, e);
return null;
}
})
.filter(Objects::nonNull)
.collect(Collectors.toList());
List<SortStatusInfo> statusInfos = sortPoller.pollSortStatus(groupInfoList, request.getCredentials());
log.debug("success to list sort status for request={}, result={}", request, statusInfos);
return statusInfos;
} catch (Exception e) {
log.error("poll sort status error: ", e);
throw new BusinessException("poll sort status error: " + e.getMessage());
}
}
@Override
public void acceptPlugin(Plugin plugin) {
if (plugin instanceof PollerPlugin) {
PollerPlugin pollerPlugin = (PollerPlugin) plugin;
sortPoller = pollerPlugin.getSortPoller();
}
}
}