pinot-interactive-query
v0.0.39
Published
This repository contains a widget that lets the user execute a SQL query against a Pinot server via a proxy server that deals with CORS issues.
Downloads
75
Readme
Pinot Interactive Query Component
This repository contains a widget that lets the user execute a SQL query against a Pinot server via a proxy server that deals with CORS issues.
Installation
It can be installed by running the following command:
npm i pinot-interactive-query
Usage
<InteractiveQuery proxy="https://pinot-proxy.vercel.app" query={`select browser,
sum(clicks) AS allClicks,
sum(views) AS allViews,
sum(errors) AS allErrors
from complexWebsite
group by browser
order by allClicks DESC
limit 10`} />
Deployment
This module is deployed to npm from @mneedham's machine. @mneedham is also the only maintainer at the moment.
npm run build
npm publish