[
https://issues.apache.org/jira/browse/DRILL-5956?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17048675#comment-17048675
]
ASF GitHub Bot commented on DRILL-5956:
---------------------------------------
cgivre commented on issue #1888: DRILL-5956: Add Storage Plugin for Apache Druid
URL: https://github.com/apache/drill/pull/1888#issuecomment-593145031
@akkapur
Thanks for the updates. I didn't run all the unit tests yet, but I was
successfully able to query Druid via Drill and it looks like it is working
well!! The query unit tests that depend on a live installation of Druid
worked!
I ran the following queries without incident:
```sql
SHOW DATABASES;
SELECT * FROM druid.wikipedia LIMIT 10;
SELECT user, channel FROM druid.wikipedia LIMIT 10;
SELECT user, channel, bob FROM druid.wikipedia LIMIT 10;
SELECT DISTINCT countryName FROM druid.wikipedia LIMIT 10;
SELECT countryName, COUNT(*) as countryCount
FROM druid.wikipedia
GROUP BY countryName
ORDER BY countryCount DESC;
SELECT countryName, COUNT(*) as countryCount
FROM druid.wikipedia
WHERE countryName IS NOT NULL
GROUP BY countryName
ORDER BY countryCount DESC;
```
I'll start the code review now but this is looking good!!! Thank you for
your hard work and patience with this PR.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
> Add Storage Plugin for Apache Druid
> -----------------------------------
>
> Key: DRILL-5956
> URL: https://issues.apache.org/jira/browse/DRILL-5956
> Project: Apache Drill
> Issue Type: Wish
> Components: Storage - Other
> Reporter: Jiaqi Liu
> Priority: Major
> Labels: Enhancement, Storage-Plugin
> Fix For: 1.18.0
>
>
> As more and more companies are using Druid for mission-critical industrial
> products, Drill could gain much more popularity with Druid as one of its
> supported storage plugin so that uses could easily bind Druid cluster to
> running Drill instance
--
This message was sent by Atlassian Jira
(v8.3.4#803005)