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 1614B200C7F for ; Wed, 24 May 2017 09:03:40 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 1520C160BD7; Wed, 24 May 2017 07:03:40 +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 35422160BD0 for ; Wed, 24 May 2017 09:03:39 +0200 (CEST) Received: (qmail 66716 invoked by uid 500); 24 May 2017 07:03:36 -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 65945 invoked by uid 99); 24 May 2017 07:03:36 -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; Wed, 24 May 2017 07:03:36 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C6561DFAF5; Wed, 24 May 2017 07:03:35 +0000 (UTC) From: sohami To: dev@drill.apache.org Reply-To: dev@drill.apache.org References: In-Reply-To: Subject: [GitHub] drill pull request #829: DRILL-5485: Remove WebServer dependency on DrillCli... Content-Type: text/plain Message-Id: <20170524070335.C6561DFAF5@git1-us-west.apache.org> Date: Wed, 24 May 2017 07:03:35 +0000 (UTC) archived-at: Wed, 24 May 2017 07:03:40 -0000 Github user sohami commented on a diff in the pull request: https://github.com/apache/drill/pull/829#discussion_r118159481 --- Diff: exec/java-exec/src/main/java/org/apache/drill/exec/server/rest/WebUserConnection.java --- @@ -0,0 +1,190 @@ +/* + * 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.server.rest; + +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import com.google.common.collect.Sets; +import io.netty.buffer.ByteBuf; +import io.netty.buffer.DrillBuf; +import io.netty.channel.ChannelFuture; +import io.netty.channel.ChannelPromise; +import io.netty.channel.DefaultChannelPromise; +import org.apache.drill.common.exceptions.UserException; +import org.apache.drill.exec.memory.BufferAllocator; +import org.apache.drill.exec.physical.impl.materialize.QueryWritableBatch; +import org.apache.drill.exec.proto.GeneralRPCProtos; +import org.apache.drill.exec.record.RecordBatchLoader; +import org.apache.drill.exec.record.VectorWrapper; +import org.apache.drill.exec.rpc.AbstractUserClientConnectionWrapper; +import org.apache.drill.exec.rpc.Acks; +import org.apache.drill.exec.rpc.ChannelClosedException; +import org.apache.drill.exec.rpc.ConnectionThrottle; +import org.apache.drill.exec.rpc.RpcOutcomeListener; +import org.apache.drill.exec.rpc.user.UserSession; +import org.apache.drill.exec.vector.ValueVector; + +import java.net.SocketAddress; +import java.util.List; +import java.util.Map; +import java.util.Set; + +public class WebUserConnection extends AbstractUserClientConnectionWrapper implements ConnectionThrottle { + private static final org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(WebUserConnection.class); + + /** + * WebUserConnectionWrapper which represents the UserClientConnection for the WebUser submitting the query. It provides + * access to the UserSession executing the query. There is no actual physical channel corresponding to this connection + * wrapper. + */ + + protected BufferAllocator allocator; + + protected SocketAddress remoteAddress; + + protected UserSession webUserSession; + + protected final ChannelPromise closeFuture; + + public final List> results = Lists.newArrayList(); + + public final Set columns = Sets.newLinkedHashSet(); + + WebUserConnection(BufferAllocator allocator, UserSession webUserSession, + SocketAddress remoteAddress, ChannelPromise closeFuture) { + this.allocator = allocator; + this.webUserSession = webUserSession; + this.remoteAddress = remoteAddress; + this.closeFuture = closeFuture; + } + + @Override + public UserSession getSession() { + return webUserSession; + } + + @Override + public void sendData(RpcOutcomeListener listener, QueryWritableBatch result) { + + // Check if there is any data or not. There can be overflow here but DrillBuf doesn't support allocating with + // bytes in long. Hence we are just preserving the earlier behavior and logging debug log for the case. + final int dataByteCount = (int) result.getByteCount(); + + if (dataByteCount <= 0) { + if (logger.isDebugEnabled()) { + logger.debug("Either no data received for this query or there is BufferOverflow in dataByteCount: {}", + dataByteCount); + } + latch.countDown(); + listener.success(Acks.OK, null); + return; + } + + // If here that means there is some data for sure. Create a ByteBuf with all the data in it. + final int rows = result.getHeader().getRowCount(); + final DrillBuf bufferWithData = allocator.buffer(dataByteCount); + try { + final ByteBuf[] resultDataBuffers = result.getBuffers(); + + for (final ByteBuf buffer : resultDataBuffers) { + bufferWithData.writeBytes(buffer); + buffer.release(); + } + + final RecordBatchLoader loader = new RecordBatchLoader(allocator); + try { + loader.load(result.getHeader().getDef(), bufferWithData); + // TODO: Clean: DRILL-2933: That load(...) no longer throws + // SchemaChangeException, so check/clean catch clause below. + for (int i = 0; i < loader.getSchema().getFieldCount(); ++i) { + columns.add(loader.getSchema().getColumn(i).getPath()); + } + for (int i = 0; i < rows; ++i) { + final Map record = Maps.newHashMap(); + for (VectorWrapper vw : loader) { + final String field = vw.getValueVector().getMetadata().getNamePart().getName(); + final ValueVector.Accessor accessor = vw.getValueVector().getAccessor(); + final Object value = i < accessor.getValueCount() ? accessor.getObject(i) : null; + final String display = value == null ? null : value.toString(); + record.put(field, display); + } + results.add(record); + } + } finally { + loader.clear(); + } + } catch (Exception e) { // not catching OOM here + exception = UserException.systemError(e).build(logger); + latch.countDown(); --- End diff -- Fixed. Removed` latch.countDown()` --- 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. ---