[jira] [Created] (DRILL-5229) Upgrade kudu client to org.apache.kudu:kudu-client:1.2.0

2017-01-26 Thread Rahul Raj (JIRA)
Rahul Raj created DRILL-5229: Summary: Upgrade kudu client to org.apache.kudu:kudu-client:1.2.0 Key: DRILL-5229 URL: https://issues.apache.org/jira/browse/DRILL-5229 Project: Apache Drill Issue

Re: Data types

2017-01-26 Thread Paul Rogers
Looks like I gave you advice that as a bit off. The function you want is either: this.buffer = fragmentContext.getManagedBuffer(); The above allocates a 256 byte buffer. You can initially allocate a larger one: this.buffer = fragmentContext.getManagedBuffer(4096); Or,

Re: Data types

2017-01-26 Thread Charles Givre
Thanks! I’m hoping to submit a PR eventually once I have this all done. I tried your changes and now I’m getting this error: 0: jdbc:drill:zk=local> select * from dfs.client.`small.misolog`; Error: DATA_READ ERROR: Tried to remove unmanaged buffer. Fragment 0:0 [Error Id:

[jira] [Created] (DRILL-5228) Several operators in the attached query profile take more time than expected

2017-01-26 Thread Rahul Challapalli (JIRA)
Rahul Challapalli created DRILL-5228: Summary: Several operators in the attached query profile take more time than expected Key: DRILL-5228 URL: https://issues.apache.org/jira/browse/DRILL-5228

Re: Data types

2017-01-26 Thread Paul Rogers
Hi Charles, Very cool plugin! My knowledge in this area is a bit sketchy… That said, the problem appears to be that the code does not extend the Drillbuf to ensure it has sufficient capacity. Try calling this method: reallocIfNeeded, something like this:

[jira] [Created] (DRILL-5227) Wrong time reported in the query profile for the external sort

2017-01-26 Thread Rahul Challapalli (JIRA)
Rahul Challapalli created DRILL-5227: Summary: Wrong time reported in the query profile for the external sort Key: DRILL-5227 URL: https://issues.apache.org/jira/browse/DRILL-5227 Project: Apache

Re: Data types

2017-01-26 Thread Charles Givre
Hi Paul, Would you mind taking a look at my code? I’m wondering if I’m doing this correctly. Just for context, I’m working on a generic log file reader for drill (https://github.com/cgivre/drill-logfile-plugin ), and I encountered some errors

Re: Data types

2017-01-26 Thread Paul Rogers
Hi Charles, The Varchar column can hold any length of data. We’ve recently been working on tests that have columns up to 8K in length. The one caveat is that, when working with data larger than 256 bytes, you must be extremely careful in your reader. The out-of-box text reader will always

Data types

2017-01-26 Thread Charles Givre
I’m working on a plugin to read log files and the data has some long strings. Is there a data type that can hold strings longer than 256 characters? Thanks, — Charles

[jira] [Created] (DRILL-5226) External Sort encountered an error while spilling to disk

2017-01-26 Thread Rahul Challapalli (JIRA)
Rahul Challapalli created DRILL-5226: Summary: External Sort encountered an error while spilling to disk Key: DRILL-5226 URL: https://issues.apache.org/jira/browse/DRILL-5226 Project: Apache Drill

[GitHub] drill pull request #729: Drill 1328 r4

2017-01-26 Thread amansinha100
Github user amansinha100 commented on a diff in the pull request: https://github.com/apache/drill/pull/729#discussion_r98108433 --- Diff: exec/java-exec/src/main/java/org/apache/drill/exec/planner/sql/handlers/AnalyzeTableHandler.java --- @@ -0,0 +1,256 @@ +/** + *

[GitHub] drill pull request #729: Drill 1328 r4

2017-01-26 Thread amansinha100
Github user amansinha100 commented on a diff in the pull request: https://github.com/apache/drill/pull/729#discussion_r98101328 --- Diff: exec/java-exec/src/main/java/org/apache/drill/exec/planner/common/DrillRelOptUtil.java --- @@ -169,4 +175,43 @@ private static boolean

[GitHub] drill pull request #729: Drill 1328 r4

2017-01-26 Thread amansinha100
Github user amansinha100 commented on a diff in the pull request: https://github.com/apache/drill/pull/729#discussion_r98077612 --- Diff: exec/java-exec/src/main/java/org/apache/drill/exec/planner/physical/NestedLoopJoinPrule.java --- @@ -84,8 +88,14 @@ public void

[GitHub] drill pull request #656: DRILL-5034: Select timestamp from hive generated pa...

2017-01-26 Thread bitblender
Github user bitblender commented on a diff in the pull request: https://github.com/apache/drill/pull/656#discussion_r98070065 --- Diff: exec/java-exec/src/main/java/org/apache/drill/exec/store/parquet/ParquetReaderUtility.java --- @@ -323,18 +323,28 @@ public static

[GitHub] drill issue #710: DRILL-5126: Provide simplified, unified "cluster fixture" ...

2017-01-26 Thread paul-rogers
Github user paul-rogers commented on the issue: https://github.com/apache/drill/pull/710 Rebased on master, resolved conflict and squashed commits. --- 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

[jira] [Created] (DRILL-5225) Needs better error message for table function when having incorrect table path

2017-01-26 Thread Krystal (JIRA)
Krystal created DRILL-5225: -- Summary: Needs better error message for table function when having incorrect table path Key: DRILL-5225 URL: https://issues.apache.org/jira/browse/DRILL-5225 Project: Apache

[jira] [Created] (DRILL-5224) CTTAS: fix errors connected with system path delimiters (Windows)

2017-01-26 Thread Arina Ielchiieva (JIRA)
Arina Ielchiieva created DRILL-5224: --- Summary: CTTAS: fix errors connected with system path delimiters (Windows) Key: DRILL-5224 URL: https://issues.apache.org/jira/browse/DRILL-5224 Project:

[GitHub] drill pull request #730: DRILL-5223:Drill should ensure balanced workload as...

2017-01-26 Thread ppadma
GitHub user ppadma opened a pull request: https://github.com/apache/drill/pull/730 DRILL-5223:Drill should ensure balanced workload assignment at node l… …evel in order to get better query performance. Please see DRILL-5223 for details: