[jira] [Commented] (DRILL-8310) Convert Syslog Format to EVF V2

2022-09-19 Thread ASF GitHub Bot (Jira)


[ 
https://issues.apache.org/jira/browse/DRILL-8310?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17606895#comment-17606895
 ] 

ASF GitHub Bot commented on DRILL-8310:
---

jnturton commented on PR #2653:
URL: https://github.com/apache/drill/pull/2653#issuecomment-1251850425

   A totally straightforward conversion, thanks +1.




> Convert Syslog Format to EVF V2
> ---
>
> Key: DRILL-8310
> URL: https://issues.apache.org/jira/browse/DRILL-8310
> Project: Apache Drill
>  Issue Type: Improvement
>  Components: Storage - Syslog
>Affects Versions: 1.20.2
>Reporter: Charles Givre
>Assignee: Charles Givre
>Priority: Minor
> Fix For: 2.0.0
>
>
> This PR proposes to convert the syslog to use EVF V2.   No user facing 
> changes.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (DRILL-8136) Overhaul implict type casting logic

2022-09-19 Thread ASF GitHub Bot (Jira)


[ 
https://issues.apache.org/jira/browse/DRILL-8136?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17606883#comment-17606883
 ] 

ASF GitHub Bot commented on DRILL-8136:
---

jnturton merged PR #2638:
URL: https://github.com/apache/drill/pull/2638




> Overhaul implict type casting logic
> ---
>
> Key: DRILL-8136
> URL: https://issues.apache.org/jira/browse/DRILL-8136
> Project: Apache Drill
>  Issue Type: Improvement
>Reporter: Esther Buchwalter
>Assignee: James Turton
>Priority: Minor
>
> The existing implicit casting system is built on simplistic total ordering of 
> data types[1] that yields oddities such as TINYINT being regarded as the 
> closest numeric type to VARCHAR or DATE the closest type to FLOAT8. This, in 
> turn, hurts the range of data types with which SQL functions can be used. 
> E.g. `select sqrt('3.1415926')` works in many RDBMSes but not in Drill while, 
> confusingly, `select '123' + 456` does work in Drill. In addition the 
> limitations of the existing type precedence list mean that it has been 
> supplmented with ad hoc secondary casting rules that go in the opposite 
> direction.
> This Issue proposes a new, more flexible definition of casting distance based 
> on a weighted directed graph built over the Drill data types.
> [1] 
> [https://drill.apache.org/docs/supported-data-types/#implicit-casting-precedence-of-data-types]



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (DRILL-8313) introduce configuration for yaml parsing to override the default max file size

2022-09-19 Thread PJ Fanning (Jira)
PJ Fanning created DRILL-8313:
-

 Summary: introduce configuration for yaml parsing to override the 
default max file size
 Key: DRILL-8313
 URL: https://issues.apache.org/jira/browse/DRILL-8313
 Project: Apache Drill
  Issue Type: Improvement
Reporter: PJ Fanning


snakeyaml 1.32 brings in a default limit of 3Mb when parsing yaml files.

Need to allow users to specify another value if they need to.

[https://bitbucket.org/snakeyaml/snakeyaml/src/72dfa9f1074abe2b8a6c8776bee4476b0aed02e3/src/main/java/org/yaml/snakeyaml/LoaderOptions.java]

I only became aware of this issue in the last few hours.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (DRILL-8312) Convert Format Plugins to EVF V2

2022-09-19 Thread Charles Givre (Jira)
Charles Givre created DRILL-8312:


 Summary: Convert Format Plugins to EVF V2
 Key: DRILL-8312
 URL: https://issues.apache.org/jira/browse/DRILL-8312
 Project: Apache Drill
  Issue Type: Improvement
Affects Versions: 1.20.2
Reporter: Charles Givre
 Fix For: 2.0.0


This is a blanket ticket to convert all format plugins to EVF V2.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Resolved] (DRILL-8159) Upgrade HTTPD reader to use EVF V2

2022-09-19 Thread Charles Givre (Jira)


 [ 
https://issues.apache.org/jira/browse/DRILL-8159?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Charles Givre resolved DRILL-8159.
--
Resolution: Done

> Upgrade HTTPD reader to use EVF V2
> --
>
> Key: DRILL-8159
> URL: https://issues.apache.org/jira/browse/DRILL-8159
> Project: Apache Drill
>  Issue Type: New Feature
>Reporter: Paul Rogers
>Assignee: Paul Rogers
>Priority: Major
>
> Continuation of work originally in the DRILL-8085 PR.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (DRILL-8311) Convert SPSS Format Plugin to EVF V2

2022-09-19 Thread Charles Givre (Jira)
Charles Givre created DRILL-8311:


 Summary: Convert SPSS Format Plugin to EVF V2
 Key: DRILL-8311
 URL: https://issues.apache.org/jira/browse/DRILL-8311
 Project: Apache Drill
  Issue Type: Improvement
  Components: Storage - SPSS
Affects Versions: 1.20.2
Reporter: Charles Givre
Assignee: Charles Givre
 Fix For: 2.0.0


This PR converts the SPSS format plugin to use EVF V2. 



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (DRILL-8310) Convert Syslog Format to EVF V2

2022-09-19 Thread ASF GitHub Bot (Jira)


[ 
https://issues.apache.org/jira/browse/DRILL-8310?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17606676#comment-17606676
 ] 

ASF GitHub Bot commented on DRILL-8310:
---

cgivre opened a new pull request, #2653:
URL: https://github.com/apache/drill/pull/2653

   # [DRILL-8310](https://issues.apache.org/jira/browse/DRILL-8310): Convert 
Syslog Format to EVF V2
   
   ## Description
   This PR converts the Syslog format reader to use EVF V2.  
   
   ## Documentation
   No user facing changes.
   
   ## Testing
   Ran existing unit tests.




> Convert Syslog Format to EVF V2
> ---
>
> Key: DRILL-8310
> URL: https://issues.apache.org/jira/browse/DRILL-8310
> Project: Apache Drill
>  Issue Type: Improvement
>  Components: Storage - Syslog
>Affects Versions: 1.20.2
>Reporter: Charles Givre
>Assignee: Charles Givre
>Priority: Minor
> Fix For: 2.0.0
>
>
> This PR proposes to convert the syslog to use EVF V2.   No user facing 
> changes.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (DRILL-8310) Convert Syslog Format to EVF V2

2022-09-19 Thread Charles Givre (Jira)
Charles Givre created DRILL-8310:


 Summary: Convert Syslog Format to EVF V2
 Key: DRILL-8310
 URL: https://issues.apache.org/jira/browse/DRILL-8310
 Project: Apache Drill
  Issue Type: Improvement
  Components: Storage - Syslog
Affects Versions: 1.20.2
Reporter: Charles Givre
Assignee: Charles Givre
 Fix For: 2.0.0


This PR proposes to convert the syslog to use EVF V2.   No user facing changes.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (DRILL-8190) Mongo query: "Schema change not currently supported for schemas with complex types"

2022-09-19 Thread James Turton (Jira)


 [ 
https://issues.apache.org/jira/browse/DRILL-8190?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

James Turton updated DRILL-8190:

Fix Version/s: 1.20.3
   (was: Future)

> Mongo query: "Schema change not currently supported for schemas with complex 
> types"
> ---
>
> Key: DRILL-8190
> URL: https://issues.apache.org/jira/browse/DRILL-8190
> Project: Apache Drill
>  Issue Type: Bug
>  Components:  Server
>Affects Versions: 1.20.0
> Environment: RHEL 7: Linux  3.10.0-1160.59.1.el7.x86_64 #1 SMP Wed 
> Feb 16 12:17:35 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
>Reporter: Daniel Clark
>Assignee: Vova Vysotskyi
>Priority: Major
> Fix For: 1.20.3
>
> Attachments: customGrounds.gz, log_4.txt, profile_4.json
>
>
> I'm attempting to run this mongo query that ran successfully in Drill 1.19 
> with the 1.21.0-SNAPSHOT build. 
>  
> SELECT `Elements_Efforts`.`EffortTypeName` AS `EffortTypeName`,
>   `Elements`.`ElementSubTypeName` AS `ElementSubTypeName`,
>   `Elements`.`ElementTypeName` AS `ElementTypeName`,
>   `Elements`.`PlanID` AS `PlanID`
> FROM `mongo.grounds`.`Elements` `Elements`
>   INNER JOIN `mongo.grounds`.`Elements_Efforts` `Elements_Efforts` ON 
> (`Elements`.`_id` = `Elements_Efforts`.`_id`)
> WHERE (`Elements`.`PlanID` = '1623263140')
> GROUP BY `Elements_Efforts`.`EffortTypeName`,
>   `Elements`.`ElementSubTypeName`,
>   `Elements`.`ElementTypeName`,
>   `Elements`.`PlanID`
>  
> I'm getting this error message: UserRemoteException : SYSTEM ERROR: 
> RuntimeException: Schema change not currently supported for schemas with 
> complex types. I've attached the log, profile, and a mongodb dump containing 
> the relevant datasets.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (DRILL-8308) Upgrade POI to 5.2.3

2022-09-19 Thread ASF GitHub Bot (Jira)


[ 
https://issues.apache.org/jira/browse/DRILL-8308?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17606583#comment-17606583
 ] 

ASF GitHub Bot commented on DRILL-8308:
---

cgivre merged PR #2651:
URL: https://github.com/apache/drill/pull/2651




> Upgrade POI to 5.2.3
> 
>
> Key: DRILL-8308
> URL: https://issues.apache.org/jira/browse/DRILL-8308
> Project: Apache Drill
>  Issue Type: Improvement
>  Components: Storage - Other
>Affects Versions: 1.20.2
>Reporter: PJ Fanning
>Priority: Major
> Fix For: 1.20.3
>
>
> https://poi.apache.org/changes.html



--
This message was sent by Atlassian Jira
(v8.20.10#820010)