This is an automated email from the ASF dual-hosted git repository.
arina pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git.
from eb08d04 DRILL-7429: Wrong column order when selecting complex data
using Hive storage plugin
new ae25994 DRILL-7675: Work around for partitions sender memory use
new 912698b DRILL-7683: Add "message parsing" to new JSON loader
new ffaaad6 DRILL-7668: Allow Time Bucket Function to Accept Floats and
Timestamps
new 84450d8 DRILL-7694: Register drill.queries.* counter metrics on
Drillbit startup
new e7afccd DRILL-7678: Update Yauaa dependency
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../apache/drill/exec/metrics/DrillCounters.java | 73 +++++++++
contrib/udfs/pom.xml | 2 +-
.../drill/exec/udfs/TimeBucketFunctions.java | 86 +++++++++-
.../exec/udfs/UserAgentAnalyzerProvider.java} | 22 +--
.../apache/drill/exec/udfs/UserAgentFunctions.java | 27 ++--
.../drill/exec/udfs/TestTimeBucketFunction.java | 66 ++++++--
.../drill/exec/udfs/TestUserAgentFunctions.java | 4 +-
.../java/org/apache/drill/exec/ExecConstants.java | 7 +-
.../apache/drill/exec/compile/ClassBuilder.java | 13 +-
.../exec/physical/impl/join/HashJoinBatch.java | 9 +-
.../physical/impl/partitionsender/Partitioner.java | 5 +-
.../impl/partitionsender/PartitionerTemplate.java | 68 +++++---
.../impl/scan/framework/SchemaNegotiator.java | 5 +
.../impl/scan/framework/SchemaNegotiatorImpl.java | 13 ++
.../org/apache/drill/exec/record/BatchSchema.java | 30 ++--
.../apache/drill/exec/record/VectorContainer.java | 14 ++
.../apache/drill/exec/server/DrillbitContext.java | 8 +
.../exec/server/options/BaseOptionManager.java | 5 +
.../drill/exec/server/options/OptionSet.java | 14 +-
.../exec/server/options/SystemOptionManager.java | 1 +
.../exec/store/easy/json/loader/JsonLoader.java | 8 +-
.../store/easy/json/loader/JsonLoaderImpl.java | 105 ++++++++++--
.../store/easy/json/loader/JsonLoaderOptions.java | 9 ++
.../exec/store/easy/json/parser/ErrorFactory.java | 8 +-
.../easy/json/parser/JsonStructureOptions.java | 14 ++
.../easy/json/parser/JsonStructureParser.java | 94 ++++++++++-
...stractElementParser.java => MessageParser.java} | 33 ++--
.../exec/store/easy/json/parser/RootParser.java | 34 ++++
.../easy/json/parser/SimpleMessageParser.java | 141 ++++++++++++++++
.../org/apache/drill/exec/vector/CopyUtil.java | 26 ++-
.../apache/drill/exec/work/foreman/Foreman.java | 31 ++--
.../drill/exec/work/foreman/QueryManager.java | 23 ++-
.../exec/work/foreman/QueryStateProcessor.java | 34 ++--
.../java-exec/src/main/resources/drill-module.conf | 1 +
.../store/easy/json/loader/BaseJsonLoaderTest.java | 13 +-
.../store/easy/json/parser/BaseTestJsonParser.java | 33 ++--
.../easy/json/parser/TestJsonParserMessage.java | 179 +++++++++++++++++++++
.../java/org/apache/drill/test/ClusterFixture.java | 35 ++--
.../apache/drill/test/ClusterFixtureBuilder.java | 2 -
.../drill/exec/record/MaterializedField.java | 75 ++++++---
40 files changed, 1099 insertions(+), 271 deletions(-)
create mode 100644
common/src/main/java/org/apache/drill/exec/metrics/DrillCounters.java
copy
contrib/{storage-kudu/src/main/java/org/apache/drill/exec/store/kudu/KuduScanSpec.java
=>
udfs/src/main/java/org/apache/drill/exec/udfs/UserAgentAnalyzerProvider.java}
(62%)
copy
exec/java-exec/src/main/java/org/apache/drill/exec/store/easy/json/parser/{AbstractElementParser.java
=> MessageParser.java} (52%)
create mode 100644
exec/java-exec/src/main/java/org/apache/drill/exec/store/easy/json/parser/SimpleMessageParser.java
create mode 100644
exec/java-exec/src/test/java/org/apache/drill/exec/store/easy/json/parser/TestJsonParserMessage.java