From commits-return-20619-archive-asf-public=cust-asf.ponee.io@pulsar.apache.org Thu Jan 17 16:22:46 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 8D94818077D for ; Thu, 17 Jan 2019 16:22:45 +0100 (CET) Received: (qmail 71216 invoked by uid 500); 17 Jan 2019 15:22:39 -0000 Mailing-List: contact commits-help@pulsar.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@pulsar.apache.org Delivered-To: mailing list commits@pulsar.apache.org Received: (qmail 70690 invoked by uid 99); 17 Jan 2019 15:22:39 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Jan 2019 15:22:39 +0000 From: GitBox To: commits@pulsar.apache.org Subject: [GitHub] sijie commented on a change in pull request #3368: Issue #3290 Pulsar IO connector for Hbase sink Message-ID: <154773855878.16383.4708691268128806816.gitbox@gitbox.apache.org> Date: Thu, 17 Jan 2019 15:22:38 -0000 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit sijie commented on a change in pull request #3368: Issue #3290 Pulsar IO connector for Hbase sink URL: https://github.com/apache/pulsar/pull/3368#discussion_r248711120 ########## File path: pulsar-io/hbase/src/main/java/org/apache/pulsar/io/hbase/sink/HbaseSinkConfig.java ########## @@ -0,0 +1,109 @@ +/** + * 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.pulsar.io.hbase.sink; + +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.dataformat.yaml.YAMLFactory; +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.Getter; +import lombok.Setter; +import lombok.ToString; +import lombok.experimental.Accessors; +import org.apache.commons.collections.CollectionUtils; +import org.apache.commons.lang.StringUtils; +import org.apache.pulsar.io.core.annotations.FieldDoc; +import org.apache.pulsar.io.hbase.HbaseAbstractConfig; + +import java.io.File; +import java.io.IOException; +import java.io.Serializable; +import java.util.List; +import java.util.Map; + +@Data +@Setter +@Getter +@EqualsAndHashCode(callSuper = false) +@ToString +@Accessors(chain = true) +public class HbaseSinkConfig extends HbaseAbstractConfig implements Serializable { + + private static final long serialVersionUID = 1245636479605735555L; + + @FieldDoc( + required = true, + defaultValue = "", + help = "The hbase table rowkey name") + private String rowKeyName; + + @FieldDoc( + required = true, + defaultValue = "", + help = "The hbase table column family name") + private String familyName; + + @FieldDoc( + required = true, + defaultValue = "", + help = "The hbase table column qualifier names") + private List qualifierNames; + + @FieldDoc( + required = false, + defaultValue = "10", + help = "The hbase operation time in milliseconds") + private int batchTimeMs = 10; + + @FieldDoc( + required = false, + defaultValue = "200", + help = "The batch size of write to the hbase table" + ) + private int batchSize = 200; + + public static HbaseSinkConfig load(String yamlFile) throws IOException { + ObjectMapper mapper = new ObjectMapper(new YAMLFactory()); + return mapper.readValue(new File(yamlFile), HbaseSinkConfig.class); + } + + public static HbaseSinkConfig load(Map map) throws IOException { + ObjectMapper mapper = new ObjectMapper(); + return mapper.readValue(new ObjectMapper().writeValueAsString(map), HbaseSinkConfig.class); + } + + @Override + public void validate() { + super.validate(); + + if (StringUtils.isEmpty(rowKeyName) || + StringUtils.isEmpty(familyName) || + CollectionUtils.isEmpty(qualifierNames)) { + throw new IllegalArgumentException("Required property not set."); + } + + if (batchTimeMs < 1) { + throw new IllegalArgumentException("batchTimeMs must be a positive integer"); + } + + if (batchSize < 1) { Review comment: ```suggestion if (batchSize <= 0) { ``` ```suggestion if (batchTimeMs <= 0) { ``` it is more common to use `<=0` for 'positive integer' ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: users@infra.apache.org With regards, Apache Git Services