[ 
https://issues.apache.org/jira/browse/APEXMALHAR-2066?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15290051#comment-15290051
 ] 

ASF GitHub Bot commented on APEXMALHAR-2066:
--------------------------------------------

Github user gauravgopi123 commented on a diff in the pull request:

    
https://github.com/apache/incubator-apex-malhar/pull/282#discussion_r63799089
  
    --- Diff: 
library/src/main/java/com/datatorrent/lib/db/jdbc/JdbcMetaDataUtility.java ---
    @@ -0,0 +1,344 @@
    +/**
    + * 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 com.datatorrent.lib.db.jdbc;
    +
    +import java.sql.Connection;
    +import java.sql.DriverManager;
    +import java.sql.PreparedStatement;
    +import java.sql.ResultSet;
    +import java.sql.SQLException;
    +import java.util.HashMap;
    +
    +import org.slf4j.Logger;
    +import org.slf4j.LoggerFactory;
    +
    +import com.datatorrent.lib.util.KeyValPair;
    +
    +/**
    + * A utility class used to retrieve the metadata for a given unique key of 
a SQL
    + * table. This class would emit range queries based on a primary index 
given
    + * 
    + * @Input - dbName,tableName, primaryKey
    + * @Output - map<operatorId,prepared statement>
    + *
    + */
    +public class JdbcMetaDataUtility
    +{
    +  private static String DB_DRIVER = "com.mysql.jdbc.Driver";
    +  private static String DB_CONNECTION = "";
    +  private static String DB_USER = "";
    +  private static String DB_PASSWORD = "";
    +  private static String TABLE_NAME = "";
    +  private static String KEY_COLUMN = "";
    +  private static String WHERE_CLAUSE = null;
    +  private static String COLUMN_LIST = null;
    --- End diff --
    
    why are these fields static?


> Add jdbc poller input operator
> ------------------------------
>
>                 Key: APEXMALHAR-2066
>                 URL: https://issues.apache.org/jira/browse/APEXMALHAR-2066
>             Project: Apache Apex Malhar
>          Issue Type: Task
>            Reporter: Ashwin Chandra Putta
>            Assignee: devendra tagare
>
> Create a JDBC poller input operator that has the following features.
> 1. poll from external jdbc store asynchronously in the input operator.
> 2. polling frequency and batch size should be configurable.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to