Return-Path: X-Original-To: apmail-drill-dev-archive@www.apache.org Delivered-To: apmail-drill-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id BF3A4181FA for ; Sat, 5 Mar 2016 01:37:23 +0000 (UTC) Received: (qmail 94626 invoked by uid 500); 5 Mar 2016 01:37:23 -0000 Delivered-To: apmail-drill-dev-archive@drill.apache.org Received: (qmail 94567 invoked by uid 500); 5 Mar 2016 01:37:23 -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 94551 invoked by uid 99); 5 Mar 2016 01:37:22 -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; Sat, 05 Mar 2016 01:37:22 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B86FCDFE04; Sat, 5 Mar 2016 01:37:22 +0000 (UTC) From: sudheeshkatkam To: dev@drill.apache.org Reply-To: dev@drill.apache.org References: In-Reply-To: Subject: [GitHub] drill pull request: DRILL-4313: Improve method of picking a random... Content-Type: text/plain Message-Id: <20160305013722.B86FCDFE04@git1-us-west.apache.org> Date: Sat, 5 Mar 2016 01:37:22 +0000 (UTC) Github user sudheeshkatkam commented on a diff in the pull request: https://github.com/apache/drill/pull/396#discussion_r55112202 --- Diff: contrib/native/client/example/pooledConnections.cpp --- @@ -0,0 +1,300 @@ +/* + * 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. + */ + +#include +#include +#include +#include +#include +#include "drill/drillc.hpp" + +int nOptions=5; + +struct Option{ + char name[32]; + char desc[128]; + bool required; +}qsOptions[]= { + {"query", "Query strings, separated by semicolons", true}, + {"connectStr", "Connect string", true}, + {"logLevel", "Logging level [trace|debug|info|warn|error|fatal]", false}, + {"numConnections", "Number of simultaneous connections", true}, + {"numIterations", "Number of iterations to run. Each query is sent to each connection this many times", true} +}; + +std::map qsOptionValues; + +const char* exceptionInject="alter session set `drill.exec.testing.controls` = '{ \"injections\" : [{ \"type\":\"exception\",\"siteClass\":\"org.apache.drill.exec.work.fragment.FragmentExecutor\",\"desc\":\"fragment-execution\",\"nSkip\":0,\"nFire\":1,\"exceptionClass\":\"java.lang.OutOfMemoryError\"}]}'"; + +Drill::status_t SchemaListener(void* ctx, Drill::FieldDefPtr fields, Drill::DrillClientError* err){ + if(!err){ + printf("SCHEMA CHANGE DETECTED:\n"); + for(size_t i=0; isize(); i++){ + std::string name= fields->at(i)->getName(); + printf("%s\t", name.c_str()); + } + printf("\n"); + return Drill::QRY_SUCCESS ; + }else{ + std::cerr<< "ERROR: " << err->msg << std::endl; + return Drill::QRY_FAILURE; + } +} + +boost::mutex listenerMutex; +Drill::status_t QueryResultsListener(void* ctx, Drill::RecordBatch* b, Drill::DrillClientError* err){ + boost::lock_guard listenerLock(listenerMutex); + if(!err){ + if(b!=NULL){ + b->print(std::cout, 0); // print all rows + std::cout << "DATA RECEIVED ..." << std::endl; + delete b; // we're done with this batch, we can delete it + return Drill::QRY_FAILURE; + }else{ + std::cout << "Query Complete." << std::endl; + return Drill::QRY_SUCCESS; + } + }else{ + assert(b==NULL); + switch(err->status) { + case Drill::QRY_COMPLETED: + case Drill::QRY_CANCELED: + std::cerr<< "INFO: " << err->msg << std::endl; + return Drill::QRY_SUCCESS; --- End diff -- Confusing, since query succeeds when error != null ? --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---