|  | @@ -225,8 +225,6 @@ public abstract class AbstractFilterService {
 | 
											
												
													
														|  |          param.setVideoIds(riskVideoIds);
 |  |          param.setVideoIds(riskVideoIds);
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |          List<FilterStrategy> strategies = getStrategies(param);
 |  |          List<FilterStrategy> strategies = getStrategies(param);
 | 
											
												
													
														|  | -        log.info("filter strategies {}", JSONUtils.toJson(CommonCollectionUtils.toList(strategies,
 |  | 
 | 
											
												
													
														|  | -                o -> o.getClass().getSimpleName())));
 |  | 
 | 
											
												
													
														|  |          CountDownLatch cdl = new CountDownLatch(strategies.size());
 |  |          CountDownLatch cdl = new CountDownLatch(strategies.size());
 | 
											
												
													
														|  |          List<Future<List<Long>>> futures = new ArrayList<>();
 |  |          List<Future<List<Long>>> futures = new ArrayList<>();
 | 
											
												
													
														|  |          for (final FilterStrategy strategy : strategies) {
 |  |          for (final FilterStrategy strategy : strategies) {
 | 
											
										
											
												
													
														|  | @@ -234,10 +232,6 @@ public abstract class AbstractFilterService {
 | 
											
												
													
														|  |                  Stopwatch stopwatch = Stopwatch.createStarted();
 |  |                  Stopwatch stopwatch = Stopwatch.createStarted();
 | 
											
												
													
														|  |                  List<Long> result = strategy.filter(param);
 |  |                  List<Long> result = strategy.filter(param);
 | 
											
												
													
														|  |                  cdl.countDown();
 |  |                  cdl.countDown();
 | 
											
												
													
														|  | -                log.info("{} param {} result {} cost {} ms", strategy.getClass().getSimpleName(),
 |  | 
 | 
											
												
													
														|  | -                        JSONUtils.toJson(param.getVideoIds()),
 |  | 
 | 
											
												
													
														|  | -                        JSONUtils.toJson(result),
 |  | 
 | 
											
												
													
														|  | -                        stopwatch.elapsed(TimeUnit.MILLISECONDS));
 |  | 
 | 
											
												
													
														|  |                  return result;
 |  |                  return result;
 | 
											
												
													
														|  |              });
 |  |              });
 | 
											
												
													
														|  |              futures.add(future);
 |  |              futures.add(future);
 | 
											
										
											
												
													
														|  | @@ -264,7 +258,6 @@ public abstract class AbstractFilterService {
 | 
											
												
													
														|  |          for (int i = 0; i < videoIds.size(); ++i) {
 |  |          for (int i = 0; i < videoIds.size(); ++i) {
 | 
											
												
													
														|  |              result.retainAll(videoIds.get(i));
 |  |              result.retainAll(videoIds.get(i));
 | 
											
												
													
														|  |          }
 |  |          }
 | 
											
												
													
														|  | -        log.info("filter result {}", JSONUtils.toJson(result));
 |  | 
 | 
											
												
													
														|  |          return result;
 |  |          return result;
 | 
											
												
													
														|  |      }
 |  |      }
 | 
											
												
													
														|  |  
 |  |  
 |