Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id F0C3A200D3C for ; Mon, 30 Oct 2017 14:24:50 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id EF570160BF8; Mon, 30 Oct 2017 13:24:50 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 45B421609EF for ; Mon, 30 Oct 2017 14:24:50 +0100 (CET) Received: (qmail 26669 invoked by uid 500); 30 Oct 2017 13:24:47 -0000 Mailing-List: contact dev-help@drill.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@drill.apache.org Delivered-To: mailing list dev@drill.apache.org Received: (qmail 25815 invoked by uid 99); 30 Oct 2017 13:24:47 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Oct 2017 13:24:47 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 7FF7EDFFB3; Mon, 30 Oct 2017 13:24:46 +0000 (UTC) From: arina-ielchiieva To: dev@drill.apache.org Reply-To: dev@drill.apache.org References: In-Reply-To: Subject: [GitHub] drill pull request #774: DRILL-5337: OpenTSDB storage plugin Content-Type: text/plain Message-Id: <20171030132446.7FF7EDFFB3@git1-us-west.apache.org> Date: Mon, 30 Oct 2017 13:24:46 +0000 (UTC) archived-at: Mon, 30 Oct 2017 13:24:51 -0000 Github user arina-ielchiieva commented on a diff in the pull request: https://github.com/apache/drill/pull/774#discussion_r146134351 --- Diff: contrib/storage-opentsdb/src/main/java/org/apache/drill/exec/store/openTSDB/client/services/ServiceImpl.java --- @@ -0,0 +1,176 @@ +/* + * 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.drill.exec.store.openTSDB.client.services; + +import org.apache.drill.exec.store.openTSDB.client.OpenTSDB; +import org.apache.drill.exec.store.openTSDB.client.OpenTSDBTypes; +import org.apache.drill.exec.store.openTSDB.client.Service; +import org.apache.drill.exec.store.openTSDB.client.query.DBQuery; +import org.apache.drill.exec.store.openTSDB.client.query.Query; +import org.apache.drill.exec.store.openTSDB.dto.ColumnDTO; +import org.apache.drill.exec.store.openTSDB.dto.MetricDTO; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import retrofit2.Retrofit; +import retrofit2.converter.jackson.JacksonConverterFactory; + +import java.io.IOException; +import java.util.ArrayList; +import java.util.Collections; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; + +import static org.apache.drill.exec.store.openTSDB.Constants.AGGREGATOR; +import static org.apache.drill.exec.store.openTSDB.Constants.DOWNSAMPLE; +import static org.apache.drill.exec.store.openTSDB.Constants.METRIC; +import static org.apache.drill.exec.store.openTSDB.Util.isTableNameValid; +import static org.apache.drill.exec.store.openTSDB.Util.parseFROMRowData; + +public class ServiceImpl implements Service { + + private static final Logger log = + LoggerFactory.getLogger(ServiceImpl.class); + + private OpenTSDB client; --- End diff -- final? ---