Hi All,
I am getting below Illegal error while running the query in Dremio. Any help is greatly appreciated.
Query: SELECT “@timestamp” AS REQ_DATE, extract_pattern(log_message, ‘(?<=Label=)(.)(?=,LastValue)’, 0, ‘INDEX’) AS operation,
extract_pattern(log_message, ‘\d+’, 0, ‘INDEX’) AS lastvalue, serviceName
FROM “E-167”.“logstash_cloudMetrics”.syslog AS syslog WHERE regexp_like( log_message, '.?\QLabel=\E.?’)
UNION ALL
SELECT “@timestamp” AS REQ_DATE, extract_pattern(log_message, '(?<=Label=)(.)(?=,LastValue)’, 0, ‘INDEX’) AS operation,
extract_pattern(log_message, ‘\d+’, 0, ‘INDEX’) AS lastvalue, serviceName
FROM “E-196”.“logstash_cloudMetrics”.syslog AS syslog
WHERE regexp_like( log_message, ‘.?\QLabel=\E.?’)
Error in server.log:
C:/Users/hdevar001c/AppData/Local/Dremio/pdfs/results/25757a07-380c-6723-9845-940851bc0d00
2018-03-21 08:15:44,928 [scheduler-4] INFO c.d.service.jobs.JobResultsStore - Deleted job output directory : C:/Users/hdevar001c/AppData/Local/Dremio/pdfs/results/25757937-3ccd-0920-75aa-c18a6705b900
2018-03-21 08:30:44,438 [FABRIC-rpc-event-queue] ERROR c.d.services.fabric.FabricServer - IllegalStateException: Received data batch for 254db37f-f73d-e97a-a396-cc194b26ea00:1:1 from 3:2 before fragment executor started
com.dremio.common.exceptions.UserException: IllegalStateException: Received data batch for 254db37f-f73d-e97a-a396-cc194b26ea00:1:1 from 3:2 before fragment executor started
at com.dremio.common.exceptions.UserException$Builder.build(UserException.java:648) ~[dremio-common-1.4.4-201801230630490666-6d69d32.jar:1.4.4-201801230630490666-6d69d32]
Thanks,
Hareesh