This is an automated email from the ASF dual-hosted git repository.
gparai pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git.
from ad63b70 DRILL-7022: Partition pruning is not happening the first time
after the metadata auto-refresh
new a43839e DRILL-6582: SYSLOG (RFC-5424) Format Plugin closes #1530
new 110c357 DRILL-6734: JDBC storage plugin returns null for fields
without aliases closes #1642 - Add output column names to JdbcRecordReader and
use them for storing the results since column names in result set may differ
when aliases aren't specified
new c17c59c DRILL-7036: Improve UI for alert and error messages closes
#1644 This PR standardizes error and alert messages to a cleaner interface by
leveraging Bootstraps UX elements for publishing the messages in a presentable
format. Exceptions reported back to the browser and rendered in a neat tabular
format (using Panels) All errors can be redirected to errorMessage.ftl which
will render it in a neat format. Alerts are replaced with modals. Interactions
(pages) affected by Aler [...]
The 3466 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:
contrib/format-syslog/README.md | 41 +++
contrib/{udfs => format-syslog}/pom.xml | 62 +---
.../exec/store/syslog/SyslogFormatConfig.java | 87 +++++
.../exec/store/syslog/SyslogFormatPlugin.java | 44 ++-
.../exec/store/syslog/SyslogRecordReader.java | 401 +++++++++++++++++++++
.../src/main/resources/drill-module.conf | 3 +-
.../drill/exec/store/syslog/TestSyslogFormat.java | 302 ++++++++++++++++
.../src/test/resources/syslog/logs.syslog | 8 +
.../src/test/resources/syslog/logs.syslog1 | 8 +
.../src/test/resources/syslog/logs1.syslog | 6 +
.../src/test/resources/syslog/test.syslog | 1 +
.../src/test/resources/syslog/test.syslog1 | 2 +
.../native/client/src/protobuf/UserBitShared.pb.cc | 13 +-
.../native/client/src/protobuf/UserBitShared.pb.h | 5 +-
contrib/pom.xml | 1 +
.../drill/exec/store/jdbc/JdbcBatchCreator.java | 3 +-
.../drill/exec/store/jdbc/JdbcGroupScan.java | 28 +-
.../org/apache/drill/exec/store/jdbc/JdbcPrel.java | 5 +-
.../drill/exec/store/jdbc/JdbcRecordReader.java | 51 ++-
.../apache/drill/exec/store/jdbc/JdbcSubScan.java | 15 +-
.../exec/store/jdbc/TestJdbcPluginWithH2IT.java | 4 +-
.../exec/store/jdbc/TestJdbcPluginWithMySQLIT.java | 60 ++-
distribution/pom.xml | 5 +
distribution/src/assemble/component.xml | 49 +--
.../drill/exec/server/rest/LogsResources.java | 10 +-
.../drill/exec/server/rest/QueryResources.java | 4 +-
.../exec/server/rest/profile/ProfileResources.java | 9 +-
.../src/main/resources/rest/alertModals.ftl | 104 ++++++
exec/java-exec/src/main/resources/rest/error.ftl | 28 --
.../resources/rest/{query => }/errorMessage.ftl | 10 +-
exec/java-exec/src/main/resources/rest/options.ftl | 7 +-
.../src/main/resources/rest/profile/list.ftl | 11 +-
.../src/main/resources/rest/profile/profile.ftl | 5 +-
.../src/main/resources/rest/query/query.ftl | 6 +-
.../resources/rest/static/js/querySubmission.js | 54 +--
pom.xml | 4 +
.../org/apache/drill/exec/proto/UserBitShared.java | 21 +-
.../drill/exec/proto/beans/CoreOperatorType.java | 4 +-
protocol/src/main/protobuf/UserBitShared.proto | 1 +
39 files changed, 1254 insertions(+), 228 deletions(-)
create mode 100644 contrib/format-syslog/README.md
copy contrib/{udfs => format-syslog}/pom.xml (63%)
create mode 100644
contrib/format-syslog/src/main/java/org/apache/drill/exec/store/syslog/SyslogFormatConfig.java
copy
exec/java-exec/src/main/java/org/apache/drill/exec/store/log/LogFormatPlugin.java
=>
contrib/format-syslog/src/main/java/org/apache/drill/exec/store/syslog/SyslogFormatPlugin.java
(61%)
create mode 100644
contrib/format-syslog/src/main/java/org/apache/drill/exec/store/syslog/SyslogRecordReader.java
copy contrib/{storage-jdbc =>
format-syslog}/src/main/resources/drill-module.conf (95%)
mode change 100755 => 100644
create mode 100644
contrib/format-syslog/src/test/java/org/apache/drill/exec/store/syslog/TestSyslogFormat.java
create mode 100644 contrib/format-syslog/src/test/resources/syslog/logs.syslog
create mode 100644 contrib/format-syslog/src/test/resources/syslog/logs.syslog1
create mode 100644 contrib/format-syslog/src/test/resources/syslog/logs1.syslog
create mode 100644 contrib/format-syslog/src/test/resources/syslog/test.syslog
create mode 100644 contrib/format-syslog/src/test/resources/syslog/test.syslog1
create mode 100644 exec/java-exec/src/main/resources/rest/alertModals.ftl
delete mode 100644 exec/java-exec/src/main/resources/rest/error.ftl
rename exec/java-exec/src/main/resources/rest/{query => }/errorMessage.ftl
(59%)