Still no luck.

Output from your mvn-test-drill command is attached.

drill-java-exec: Artifact has not been packaged yet. ....


On Mon, Aug 21, 2023 at 10:36 AM James Turton <dz...@apache.org> wrote:

> Hi Mike
>
> I took a look at the build log that you shared with me recently and what
> happened in that run was OOM (first report on line 9348).
>
>    9355 2198813 ERROR [UserServer-1]
> [org.apache.drill.exec.rpc.RpcExceptionHandler] - Exception in RPC
> communication.    9355  Connection: /127.0.0.1:31046 <--> /127.0.0.1:39558
> (user server).  Closing connection.
>    9356 java.lang.OutOfMemoryError: GC overhead limit exceeded
>
> My command to run Drill tests set memory limits as follows.
>
> alias mvn-test-drill="mvn test \
>         -Djunit.args=\"-Duser.timezone=UTC -Duser.language=en
> -Duser.region=US\" \
>         -DmemoryMb=2560 -DdirectMemoryMb=2560 \
>         -DforkCount=2"
>
> Hope this helps...
> James
>
> On 2023/07/25 00:00, Mike Beckerle wrote:
>
> Hi drill devs,
>
> I'm still stuck on this problem. Can anyone suggest a way past this?
>
> Mike Beckerle
> Apache Daffodil PMC | daffodil.apache.org
> OGF DFDL Workgroup Co-Chair | www.ogf.org/ogf/doku.php/standards/dfdl/dfdl
> Owl Cyber Defense | www.owlcyberdefense.com
>
>
>
> On Mon, Jul 17, 2023 at 9:53 AM Mike Beckerle <mbecke...@apache.org> 
> <mbecke...@apache.org> wrote:
>
>
> Looks like I attached the wrong file. Doing too many things at once.
>
> The correct file is attached here.
>
>
>
> On Fri, Jul 14, 2023 at 2:04 PM Mike Beckerle <mbecke...@apache.org> 
> <mbecke...@apache.org>
> wrote:
>
>
> Update: I did a clean and install -DskipTests=true.
>
> Then I tried the mvn test using the non-UTC timezone stuff, as suggested.
>
> But alas, it still fails, this time the failure unique and is only in
> "Java Execution Engine"
>
> [ERROR] Failed to execute goal
> org.apache.maven.plugins:maven-dependency-plugin:3.4.0:unpack
> (unpack-vector-types) on project drill-java-exec: Artifact has not been
> packaged yet. When used on reactor artifact, unpack should be executed
> after packaging: see MDEP-98. -> [Help 1]
>
> The command and complete trace output are below.
>
> I need assistance on how to proceed.
>
> Complete trace from the mvn test is attached.
>
>
> On Thu, Jul 13, 2023 at 1:13 PM Mike Beckerle <mbecke...@apache.org> 
> <mbecke...@apache.org>
> wrote:
>
>
> To answer questions:
>
> 1. Paul: This is a 100% stock build. All I have done is clone the repo
> (master branch). Make a new git branch (in case I make future changes). Try
> to build (success) and test (failed so far).
>
> 2. James: The /opt/drill directory I created is owned by my userid and
> has full read/write access for all the development activities. I just put
> it there so it would have a shorter path to fix the first Hive-related
> glitch I encountered with the Linux 255 limit on file pathname length.
>
> I will try the suggested maven command line for non-UTC and see if
> things improve.
>
> The challenge for me as a newby is how do I know if I have everything
> properly configured?
>
> Can I just turn off building and testing of the Hive-related stuff in
> some supported/well-known way?
>
> If so, I would suggest I'd like to turn off not just Hive, but *as much
> as possible*. I really just need the embedded drill to work.
>
> I would agree with @Charles Givre <cgi...@gmail.com> <cgi...@gmail.com>  that 
> a contrib
> package addition is the ideal approach and that's what I'll be attempting.
>
> -mikeb
>
> On Thu, Jul 13, 2023 at 10:59 AM Charles Givre <cgi...@gmail.com> 
> <cgi...@gmail.com> wrote:
>
>
> I'll add some heresy here... IMHO, for the purposes of developing a
> DFDL extension, you probably don't need all the Drill tests to run.  For
> your project, my suggestion would be to add a module to the contrib package
> and that way your changes are relatively self contained.
> Best,
> -- C
>
>
>
>
> On Jul 13, 2023, at 10:27 AM, James Turton <dz...@apache.org> 
> <dz...@apache.org> wrote:
>
> Hi Mike
>
> Here's the command line I use to run tests on a machine that's not in
>
> the UTC time zone (plus some unrelated memory size arguments).
>
> mvn test -Djunit.args="-Duser.timezone=UTC -Duser.language=en
>
> -Duser.region=US" -DmemoryMb=2560 -DdirectMemoryMb=2560
>
> I have one other question to add to Paul's comments - does the OS
>
> user that you're running Maven under have write access to all of the source
> tree that you put at /opt/drill?
>
> On 2023/07/11 22:12, Paul Rogers wrote:
>
> Hi Mike,
>
> A quick glance at the log suggests a failure in the tests for the
>
> JSON
>
> reader, in the Mongo extended types. Drill's date/time support has
> historically been fragile. Some tests only work if your machine is
>
> set to
>
> use the UTC time zone (or Java is told to pretend that the time is
>
> UTC.)
>
> The Mongo types test failure seems to be around a date/time test so
>
> maybe
>
> this is the issue?
>
> There are also failures indicating that the Drillbit (Drill server)
>
> died.
>
> Not sure how this can happen, as tests run Drill embedded (or used
>
> to.)
>
> Looking earlier in the logs, it seems that the Drillbit didn't start
>
> due to
>
> UDF (user-defined function) failures:
>
> Found duplicated function in drill-custom-lower.jar:
> custom_lower(VARCHAR-REQUIRED)
> Found duplicated function in built-in: lower(VARCHAR-REQUIRED)
>
> Not sure how this could occur: it should have failed in all builds.
>
> Also:
>
> File
>
>
> /opt/drill/exec/java-exec/target/org.apache.drill.exec.udf.dynamic.TestDynamicUDFSupport/home/drill/happy/udf/staging/drill-custom-lower-sources.jar
>
> does not exist on file system file:///
>
> This is complaining that Drill needs the source code (not just class
>
> file)
>
> for its built-in functions. Again, this should not fail in a standard
> build, because if it did, it would fail in all builds.
>
> There are other odd errors as well.
>
> Perhaps we should ask: is this a "stock" build? Check out Drill and
>
> run
>
> tests? Or, have you already started making changes for your project?
>
> - Paul
>
>
> On Tue, Jul 11, 2023 at 9:07 AM Mike Beckerle <mbecke...@apache.org> 
> <mbecke...@apache.org>
>
> wrote:
>
> I have drill building and running its tests. Some tests fail:
>
> [ERROR]
>
> Tests run: 4366, Failures: 2, Errors: 1, Skipped: 133
>
> I am wondering if there is perhaps some setup step that I missed in
>
> the
>
> instructions.
>
> I have attached the output from the 'mvn clean install
>
> -DskipTests=false'
>
> execution. (zipped)
> I am running on Ubuntu 20.04, definitely have Java 8 setup.
>
> I'm hoping someone can skim it and spot the issue(s).
>
> Thanks for any help
>
> Mike Beckerle
> Apache Daffodil PMC | daffodil.apache.org
> OGF DFDL Workgroup Co-Chair |
>
> www.ogf.org/ogf/doku.php/standards/dfdl/dfdl
>
> Owl Cyber Defense | www.owlcyberdefense.com
>
>
>
>
[INFO] Scanning for projects...
[INFO] 
------------------------------------------------------------------------
[INFO] Detecting the operating system and CPU architecture
[INFO] 
------------------------------------------------------------------------
[INFO] os.detected.name: linux
[INFO] os.detected.arch: x86_64
[INFO] os.detected.bitness: 64
[INFO] os.detected.version: 6.2
[INFO] os.detected.version.major: 6
[INFO] os.detected.version.minor: 2
[INFO] os.detected.release: ubuntu
[INFO] os.detected.release.version: 22.04
[INFO] os.detected.release.like.ubuntu: true
[INFO] os.detected.release.like.debian: true
[INFO] os.detected.classifier: linux-x86_64
[INFO] 
------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO] 
[INFO] Drill :                                                        
    [pom]
[INFO] Drill : Tools :                                                
    [pom]
[INFO] Drill : Tools : Freemarker codegen                        
[maven-plugin]
[INFO] Drill : Protocol                                               
    [jar]
[INFO] Drill : Common                                                 
    [jar]
[INFO] Drill : Logical Plan                                           
    [jar]
[INFO] Drill : Exec :                                                 
    [pom]
[INFO] Drill : Exec : Memory :                                        
    [pom]
[INFO] Drill : Exec : Memory : Base                                   
    [jar]
[INFO] Drill : Exec : RPC                                             
    [jar]
[INFO] Drill : Exec : Vectors                                         
    [jar]
[INFO] Drill : Contrib :                                              
    [pom]
[INFO] Drill : Contrib : Data :                                       
    [pom]
[INFO] Drill : Contrib : Data : TPCH Sample                           
    [jar]
[INFO] Drill : Metastore :                                            
    [pom]
[INFO] Drill : Metastore : API                                        
    [jar]
[INFO] Drill : Metastore : Iceberg                                    
    [jar]
[INFO] Drill : Exec : Java Execution Engine                           
    [jar]
[INFO] Drill : Exec : JDBC Driver using dependencies                  
    [jar]
[INFO] Drill : Exec : JDBC JAR with all dependencies                  
    [jar]
[INFO] Drill : On-YARN                                                
    [jar]
[INFO] Drill : Metastore : RDBMS                                      
    [jar]
[INFO] Drill : Metastore : Mongo                                      
    [jar]
[INFO] Drill : Contrib : Storage : Kudu                               
    [jar]
[INFO] Drill : Contrib : Format : XML                                 
    [jar]
[INFO] Drill : Contrib : Storage : HTTP                               
    [jar]
[INFO] Drill : Contrib : Storage : OpenTSDB                           
    [jar]
[INFO] Drill : Contrib : Storage : MongoDB                            
    [jar]
[INFO] Drill : Contrib : Storage : HBase                              
    [jar]
[INFO] Drill : Contrib : Storage : JDBC                               
    [jar]
[INFO] Drill : Contrib : Storage : Hive :                             
    [pom]
[INFO] Drill : Contrib : Storage : Hive : Exec Shaded                 
    [jar]
[INFO] Drill : Contrib : Storage : Hive : Core                        
    [jar]
[INFO] Drill : Contrib : Storage : Kafka                              
    [jar]
[INFO] Drill : Contrib : Storage : Cassandra                          
    [jar]
[INFO] Drill : Contrib : Storage : ElasticSearch                      
    [jar]
[INFO] Drill : Contrib : Storage : Splunk                             
    [jar]
[INFO] Drill : Contrib : Storage : GoogleSheets                       
    [jar]
[INFO] Drill : Contrib : Storage : Phoenix                            
    [jar]
[INFO] Drill : Contrib : UDFs                                         
    [jar]
[INFO] Drill : Contrib : Format : Syslog                              
    [jar]
[INFO] Drill : Contrib : Format : Httpd/Nginx Access Log              
    [jar]
[INFO] Drill : Contrib : Format : PDF                                 
    [jar]
[INFO] Drill : Contrib : Format : HDF5                                
    [jar]
[INFO] Drill : Contrib : Format : SPSS                                
    [jar]
[INFO] Drill : Contrib : Format : SAS                                 
    [jar]
[INFO] Drill : Contrib : Format : LTSV                                
    [jar]
[INFO] Drill : Contrib : Format : Image                               
    [jar]
[INFO] Drill : Contrib : Format : Pcap-NG                             
    [jar]
[INFO] Drill : Contrib : Format : Esri                                
    [jar]
[INFO] Drill : Contrib : Format : Excel                               
    [jar]
[INFO] Drill : Contrib : Format : MS Access                           
    [jar]
[INFO] Drill : Contrib : Format : Log Regex                           
    [jar]
[INFO] Drill : Contrib : Storage : Druid                              
    [jar]
[INFO] Drill : Contrib : Format : Iceberg                             
    [jar]
[INFO] Drill : Contrib : Format : Delta Lake                          
    [jar]
[INFO] Drill : Contrib : Storage : Drill                              
    [jar]
[INFO] Drill : Packaging and Distribution Assembly                    
    [pom]
[INFO] Drill : Contrib : Format : MaprDB                              
    [jar]
[INFO] 
[INFO] --------------------< 
org.apache.drill:drill-root >---------------------
[INFO] Building Drill : 1.22.0-SNAPSHOT                           
       [1/59]
[INFO] --------------------------------[ pom 
]---------------------------------
[INFO] 
[INFO] --- apache-rat-plugin:0.15:check 
(rat-checks) @ drill-root ---
[INFO] RAT will not execute since it is configured to be skipped via 
system property 'rat.skip'.
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-maven-version) @ drill-root ---
[INFO] Rule 0: 
org.apache.maven.enforcer.rules.version.RequireMavenVersion passed
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-java-version) @ drill-root ---
[INFO] Rule 0: 
org.apache.maven.enforcer.rules.version.RequireJavaVersion passed
[INFO] 
[INFO] --- git-commit-id-plugin:4.0.5:revision 
(for-source-tarball) @ drill-root ---
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:copy-resources 
(default) @ drill-root ---
[INFO] Copying 1 resource from  to target/classes
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.7.0:process 
(process-resource-bundles) @ drill-root ---
[INFO] Preparing remote bundle 
org.apache:apache-jar-resource-bundle:1.4
[INFO] Copying 3 resources from 1 bundle.
[INFO] 
[INFO] ----------------< 
org.apache.drill.tools:tools-parent >-----------------
[INFO] Building Drill : Tools : 1.22.0-SNAPSHOT                   
       [2/59]
[INFO] --------------------------------[ pom 
]---------------------------------
[INFO] 
[INFO] --- apache-rat-plugin:0.15:check 
(rat-checks) @ tools-parent ---
[INFO] RAT will not execute since it is configured to be skipped via 
system property 'rat.skip'.
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-maven-version) @ tools-parent ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-java-version) @ tools-parent ---
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:copy-resources 
(default) @ tools-parent ---
[INFO] Copying 1 resource from .. to target/classes
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.7.0:process 
(process-resource-bundles) @ tools-parent ---
[INFO] Preparing remote bundle 
org.apache:apache-jar-resource-bundle:1.4
[INFO] Copying 3 resources from 1 bundle.
[INFO] 
[INFO] -----------< 
org.apache.drill.tools:drill-fmpp-maven-plugin >-----------
[INFO] Building Drill : Tools : Freemarker codegen 
1.22.0-SNAPSHOT       [3/59]
[INFO] ----------------------------[ maven-plugin 
]----------------------------
[INFO] 
[INFO] --- apache-rat-plugin:0.15:check 
(rat-checks) @ drill-fmpp-maven-plugin ---
[INFO] RAT will not execute since it is configured to be skipped via 
system property 'rat.skip'.
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-maven-version) @ drill-fmpp-maven-plugin ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-java-version) @ drill-fmpp-maven-plugin ---
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:copy-resources 
(default) @ drill-fmpp-maven-plugin ---
[INFO] Copying 1 resource from ../.. to target/classes
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.7.0:process 
(process-resource-bundles) @ drill-fmpp-maven-plugin ---
[INFO] Preparing remote bundle 
org.apache:apache-jar-resource-bundle:1.4
[INFO] Copying 3 resources from 1 bundle.
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:resources 
(default-resources) @ drill-fmpp-maven-plugin ---
[INFO] skip non existing resourceDirectory 
/opt/drill/tools/fmpp/src/main/resources
[INFO] Copying 3 resources from target/maven-shared-archive-resources 
to target/classes
[INFO] 
[INFO] --- maven-compiler-plugin:3.11.0:compile 
(default-compile) @ drill-fmpp-maven-plugin ---
[INFO] Compiling 4 source files with javac [forked debug target 1.8] 
to target/classes
[INFO] 
[INFO] --- maven-plugin-plugin:3.6.0:descriptor 
(default-descriptor) @ drill-fmpp-maven-plugin ---
[INFO] Using 'UTF-8' encoding to read mojo source files.
[INFO] java-javadoc mojo extractor found 1 mojo descriptor.
[INFO] java-annotations mojo extractor found 0 mojo descriptor.
[INFO] 
[INFO] --- maven-plugin-plugin:3.6.0:helpmojo 
(help-descriptor) @ drill-fmpp-maven-plugin ---
[INFO] Using 'UTF-8' encoding to read mojo source files.
[INFO] java-javadoc mojo extractor found 1 mojo descriptor.
[INFO] java-annotations mojo extractor found 0 mojo descriptor.
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:testResources 
(default-testResources) @ drill-fmpp-maven-plugin ---
[INFO] skip non existing resourceDirectory 
/opt/drill/tools/fmpp/src/test/resources
[INFO] Copying 3 resources from target/maven-shared-archive-resources 
to target/test-classes
[INFO] 
[INFO] --- maven-compiler-plugin:3.11.0:testCompile 
(default-testCompile) @ drill-fmpp-maven-plugin ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-surefire-plugin:3.1.2:test 
(default-test) @ drill-fmpp-maven-plugin ---
[INFO] 
[INFO] ------------------< 
org.apache.drill:drill-protocol >-------------------
[INFO] Building Drill : Protocol 1.22.0-SNAPSHOT                  
       [4/59]
[INFO] --------------------------------[ jar 
]---------------------------------
[INFO] 
[INFO] --- apache-rat-plugin:0.15:check 
(rat-checks) @ drill-protocol ---
[INFO] RAT will not execute since it is configured to be skipped via 
system property 'rat.skip'.
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-maven-version) @ drill-protocol ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-java-version) @ drill-protocol ---
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:copy-resources 
(default) @ drill-protocol ---
[INFO] Copying 1 resource from .. to target/classes
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.7.0:process 
(process-resource-bundles) @ drill-protocol ---
[INFO] Preparing remote bundle 
org.apache:apache-jar-resource-bundle:1.4
[INFO] Copying 3 resources from 1 bundle.
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:resources 
(default-resources) @ drill-protocol ---
[INFO] skip non existing resourceDirectory 
/opt/drill/protocol/src/main/resources
[INFO] Copying 3 resources from target/maven-shared-archive-resources 
to target/classes
[INFO] 
[INFO] --- maven-compiler-plugin:3.11.0:compile 
(default-compile) @ drill-protocol ---
[INFO] Compiling 18 source files with javac [forked debug target 1.8] 
to target/classes
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:testResources 
(default-testResources) @ drill-protocol ---
[INFO] skip non existing resourceDirectory 
/opt/drill/protocol/src/test/resources
[INFO] Copying 3 resources from target/maven-shared-archive-resources 
to target/test-classes
[INFO] 
[INFO] --- maven-compiler-plugin:3.11.0:testCompile 
(default-testCompile) @ drill-protocol ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-surefire-plugin:3.1.2:test 
(default-test) @ drill-protocol ---
[INFO] 
[INFO] -------------------< 
org.apache.drill:drill-common >--------------------
[INFO] Building Drill : Common 1.22.0-SNAPSHOT                    
       [5/59]
[INFO] --------------------------------[ jar 
]---------------------------------
[INFO] 
[INFO] --- apache-rat-plugin:0.15:check 
(rat-checks) @ drill-common ---
[INFO] RAT will not execute since it is configured to be skipped via 
system property 'rat.skip'.
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-maven-version) @ drill-common ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-java-version) @ drill-common ---
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:copy-resources 
(default) @ drill-common ---
[INFO] Copying 1 resource from .. to target/classes
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.7.0:process 
(process-resource-bundles) @ drill-common ---
[INFO] Preparing remote bundle 
org.apache:apache-jar-resource-bundle:1.4
[INFO] Copying 3 resources from 1 bundle.
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:resources 
(default-resources) @ drill-common ---
[INFO] Copying 2 resources from src/main/resources to target/classes
[INFO] Copying 3 resources from target/maven-shared-archive-resources 
to target/classes
[INFO] 
[INFO] --- maven-compiler-plugin:3.11.0:compile 
(default-compile) @ drill-common ---
[INFO] Compiling 82 source files with javac [forked debug target 1.8] 
to target/classes
[INFO] 
[INFO] --- exec-maven-plugin:3.1.0:java 
(default) @ drill-common ---
11:04:37,415 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is 
logback-classic version 1.3.5
11:04:37,426 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found 
resource [logback-test.xml] at 
[file:/opt/drill/common/src/test/resources/logback-test.xml]
11:04:37,517 |-WARN in ch.qos.logback.core.model.processor.AppenderModelHandler 
- Appender named [STDOUT] not referenced. Skipping further processing.
11:04:37,517 |-INFO in 
ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level 
of ROOT logger to ERROR
11:04:37,517 |-INFO in 
ch.qos.logback.core.model.processor.DefaultProcessor@7e2d7d29 - End of 
configuration.
11:04:37,518 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@3e5472ac 
- Registering current configuration as safe fallback point

[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:testResources 
(default-testResources) @ drill-common ---
[INFO] Copying 8 resources from src/test/resources to 
target/test-classes
[INFO] Copying 3 resources from target/maven-shared-archive-resources 
to target/test-classes
[INFO] 
[INFO] --- maven-compiler-plugin:3.11.0:testCompile 
(default-testCompile) @ drill-common ---
[INFO] Compiling 41 source files with javac [forked debug target 1.8] 
to target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:3.1.2:test 
(default-test) @ drill-common ---
[INFO] Using configured provider 
org.apache.maven.surefire.junitplatform.JUnitPlatformProvider
[INFO] 
[INFO] -------------------------------------------------------
[INFO]  T E S T S
[INFO] -------------------------------------------------------
[INFO] Running org.apache.drill.common.util.TestGuavaPatcher
[INFO] Running 
org.apache.drill.common.util.function.TestCheckedFunction
15:04:39,439 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is 
logback-classic version 1.3.5
15:04:39,449 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found 
resource [logback-test.xml] at 
[file:/opt/drill/common/target/test-classes/logback-test.xml]
15:04:39,528 |-WARN in ch.qos.logback.core.model.processor.AppenderModelHandler 
- Appender named [STDOUT] not referenced. Skipping further processing.
15:04:39,528 |-INFO in 
ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level 
of ROOT logger to ERROR
15:04:39,528 |-INFO in 
ch.qos.logback.core.model.processor.DefaultProcessor@61386958 - End of 
configuration.
15:04:39,528 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@73ee04c8 
- Registering current configuration as safe fallback point

15:04:39,456 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is 
logback-classic version 1.3.5
15:04:39,466 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found 
resource [logback-test.xml] at 
[file:/opt/drill/common/target/test-classes/logback-test.xml]
15:04:39,544 |-WARN in ch.qos.logback.core.model.processor.AppenderModelHandler 
- Appender named [STDOUT] not referenced. Skipping further processing.
15:04:39,544 |-INFO in 
ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level 
of ROOT logger to ERROR
15:04:39,544 |-INFO in 
ch.qos.logback.core.model.processor.DefaultProcessor@26275bef - End of 
configuration.
15:04:39,545 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@7690781 - 
Registering current configuration as safe fallback point

[INFO] Tests run: 1, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.293 s -- in 
org.apache.drill.common.util.function.TestCheckedFunction
[INFO] Tests run: 11, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.305 s -- in 
org.apache.drill.common.util.TestGuavaPatcher
[INFO] Running 
org.apache.drill.common.map.TestCaseInsensitiveMap
[INFO] Running 
org.apache.drill.common.exceptions.TestUserException
[INFO] Tests run: 3, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.014 s -- in 
org.apache.drill.common.map.TestCaseInsensitiveMap
[INFO] Running org.apache.drill.common.TestVersion
[INFO] Tests run: 6, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.010 s -- in 
org.apache.drill.common.TestVersion
[INFO] Tests run: 7, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.050 s -- in 
org.apache.drill.common.exceptions.TestUserException
[INFO] Running 
org.apache.drill.test.Drill2130CommonHamcrestConfigurationTest
[INFO] Tests run: 1, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.023 s -- in 
org.apache.drill.test.Drill2130CommonHamcrestConfigurationTest
[INFO] 
[INFO] Results:
[INFO] 
[INFO] Tests run: 29, Failures: 0, Errors: 0, Skipped: 0
[INFO] 
[INFO] 
[INFO] -------------------< 
org.apache.drill:drill-logical >-------------------
[INFO] Building Drill : Logical Plan 1.22.0-SNAPSHOT              
       [6/59]
[INFO] --------------------------------[ jar 
]---------------------------------
[INFO] 
[INFO] --- apache-rat-plugin:0.15:check 
(rat-checks) @ drill-logical ---
[INFO] RAT will not execute since it is configured to be skipped via 
system property 'rat.skip'.
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-maven-version) @ drill-logical ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-java-version) @ drill-logical ---
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:copy-resources 
(default) @ drill-logical ---
[INFO] Copying 1 resource from .. to target/classes
[INFO] 
[INFO] --- antlr4-maven-plugin:4.9.3:antlr4 
(default) @ drill-logical ---
[INFO] ANTLR 4: Processing source directory 
/opt/drill/logical/src/main/antlr4
[INFO] Processing grammar: 
org/apache/drill/common/expression/parser/ExprLexer.g4
[INFO] Processing grammar: 
org/apache/drill/common/expression/parser/ExprParser.g4
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.7.0:process 
(process-resource-bundles) @ drill-logical ---
[INFO] Preparing remote bundle 
org.apache:apache-jar-resource-bundle:1.4
[INFO] Copying 3 resources from 1 bundle.
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:resources 
(default-resources) @ drill-logical ---
[INFO] Copying 1 resource from src/main/resources to target/classes
[INFO] Copying 3 resources from target/maven-shared-archive-resources 
to target/classes
[INFO] 
[INFO] --- maven-compiler-plugin:3.11.0:compile 
(default-compile) @ drill-logical ---
[INFO] Compiling 120 source files with javac [forked debug target 
1.8] to target/classes
[INFO] 
[INFO] --- exec-maven-plugin:3.1.0:java 
(default) @ drill-logical ---
11:04:42,849 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is 
logback-classic version 1.3.5
11:04:42,852 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found 
resource [logback-test.xml] at 
[file:/opt/drill/common/target/test-classes/logback-test.xml]
11:04:42,907 |-WARN in ch.qos.logback.core.model.processor.AppenderModelHandler 
- Appender named [STDOUT] not referenced. Skipping further processing.
11:04:42,907 |-INFO in 
ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level 
of ROOT logger to ERROR
11:04:42,908 |-INFO in 
ch.qos.logback.core.model.processor.DefaultProcessor@668b3619 - End of 
configuration.
11:04:42,908 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@68e4105b 
- Registering current configuration as safe fallback point

[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:testResources 
(default-testResources) @ drill-logical ---
[INFO] skip non existing resourceDirectory 
/opt/drill/logical/src/test/resources
[INFO] Copying 3 resources from target/maven-shared-archive-resources 
to target/test-classes
[INFO] 
[INFO] --- maven-compiler-plugin:3.11.0:testCompile 
(default-testCompile) @ drill-logical ---
[INFO] Compiling 6 source files with javac [forked debug target 1.8] 
to target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:3.1.2:test 
(default-test) @ drill-logical ---
[INFO] Using configured provider 
org.apache.maven.surefire.junitplatform.JUnitPlatformProvider
[INFO] 
[INFO] -------------------------------------------------------
[INFO]  T E S T S
[INFO] -------------------------------------------------------
[INFO] Running org.apache.drill.common.logical.data.OrderTest
[INFO] Running 
org.apache.drill.common.expression.parser.TreeTest
15:04:44,994 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is 
logback-classic version 1.3.5
15:04:45,004 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found 
resource [logback-test.xml] at 
[file:/opt/drill/common/target/test-classes/logback-test.xml]
15:04:45,098 |-WARN in ch.qos.logback.core.model.processor.AppenderModelHandler 
- Appender named [STDOUT] not referenced. Skipping further processing.
15:04:45,098 |-INFO in 
ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level 
of ROOT logger to ERROR
15:04:45,098 |-INFO in 
ch.qos.logback.core.model.processor.DefaultProcessor@10feca44 - End of 
configuration.
15:04:45,099 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@3fb1549b 
- Registering current configuration as safe fallback point

15:04:45,022 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is 
logback-classic version 1.3.5
15:04:45,037 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found 
resource [logback-test.xml] at 
[file:/opt/drill/common/target/test-classes/logback-test.xml]
15:04:45,133 |-WARN in ch.qos.logback.core.model.processor.AppenderModelHandler 
- Appender named [STDOUT] not referenced. Skipping further processing.
15:04:45,133 |-INFO in 
ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level 
of ROOT logger to ERROR
15:04:45,133 |-INFO in 
ch.qos.logback.core.model.processor.DefaultProcessor@7e5afaa6 - End of 
configuration.
15:04:45,134 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@63a12c68 
- Registering current configuration as safe fallback point

[INFO] Tests run: 6, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.322 s -- in 
org.apache.drill.common.logical.data.OrderTest
[INFO] Running 
org.apache.drill.common.expression.SchemaPathTest
[INFO] Tests run: 5, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.100 s -- in 
org.apache.drill.common.expression.SchemaPathTest
[INFO] Running 
org.apache.drill.common.expression.PathSegmentTests
[INFO] Tests run: 1, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.168 s -- in 
org.apache.drill.common.expression.PathSegmentTests
[INFO] Running 
org.apache.drill.common.expression.fn.JodaDateValidatorTest
[INFO] Tests run: 13, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.672 s -- in 
org.apache.drill.common.expression.parser.TreeTest
[INFO] Tests run: 12, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.057 s -- in 
org.apache.drill.common.expression.fn.JodaDateValidatorTest
[INFO] 
[INFO] Results:
[INFO] 
[INFO] Tests run: 37, Failures: 0, Errors: 0, Skipped: 0
[INFO] 
[INFO] 
[INFO] -----------------< 
org.apache.drill.exec:exec-parent >------------------
[INFO] Building Drill : Exec : 1.22.0-SNAPSHOT                    
       [7/59]
[INFO] --------------------------------[ pom 
]---------------------------------
[INFO] 
[INFO] --- apache-rat-plugin:0.15:check 
(rat-checks) @ exec-parent ---
[INFO] RAT will not execute since it is configured to be skipped via 
system property 'rat.skip'.
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-maven-version) @ exec-parent ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-java-version) @ exec-parent ---
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:copy-resources 
(default) @ exec-parent ---
[INFO] Copying 1 resource from .. to target/classes
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.7.0:process 
(process-resource-bundles) @ exec-parent ---
[INFO] Preparing remote bundle 
org.apache:apache-jar-resource-bundle:1.4
[INFO] Copying 3 resources from 1 bundle.
[INFO] 
[INFO] ---------------< 
org.apache.drill.memory:memory-parent >----------------
[INFO] Building Drill : Exec : Memory : 1.22.0-SNAPSHOT           
       [8/59]
[INFO] --------------------------------[ pom 
]---------------------------------
[INFO] 
[INFO] --- apache-rat-plugin:0.15:check 
(rat-checks) @ memory-parent ---
[INFO] RAT will not execute since it is configured to be skipped via 
system property 'rat.skip'.
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-maven-version) @ memory-parent ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-java-version) @ memory-parent ---
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:copy-resources 
(default) @ memory-parent ---
[INFO] Copying 1 resource from ../.. to target/classes
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.7.0:process 
(process-resource-bundles) @ memory-parent ---
[INFO] Preparing remote bundle 
org.apache:apache-jar-resource-bundle:1.4
[INFO] Copying 3 resources from 1 bundle.
[INFO] 
[INFO] -------------< 
org.apache.drill.memory:drill-memory-base >--------------
[INFO] Building Drill : Exec : Memory : Base 1.22.0-SNAPSHOT      
       [9/59]
[INFO] --------------------------------[ jar 
]---------------------------------
[INFO] 
[INFO] --- apache-rat-plugin:0.15:check 
(rat-checks) @ drill-memory-base ---
[INFO] RAT will not execute since it is configured to be skipped via 
system property 'rat.skip'.
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-maven-version) @ drill-memory-base ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-java-version) @ drill-memory-base ---
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:copy-resources 
(default) @ drill-memory-base ---
[INFO] Copying 1 resource from ../../.. to target/classes
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.7.0:process 
(process-resource-bundles) @ drill-memory-base ---
[INFO] Preparing remote bundle 
org.apache:apache-jar-resource-bundle:1.4
[INFO] Copying 3 resources from 1 bundle.
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:resources 
(default-resources) @ drill-memory-base ---
[INFO] Copying 1 resource from src/main/resources to target/classes
[INFO] Copying 3 resources from target/maven-shared-archive-resources 
to target/classes
[INFO] 
[INFO] --- maven-compiler-plugin:3.11.0:compile 
(default-compile) @ drill-memory-base ---
[INFO] Compiling 20 source files with javac [forked debug target 1.8] 
to target/classes
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:testResources 
(default-testResources) @ drill-memory-base ---
[INFO] skip non existing resourceDirectory 
/opt/drill/exec/memory/base/src/test/resources
[INFO] Copying 3 resources from target/maven-shared-archive-resources 
to target/test-classes
[INFO] 
[INFO] --- maven-compiler-plugin:3.11.0:testCompile 
(default-testCompile) @ drill-memory-base ---
[INFO] Compiling 4 source files with javac [forked debug target 1.8] 
to target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:3.1.2:test 
(default-test) @ drill-memory-base ---
[INFO] Using configured provider 
org.apache.maven.surefire.junitplatform.JUnitPlatformProvider
[INFO] 
[INFO] -------------------------------------------------------
[INFO]  T E S T S
[INFO] -------------------------------------------------------
[INFO] Running org.apache.drill.exec.memory.BoundsCheckingTest
[INFO] Running org.apache.drill.exec.memory.TestAccountant
15:04:48,342 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is 
logback-classic version 1.3.5
15:04:48,352 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found 
resource [logback-test.xml] at 
[file:/opt/drill/common/target/test-classes/logback-test.xml]
15:04:48,441 |-WARN in ch.qos.logback.core.model.processor.AppenderModelHandler 
- Appender named [STDOUT] not referenced. Skipping further processing.
15:04:48,441 |-INFO in 
ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level 
of ROOT logger to ERROR
15:04:48,441 |-INFO in 
ch.qos.logback.core.model.processor.DefaultProcessor@3972a855 - End of 
configuration.
15:04:48,442 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@62e7f11d 
- Registering current configuration as safe fallback point

15:04:48,383 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is 
logback-classic version 1.3.5
15:04:48,395 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found 
resource [logback-test.xml] at 
[file:/opt/drill/common/target/test-classes/logback-test.xml]
15:04:48,478 |-WARN in ch.qos.logback.core.model.processor.AppenderModelHandler 
- Appender named [STDOUT] not referenced. Skipping further processing.
15:04:48,479 |-INFO in 
ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level 
of ROOT logger to ERROR
15:04:48,479 |-INFO in 
ch.qos.logback.core.model.processor.DefaultProcessor@1eb5174b - End of 
configuration.
15:04:48,479 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@67080771 
- Registering current configuration as safe fallback point

[INFO] Tests run: 3, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.320 s -- in 
org.apache.drill.exec.memory.TestAccountant
[INFO] Running org.apache.drill.exec.memory.TestEndianess
[INFO] Tests run: 1, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.482 s -- in 
org.apache.drill.exec.memory.BoundsCheckingTest
[INFO] Running org.apache.drill.exec.memory.TestBaseAllocator
[INFO] Tests run: 1, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.148 s -- in 
org.apache.drill.exec.memory.TestEndianess
[WARNING] Tests run: 20, Failures: 0, Errors: 
0, Skipped: 1, Time elapsed: 0.072 s -- in 
org.apache.drill.exec.memory.TestBaseAllocator
[INFO] 
[INFO] Results:
[INFO] 
[WARNING] Tests run: 25, Failures: 0, Errors: 0, Skipped: 1
[INFO] 
[INFO] 
[INFO] ------------------< 
org.apache.drill.exec:drill-rpc >-------------------
[INFO] Building Drill : Exec : RPC 1.22.0-SNAPSHOT                
      [10/59]
[INFO] --------------------------------[ jar 
]---------------------------------
[INFO] 
[INFO] --- apache-rat-plugin:0.15:check 
(rat-checks) @ drill-rpc ---
[INFO] RAT will not execute since it is configured to be skipped via 
system property 'rat.skip'.
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-maven-version) @ drill-rpc ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-java-version) @ drill-rpc ---
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:copy-resources 
(default) @ drill-rpc ---
[INFO] Copying 1 resource from ../.. to target/classes
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.7.0:process 
(process-resource-bundles) @ drill-rpc ---
[INFO] Preparing remote bundle 
org.apache:apache-jar-resource-bundle:1.4
[INFO] Copying 3 resources from 1 bundle.
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:resources 
(default-resources) @ drill-rpc ---
[INFO] skip non existing resourceDirectory 
/opt/drill/exec/rpc/src/main/resources
[INFO] Copying 3 resources from target/maven-shared-archive-resources 
to target/classes
[INFO] 
[INFO] --- maven-compiler-plugin:3.11.0:compile 
(default-compile) @ drill-rpc ---
[INFO] Compiling 55 source files with javac [forked debug target 1.8] 
to target/classes
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:testResources 
(default-testResources) @ drill-rpc ---
[INFO] skip non existing resourceDirectory 
/opt/drill/exec/rpc/src/test/resources
[INFO] Copying 3 resources from target/maven-shared-archive-resources 
to target/test-classes
[INFO] 
[INFO] --- maven-compiler-plugin:3.11.0:testCompile 
(default-testCompile) @ drill-rpc ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-surefire-plugin:3.1.2:test 
(default-test) @ drill-rpc ---
[INFO] 
[INFO] --------------------< 
org.apache.drill.exec:vector >--------------------
[INFO] Building Drill : Exec : Vectors 1.22.0-SNAPSHOT            
      [11/59]
[INFO] --------------------------------[ jar 
]---------------------------------
[INFO] 
[INFO] --- apache-rat-plugin:0.15:check 
(rat-checks) @ vector ---
[INFO] RAT will not execute since it is configured to be skipped via 
system property 'rat.skip'.
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-maven-version) @ vector ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-java-version) @ vector ---
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:copy-resources 
(default) @ vector ---
[INFO] Copying 1 resource from ../.. to target/classes
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:copy-resources 
(copy-fmpp-resources) @ vector ---
[INFO] Copying 31 resources from src/main/codegen to target/codegen
[INFO] 
[INFO] --- 
drill-fmpp-maven-plugin:1.22.0-SNAPSHOT:generate 
(generate-fmpp) @ vector ---
[INFO] Freemarker generation:
 scope: compile,
 config: /opt/drill/exec/vector/src/main/codegen/config.fmpp,
 templates: /opt/drill/exec/vector/target/codegen/templates
[INFO] Adding maven data loader
...........................
[INFO] Freemarker generation took 532ms
[INFO] Incremental output update took 0ms
[INFO] new: 561
[INFO] changed: 0
[INFO] unchanged: 0
[INFO] 
[INFO] --- antlr4-maven-plugin:4.9.3:antlr4 
(default) @ vector ---
[INFO] ANTLR 4: Processing source directory 
/opt/drill/exec/vector/src/main/antlr4
[INFO] Processing grammar: 
org/apache/drill/exec/record/metadata/schema/parser/SchemaLexer.g4
[INFO] Processing grammar: 
org/apache/drill/exec/record/metadata/schema/parser/SchemaParser.g4
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.7.0:process 
(process-resource-bundles) @ vector ---
[INFO] Preparing remote bundle 
org.apache:apache-jar-resource-bundle:1.4
[INFO] Copying 3 resources from 1 bundle.
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:resources 
(default-resources) @ vector ---
[INFO] Copying 31 resources from src/main/codegen to 
target/classes/codegen
[INFO] Copying 3 resources from target/maven-shared-archive-resources 
to target/classes
[INFO] 
[INFO] --- maven-compiler-plugin:3.11.0:compile 
(default-compile) @ vector ---
[INFO] Compiling 759 source files with javac [forked debug target 
1.8] to target/classes
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:testResources 
(default-testResources) @ vector ---
[INFO] skip non existing resourceDirectory 
/opt/drill/exec/vector/src/test/resources
[INFO] Copying 3 resources from target/maven-shared-archive-resources 
to target/test-classes
[INFO] 
[INFO] --- maven-compiler-plugin:3.11.0:testCompile 
(default-testCompile) @ vector ---
[INFO] Compiling 7 source files with javac [forked debug target 1.8] 
to target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:3.1.2:test 
(default-test) @ vector ---
[INFO] Using configured provider 
org.apache.maven.surefire.junitplatform.JUnitPlatformProvider
[INFO] 
[INFO] -------------------------------------------------------
[INFO]  T E S T S
[INFO] -------------------------------------------------------
[INFO] Running 
org.apache.drill.exec.vector.VariableLengthVectorTest
[INFO] Running org.apache.drill.exec.vector.VectorTest
15:05:33,417 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is 
logback-classic version 1.3.5
15:05:33,432 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found 
resource [logback-test.xml] at 
[file:/opt/drill/common/target/test-classes/logback-test.xml]
15:05:33,520 |-WARN in ch.qos.logback.core.model.processor.AppenderModelHandler 
- Appender named [STDOUT] not referenced. Skipping further processing.
15:05:33,520 |-INFO in 
ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level 
of ROOT logger to ERROR
15:05:33,520 |-INFO in 
ch.qos.logback.core.model.processor.DefaultProcessor@51dcb805 - End of 
configuration.
15:05:33,521 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@66498326 
- Registering current configuration as safe fallback point

15:05:33,422 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is 
logback-classic version 1.3.5
15:05:33,433 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found 
resource [logback-test.xml] at 
[file:/opt/drill/common/target/test-classes/logback-test.xml]
15:05:33,518 |-WARN in ch.qos.logback.core.model.processor.AppenderModelHandler 
- Appender named [STDOUT] not referenced. Skipping further processing.
15:05:33,518 |-INFO in 
ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level 
of ROOT logger to ERROR
15:05:33,518 |-INFO in 
ch.qos.logback.core.model.processor.DefaultProcessor@2dde1bff - End of 
configuration.
15:05:33,519 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@15bbf42f 
- Registering current configuration as safe fallback point

[INFO] Tests run: 4, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.552 s -- in 
org.apache.drill.exec.vector.VariableLengthVectorTest
[INFO] Running 
org.apache.drill.exec.record.TestMaterializedField
[INFO] Tests run: 2, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.047 s -- in 
org.apache.drill.exec.record.TestMaterializedField
[INFO] Running 
org.apache.drill.exec.record.metadata.schema.parser.TestParserErrorHandling
[INFO] Tests run: 7, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.620 s -- in 
org.apache.drill.exec.vector.VectorTest
[INFO] Running 
org.apache.drill.exec.record.metadata.schema.parser.TestSchemaParser
[INFO] Tests run: 19, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.095 s -- in 
org.apache.drill.exec.record.metadata.schema.parser.TestParserErrorHandling
[INFO] Running 
org.apache.drill.exec.record.metadata.TestTupleSchema
[INFO] Tests run: 29, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.310 s -- in 
org.apache.drill.exec.record.metadata.schema.parser.TestSchemaParser
[INFO] Running 
org.apache.drill.exec.record.metadata.TestMetadataProperties
[INFO] Tests run: 7, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.006 s -- in 
org.apache.drill.exec.record.metadata.TestMetadataProperties
[INFO] Tests run: 29, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.279 s -- in 
org.apache.drill.exec.record.metadata.TestTupleSchema
[INFO] 
[INFO] Results:
[INFO] 
[INFO] Tests run: 97, Failures: 0, Errors: 0, Skipped: 0
[INFO] 
[INFO] 
[INFO] -----------< 
org.apache.drill.contrib:drill-contrib-parent >------------
[INFO] Building Drill : Contrib : 1.22.0-SNAPSHOT                 
      [12/59]
[INFO] --------------------------------[ pom 
]---------------------------------
[INFO] 
[INFO] --- apache-rat-plugin:0.15:check 
(rat-checks) @ drill-contrib-parent ---
[INFO] RAT will not execute since it is configured to be skipped via 
system property 'rat.skip'.
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-maven-version) @ drill-contrib-parent ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-java-version) @ drill-contrib-parent ---
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:copy-resources 
(default) @ drill-contrib-parent ---
[INFO] Copying 1 resource from .. to target/classes
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.7.0:process 
(process-resource-bundles) @ drill-contrib-parent ---
[INFO] Preparing remote bundle 
org.apache:apache-jar-resource-bundle:1.4
[INFO] Copying 3 resources from 1 bundle.
[INFO] 
[INFO] ------< 
org.apache.drill.contrib.data:drill-contrib-data-parent >-------
[INFO] Building Drill : Contrib : Data : 1.22.0-SNAPSHOT          
      [13/59]
[INFO] --------------------------------[ pom 
]---------------------------------
[INFO] 
[INFO] --- apache-rat-plugin:0.15:check 
(rat-checks) @ drill-contrib-data-parent ---
[INFO] RAT will not execute since it is configured to be skipped via 
system property 'rat.skip'.
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-maven-version) @ drill-contrib-data-parent ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-java-version) @ drill-contrib-data-parent ---
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:copy-resources 
(default) @ drill-contrib-data-parent ---
[INFO] Copying 1 resource from ../.. to target/classes
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.7.0:process 
(process-resource-bundles) @ drill-contrib-data-parent ---
[INFO] Preparing remote bundle 
org.apache:apache-jar-resource-bundle:1.4
[INFO] Copying 3 resources from 1 bundle.
[INFO] 
[INFO] -----------< 
org.apache.drill.contrib.data:tpch-sample-data >-----------
[INFO] Building Drill : Contrib : Data : TPCH Sample 
1.22.0-SNAPSHOT    [14/59]
[INFO] --------------------------------[ jar 
]---------------------------------
[INFO] 
[INFO] --- apache-rat-plugin:0.15:check 
(rat-checks) @ tpch-sample-data ---
[INFO] RAT will not execute since it is configured to be skipped via 
system property 'rat.skip'.
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-maven-version) @ tpch-sample-data ---
[INFO] Rule 0: 
org.apache.maven.enforcer.rules.version.RequireMavenVersion passed
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-java-version) @ tpch-sample-data ---
[INFO] Rule 0: 
org.apache.maven.enforcer.rules.version.RequireJavaVersion passed
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:copy-resources 
(default) @ tpch-sample-data ---
[INFO] Copying 1 resource from ../../.. to target/classes
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.7.0:process 
(process-resource-bundles) @ tpch-sample-data ---
[INFO] Preparing remote bundle 
org.apache:apache-jar-resource-bundle:1.4
[INFO] Copying 3 resources from 1 bundle.
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:resources 
(default-resources) @ tpch-sample-data ---
[INFO] skip non existing resourceDirectory 
/opt/drill/contrib/data/tpch-sample-data/src/main/resources
[INFO] Copying 3 resources from target/maven-shared-archive-resources 
to target/classes
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:copy-resources 
(copy-tpch-data) @ tpch-sample-data ---
[INFO] Copying 8 resources from parquet to target/classes/tpch
[INFO] 
[INFO] --- maven-compiler-plugin:3.11.0:compile 
(default-compile) @ tpch-sample-data ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:testResources 
(default-testResources) @ tpch-sample-data ---
[INFO] skip non existing resourceDirectory 
/opt/drill/contrib/data/tpch-sample-data/src/test/resources
[INFO] Copying 3 resources from target/maven-shared-archive-resources 
to target/test-classes
[INFO] 
[INFO] --- maven-compiler-plugin:3.11.0:testCompile 
(default-testCompile) @ tpch-sample-data ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-surefire-plugin:3.1.2:test 
(default-test) @ tpch-sample-data ---
[INFO] 
[INFO] ------------< 
org.apache.drill.metastore:metastore-parent >-------------
[INFO] Building Drill : Metastore : 1.22.0-SNAPSHOT               
      [15/59]
[INFO] --------------------------------[ pom 
]---------------------------------
[INFO] 
[INFO] --- apache-rat-plugin:0.15:check 
(rat-checks) @ metastore-parent ---
[INFO] RAT will not execute since it is configured to be skipped via 
system property 'rat.skip'.
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-maven-version) @ metastore-parent ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-java-version) @ metastore-parent ---
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:copy-resources 
(default) @ metastore-parent ---
[INFO] Copying 1 resource from .. to target/classes
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.7.0:process 
(process-resource-bundles) @ metastore-parent ---
[INFO] Preparing remote bundle 
org.apache:apache-jar-resource-bundle:1.4
[INFO] Copying 3 resources from 1 bundle.
[INFO] 
[INFO] -----------< 
org.apache.drill.metastore:drill-metastore-api >-----------
[INFO] Building Drill : Metastore : API 1.22.0-SNAPSHOT           
      [16/59]
[INFO] --------------------------------[ jar 
]---------------------------------
[INFO] 
[INFO] --- apache-rat-plugin:0.15:check 
(rat-checks) @ drill-metastore-api ---
[INFO] RAT will not execute since it is configured to be skipped via 
system property 'rat.skip'.
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-maven-version) @ drill-metastore-api ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-java-version) @ drill-metastore-api ---
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:copy-resources 
(default) @ drill-metastore-api ---
[INFO] Copying 1 resource from ../.. to target/classes
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.7.0:process 
(process-resource-bundles) @ drill-metastore-api ---
[INFO] Preparing remote bundle 
org.apache:apache-jar-resource-bundle:1.4
[INFO] Copying 3 resources from 1 bundle.
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:resources 
(default-resources) @ drill-metastore-api ---
[INFO] Copying 1 resource from src/main/resources to target/classes
[INFO] Copying 3 resources from target/maven-shared-archive-resources 
to target/classes
[INFO] 
[INFO] --- maven-compiler-plugin:3.11.0:compile 
(default-compile) @ drill-metastore-api ---
[INFO] Compiling 57 source files with javac [forked debug target 1.8] 
to target/classes
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:testResources 
(default-testResources) @ drill-metastore-api ---
[INFO] skip non existing resourceDirectory 
/opt/drill/metastore/metastore-api/src/test/resources
[INFO] Copying 3 resources from target/maven-shared-archive-resources 
to target/test-classes
[INFO] 
[INFO] --- maven-compiler-plugin:3.11.0:testCompile 
(default-testCompile) @ drill-metastore-api ---
[INFO] Compiling 9 source files with javac [forked debug target 1.8] 
to target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:3.1.2:test 
(default-test) @ drill-metastore-api ---
[INFO] Using configured provider 
org.apache.maven.surefire.junitplatform.JUnitPlatformProvider
[INFO] 
[INFO] -------------------------------------------------------
[INFO]  T E S T S
[INFO] -------------------------------------------------------
[INFO] Running 
org.apache.drill.metastore.metadata.MetadataSerDeTest
[INFO] Running 
org.apache.drill.metastore.components.tables.TestTableMetadataUnitConversion
15:05:38,733 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is 
logback-classic version 1.3.5
15:05:38,743 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found 
resource [logback-test.xml] at 
[file:/opt/drill/common/target/test-classes/logback-test.xml]
15:05:38,829 |-WARN in ch.qos.logback.core.model.processor.AppenderModelHandler 
- Appender named [STDOUT] not referenced. Skipping further processing.
15:05:38,829 |-INFO in 
ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level 
of ROOT logger to ERROR
15:05:38,829 |-INFO in 
ch.qos.logback.core.model.processor.DefaultProcessor@78123e82 - End of 
configuration.
15:05:38,829 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@67c33749 
- Registering current configuration as safe fallback point

15:05:38,732 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is 
logback-classic version 1.3.5
15:05:38,742 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found 
resource [logback-test.xml] at 
[file:/opt/drill/common/target/test-classes/logback-test.xml]
15:05:38,829 |-WARN in ch.qos.logback.core.model.processor.AppenderModelHandler 
- Appender named [STDOUT] not referenced. Skipping further processing.
15:05:38,829 |-INFO in 
ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level 
of ROOT logger to ERROR
15:05:38,829 |-INFO in 
ch.qos.logback.core.model.processor.DefaultProcessor@3d5c822d - End of 
configuration.
15:05:38,829 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@6f46426d 
- Registering current configuration as safe fallback point

[INFO] Tests run: 4, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.601 s -- in 
org.apache.drill.metastore.metadata.MetadataSerDeTest
[INFO] Running 
org.apache.drill.metastore.components.tables.TestBasicTablesRequestsRequestMetadata
[INFO] Tests run: 10, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.028 s -- in 
org.apache.drill.metastore.components.tables.TestBasicTablesRequestsRequestMetadata
[INFO] Running 
org.apache.drill.metastore.components.tables.TestTablesMetadataTypeValidator
[INFO] Tests run: 4, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.013 s -- in 
org.apache.drill.metastore.components.tables.TestTablesMetadataTypeValidator
[INFO] Running 
org.apache.drill.metastore.components.tables.TestBasicTablesTransformer
[INFO] Tests run: 5, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.756 s -- in 
org.apache.drill.metastore.components.tables.TestTableMetadataUnitConversion
[INFO] Running 
org.apache.drill.metastore.components.tables.TestMetastoreTableInfo
[INFO] Tests run: 8, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.097 s -- in 
org.apache.drill.metastore.components.tables.TestBasicTablesTransformer
[INFO] Tests run: 10, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.011 s -- in 
org.apache.drill.metastore.components.tables.TestMetastoreTableInfo
[INFO] 
[INFO] Results:
[INFO] 
[INFO] Tests run: 41, Failures: 0, Errors: 0, Skipped: 0
[INFO] 
[INFO] 
[INFO] ---------< 
org.apache.drill.metastore:drill-iceberg-metastore >---------
[INFO] Building Drill : Metastore : Iceberg 1.22.0-SNAPSHOT       
      [17/59]
[INFO] --------------------------------[ jar 
]---------------------------------
[INFO] 
[INFO] --- apache-rat-plugin:0.15:check 
(rat-checks) @ drill-iceberg-metastore ---
[INFO] RAT will not execute since it is configured to be skipped via 
system property 'rat.skip'.
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-maven-version) @ drill-iceberg-metastore ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-java-version) @ drill-iceberg-metastore ---
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:copy-resources 
(default) @ drill-iceberg-metastore ---
[INFO] Copying 1 resource from ../.. to target/classes
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.7.0:process 
(process-resource-bundles) @ drill-iceberg-metastore ---
[INFO] Preparing remote bundle 
org.apache:apache-jar-resource-bundle:1.4
[INFO] Copying 3 resources from 1 bundle.
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:resources 
(default-resources) @ drill-iceberg-metastore ---
[INFO] Copying 1 resource from src/main/resources to target/classes
[INFO] Copying 3 resources from target/maven-shared-archive-resources 
to target/classes
[INFO] 
[INFO] --- maven-compiler-plugin:3.11.0:compile 
(default-compile) @ drill-iceberg-metastore ---
[INFO] Compiling 27 source files with javac [forked debug target 1.8] 
to target/classes
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:testResources 
(default-testResources) @ drill-iceberg-metastore ---
[INFO] skip non existing resourceDirectory 
/opt/drill/metastore/iceberg-metastore/src/test/resources
[INFO] Copying 3 resources from target/maven-shared-archive-resources 
to target/test-classes
[INFO] 
[INFO] --- maven-compiler-plugin:3.11.0:testCompile 
(default-testCompile) @ drill-iceberg-metastore ---
[INFO] Compiling 12 source files with javac [forked debug target 1.8] 
to target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:3.1.2:test 
(default-test) @ drill-iceberg-metastore ---
[INFO] Using configured provider 
org.apache.maven.surefire.junitplatform.JUnitPlatformProvider
[INFO] 
[INFO] -------------------------------------------------------
[INFO]  T E S T S
[INFO] -------------------------------------------------------
[INFO] Running 
org.apache.drill.metastore.iceberg.operate.TestExpirationHandler
[INFO] Running 
org.apache.drill.metastore.iceberg.write.TestParquetFileWriter
15:05:43,139 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is 
logback-classic version 1.3.5
15:05:43,148 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found 
resource [logback-test.xml] at 
[file:/opt/drill/common/target/test-classes/logback-test.xml]
15:05:43,241 |-WARN in ch.qos.logback.core.model.processor.AppenderModelHandler 
- Appender named [STDOUT] not referenced. Skipping further processing.
15:05:43,241 |-INFO in 
ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level 
of ROOT logger to ERROR
15:05:43,241 |-INFO in 
ch.qos.logback.core.model.processor.DefaultProcessor@6283d8b8 - End of 
configuration.
15:05:43,241 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@3b6ddd1d 
- Registering current configuration as safe fallback point

15:05:43,153 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is 
logback-classic version 1.3.5
15:05:43,163 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found 
resource [logback-test.xml] at 
[file:/opt/drill/common/target/test-classes/logback-test.xml]
15:05:43,260 |-WARN in ch.qos.logback.core.model.processor.AppenderModelHandler 
- Appender named [STDOUT] not referenced. Skipping further processing.
15:05:43,260 |-INFO in 
ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level 
of ROOT logger to ERROR
15:05:43,260 |-INFO in 
ch.qos.logback.core.model.processor.DefaultProcessor@21e360a - End of 
configuration.
15:05:43,260 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@5ba3f27a 
- Registering current configuration as safe fallback point

[INFO] Tests run: 6, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 1.706 s -- in 
org.apache.drill.metastore.iceberg.write.TestParquetFileWriter
[INFO] Running 
org.apache.drill.metastore.iceberg.components.tables.TestTablesOutputDataTransformer
[INFO] Tests run: 4, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.025 s -- in 
org.apache.drill.metastore.iceberg.components.tables.TestTablesOutputDataTransformer
[INFO] Running 
org.apache.drill.metastore.iceberg.components.tables.TestIcebergBasicTablesRequests
[INFO] Tests run: 3, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 4.179 s -- in 
org.apache.drill.metastore.iceberg.operate.TestExpirationHandler
[INFO] Running 
org.apache.drill.metastore.iceberg.components.tables.TestIcebergTablesMetastore
[INFO] Tests run: 35, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 2.798 s -- in 
org.apache.drill.metastore.iceberg.components.tables.TestIcebergBasicTablesRequests
[INFO] Running 
org.apache.drill.metastore.iceberg.components.tables.TestTablesOperationTransformer
[INFO] Tests run: 4, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.162 s -- in 
org.apache.drill.metastore.iceberg.components.tables.TestTablesOperationTransformer
[INFO] Running 
org.apache.drill.metastore.iceberg.components.tables.TestIcebergTablesMetastoreConfigAndVersion
[INFO] Tests run: 10, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.600 s -- in 
org.apache.drill.metastore.iceberg.components.tables.TestIcebergTablesMetastoreConfigAndVersion
[INFO] Running 
org.apache.drill.metastore.iceberg.components.tables.TestTableKey
[INFO] Tests run: 3, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.003 s -- in 
org.apache.drill.metastore.iceberg.components.tables.TestTableKey
[INFO] Running 
org.apache.drill.metastore.iceberg.components.tables.TestTablesInputDataTransformer
[INFO] Tests run: 5, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.008 s -- in 
org.apache.drill.metastore.iceberg.components.tables.TestTablesInputDataTransformer
[INFO] Running 
org.apache.drill.metastore.iceberg.schema.TestIcebergTableSchema
[INFO] Tests run: 6, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.038 s -- in 
org.apache.drill.metastore.iceberg.schema.TestIcebergTableSchema
[INFO] Running 
org.apache.drill.metastore.iceberg.transform.TestFilterTransformer
[INFO] Tests run: 27, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 0.031 s -- in 
org.apache.drill.metastore.iceberg.transform.TestFilterTransformer
[INFO] Tests run: 11, Failures: 0, Errors: 0, 
Skipped: 0, Time elapsed: 2.896 s -- in 
org.apache.drill.metastore.iceberg.components.tables.TestIcebergTablesMetastore
[INFO] 
[INFO] Results:
[INFO] 
[INFO] Tests run: 114, Failures: 0, Errors: 0, Skipped: 0
[INFO] 
[INFO] 
[INFO] ---------------< 
org.apache.drill.exec:drill-java-exec >----------------
[INFO] Building Drill : Exec : Java Execution Engine 
1.22.0-SNAPSHOT    [18/59]
[INFO] --------------------------------[ jar 
]---------------------------------
[INFO] 
[INFO] --- apache-rat-plugin:0.15:check 
(rat-checks) @ drill-java-exec ---
[INFO] RAT will not execute since it is configured to be skipped via 
system property 'rat.skip'.
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-maven-version) @ drill-java-exec ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.3.0:enforce 
(enforce-java-version) @ drill-java-exec ---
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:copy-resources 
(default) @ drill-java-exec ---
[INFO] Copying 1 resource from ../.. to target/classes
[INFO] 
[INFO] --- maven-resources-plugin:3.3.1:copy-resources 
(copy-fmpp-resources) @ drill-java-exec ---
[INFO] Copying 105 resources from src/main/codegen to target/codegen
[INFO] 
[INFO] --- maven-dependency-plugin:3.4.0:unpack 
(unpack-vector-types) @ drill-java-exec ---
[INFO] Configured Artifact: org.apache.drill.exec:vector:?:jar
[INFO] Unpacking /opt/drill/exec/vector/target/classes to 
/opt/drill/exec/java-exec/target with includes 
"codegen/data/ValueVectorTypes.tdd" and excludes ""
[INFO] 
------------------------------------------------------------------------
[INFO] Reactor Summary for Drill : 1.22.0-SNAPSHOT:
[INFO] 
[INFO] Drill : ............................................ 
SUCCESS [  2.363 s]
[INFO] Drill : Tools : .................................... 
SUCCESS [  0.116 s]
[INFO] Drill : Tools : Freemarker codegen ................. 
SUCCESS [  2.563 s]
[INFO] Drill : Protocol ................................... 
SUCCESS [  3.501 s]
[INFO] Drill : Common ..................................... 
SUCCESS [  3.958 s]
[INFO] Drill : Logical Plan ............................... 
SUCCESS [  5.827 s]
[INFO] Drill : Exec : ..................................... 
SUCCESS [  0.137 s]
[INFO] Drill : Exec : Memory : ............................ 
SUCCESS [  0.080 s]
[INFO] Drill : Exec : Memory : Base ....................... 
SUCCESS [  2.969 s]
[INFO] Drill : Exec : RPC ................................. 
SUCCESS [  1.577 s]
[INFO] Drill : Exec : Vectors ............................. 
SUCCESS [ 43.928 s]
[INFO] Drill : Contrib : .................................. 
SUCCESS [  0.070 s]
[INFO] Drill : Contrib : Data : ........................... 
SUCCESS [  0.080 s]
[INFO] Drill : Contrib : Data : TPCH Sample ............... 
SUCCESS [  0.498 s]
[INFO] Drill : Metastore : ................................ 
SUCCESS [  0.067 s]
[INFO] Drill : Metastore : API ............................ 
SUCCESS [  4.374 s]
[INFO] Drill : Metastore : Iceberg ........................ 
SUCCESS [ 10.793 s]
[INFO] Drill : Exec : Java Execution Engine ............... 
FAILURE [  0.340 s]
[INFO] Drill : Exec : JDBC Driver using dependencies ...... 
SKIPPED
[INFO] Drill : Exec : JDBC JAR with all dependencies ...... 
SKIPPED
[INFO] Drill : On-YARN .................................... 
SKIPPED
[INFO] Drill : Metastore : RDBMS .......................... 
SKIPPED
[INFO] Drill : Metastore : Mongo .......................... 
SKIPPED
[INFO] Drill : Contrib : Storage : Kudu ................... 
SKIPPED
[INFO] Drill : Contrib : Format : XML ..................... 
SKIPPED
[INFO] Drill : Contrib : Storage : HTTP ................... 
SKIPPED
[INFO] Drill : Contrib : Storage : OpenTSDB ............... 
SKIPPED
[INFO] Drill : Contrib : Storage : MongoDB ................ 
SKIPPED
[INFO] Drill : Contrib : Storage : HBase .................. 
SKIPPED
[INFO] Drill : Contrib : Storage : JDBC ................... 
SKIPPED
[INFO] Drill : Contrib : Storage : Hive : ................. 
SKIPPED
[INFO] Drill : Contrib : Storage : Hive : Exec Shaded ..... 
SKIPPED
[INFO] Drill : Contrib : Storage : Hive : Core ............ 
SKIPPED
[INFO] Drill : Contrib : Storage : Kafka .................. 
SKIPPED
[INFO] Drill : Contrib : Storage : Cassandra .............. 
SKIPPED
[INFO] Drill : Contrib : Storage : ElasticSearch .......... 
SKIPPED
[INFO] Drill : Contrib : Storage : Splunk ................. 
SKIPPED
[INFO] Drill : Contrib : Storage : GoogleSheets ........... 
SKIPPED
[INFO] Drill : Contrib : Storage : Phoenix ................ 
SKIPPED
[INFO] Drill : Contrib : UDFs ............................. 
SKIPPED
[INFO] Drill : Contrib : Format : Syslog .................. 
SKIPPED
[INFO] Drill : Contrib : Format : Httpd/Nginx Access Log .. 
SKIPPED
[INFO] Drill : Contrib : Format : PDF ..................... 
SKIPPED
[INFO] Drill : Contrib : Format : HDF5 .................... 
SKIPPED
[INFO] Drill : Contrib : Format : SPSS .................... 
SKIPPED
[INFO] Drill : Contrib : Format : SAS ..................... 
SKIPPED
[INFO] Drill : Contrib : Format : LTSV .................... 
SKIPPED
[INFO] Drill : Contrib : Format : Image ................... 
SKIPPED
[INFO] Drill : Contrib : Format : Pcap-NG ................. 
SKIPPED
[INFO] Drill : Contrib : Format : Esri .................... 
SKIPPED
[INFO] Drill : Contrib : Format : Excel ................... 
SKIPPED
[INFO] Drill : Contrib : Format : MS Access ............... 
SKIPPED
[INFO] Drill : Contrib : Format : Log Regex ............... 
SKIPPED
[INFO] Drill : Contrib : Storage : Druid .................. 
SKIPPED
[INFO] Drill : Contrib : Format : Iceberg ................. 
SKIPPED
[INFO] Drill : Contrib : Format : Delta Lake .............. 
SKIPPED
[INFO] Drill : Contrib : Storage : Drill .................. 
SKIPPED
[INFO] Drill : Packaging and Distribution Assembly ........ 
SKIPPED
[INFO] Drill : Contrib : Format : MaprDB .................. 
SKIPPED
[INFO] 
------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] 
------------------------------------------------------------------------
[INFO] Total time:  01:23 min
[INFO] Finished at: 2023-08-24T11:05:50-04:00
[INFO] 
------------------------------------------------------------------------
[ERROR] Failed to execute goal 
org.apache.maven.plugins:maven-dependency-plugin:3.4.0:unpack 
(unpack-vector-types) on project drill-java-exec: 
Artifact has not been packaged yet. When used on reactor artifact, 
unpack should be executed after packaging: see MDEP-98. -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with 
the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug 
logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, 
please read the following articles:
[ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with 
the command
[ERROR]   mvn <args> -rf :drill-java-exec

Reply via email to