/* * 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 gobblin.source.extractor.watermark; import gobblin.source.extractor.extract.QueryBasedExtractor; import java.util.HashMap; import org.apache.commons.lang3.StringUtils; public class WatermarkPredicate { private static final String DEFAULT_WATERMARK_VALUE_FORMAT = "yyyyMMddHHmmss"; private static final long DEFAULT_WATERMARK_VALUE = -1; private String watermarkColumn; private WatermarkType watermarkType; private Watermark watermark; public WatermarkPredicate(WatermarkType watermarkType) { this(null, watermarkType); } public WatermarkPredicate(String watermarkColumn, WatermarkType watermarkType) { super(); this.watermarkColumn = watermarkColumn; this.watermarkType = watermarkType; switch (watermarkType) { case TIMESTAMP: this.watermark = new TimestampWatermark(watermarkColumn, DEFAULT_WATERMARK_VALUE_FORMAT); break; case DATE: this.watermark = new DateWatermark(watermarkColumn, DEFAULT_WATERMARK_VALUE_FORMAT); break; case HOUR: this.watermark = new HourWatermark(watermarkColumn, DEFAULT_WATERMARK_VALUE_FORMAT); break; case SIMPLE: this.watermark = new SimpleWatermark(watermarkColumn, DEFAULT_WATERMARK_VALUE_FORMAT); break; default: this.watermark = new SimpleWatermark(watermarkColumn, DEFAULT_WATERMARK_VALUE_FORMAT); break; } } public Predicate getPredicate(QueryBasedExtractor<?, ?> extractor, long watermarkValue, String operator, Predicate.PredicateType type) { String condition = ""; if (watermarkValue != DEFAULT_WATERMARK_VALUE) { condition = this.watermark.getWatermarkCondition(extractor, watermarkValue, operator); } if (StringUtils.isBlank(this.watermarkColumn) || condition.equals("")) { return null; } return new Predicate(this.watermarkColumn, watermarkValue, condition, this.getWatermarkSourceFormat(extractor), type); } public String getWatermarkSourceFormat(QueryBasedExtractor<?, ?> extractor) { return extractor.getWatermarkSourceFormat(this.watermarkType); } public HashMap<Long, Long> getPartitions(long lowWatermarkValue, long highWatermarkValue, int partitionInterval, int maxIntervals) { return this.watermark.getIntervals(lowWatermarkValue, highWatermarkValue, partitionInterval, maxIntervals); } public int getDeltaNumForNextWatermark() { return this.watermark.getDeltaNumForNextWatermark(); } }