Live data from Hacker News

Redash – Connect to any data source, easily visualize and share your data

github.com

21–30 of 98 posts

Re: Redash – Connect to any data source, easily visualize and share your data

#21

We've been using it on a project to aggregate clinical trial data from many different sources ( https://opentrials.net ) and it has been great! It allows researchers (not necessarily devs, usually medical doctors) to peek our raw data, and it's a great excuse for them to learn at least the basics of SQL. The response has been great. We also use it to do some small data checks on the data quality, with alerts sent to…

Thank you for proving it's not only for "tech people", and that "normals" can pass the SQL barrier too :) (and learn a useful skill on the way)

Re: Redash – Connect to any data source, easily visualize and share your data

#23
post #16

Are some public datasets available directly as SQL endpoints? I know the Semantic Web provides some public datasets as SPARQL endpoints. But I have never heard of an equivalent for SQL.

How about the BigQuery ones?

http://demo.redash.io/ works great with BigQuery.

Re: Redash – Connect to any data source, easily visualize and share your data

#24
post #12

Redash is handy, especially if you want to go from "I have a DB of events" to "here's some handy dashboards" in just a few minutes. Its filtering options were a little limited, at least as of November (you can't inject anything in to the "where" part of a query).

Re. filtering: do you mean something like parameters? Because that's supported.

Not exactly. Say I have a table with one row per user and want users for a given country. I could say

SELECT country_code AS country_code::multi-filter, count(1) AS users FROM mytable GROUP BY country_code;

And I will indeed get a dropdown with country codes. But, the query is still running for all countries (and if I'm not mistaken all the filtering is on the client). For something more complex, like number of users from a country with spend over a certain amount, I want something like:

SELECT country_code AS "cc::filter", COUNT(1) as num_users FROM mytable WHERE lifetime_spend > {Value from a superset dropdown} GROUP BY country_code

I could do something like

SELECT country_code AS "cc::filter", COUNT(1) as num_users, lifetime_spend from .....

and then filter on the Redash side, I suppose, but that will be slower and have to deal with a lot of data I don't care about.

Has something like this been added in the last few months?

Also, Redash generally seemed to be based around the idea that you would write SQL with a few parameters in the SELECT statement and users would be content with that (which of course is true for many use cases!) We wanted to be able to add a table to Redash/Superset/Metabase/whatever and have someone who doesn't know SQL gain some insights quickly. For instance, distinct users in the last week on a given platform from a set of access logs.

Still though, I meant what I said - I had Redash up and hooked to our DB with useful charts in about 5 minutes, which was spectacular. As time went on though we realized that a lot of people could answer their questions in Superset without asking someone else to write SQL, while Redash required someone to write a query.

Superset is definitely the less mature and polished product, though, perhaps due to its ambition!

Re: Redash – Connect to any data source, easily visualize and share your data

#26
I was working for a company that relied heavily on Wagon - and then it got bought by Box and they shutdown the product. We looked for alternatives but nothing seemed to offer what Wagon had - this looks like it might be a good fit though. Excited to try it out.

Re: Redash – Connect to any data source, easily visualize and share your data

#27
We're hosting on our own EC2 instance using the docker image. Setup was mostly smooth. We love the integration with Google Apps so our entire organization automatically has access.

We primarily use it to connect to Amazon's Redshift and pull some data out for quick visual analysis. It's a very good combo. We're at the early stages of using it but it seems like a very solid product.

Kudos to the dev!

Re: Redash – Connect to any data source, easily visualize and share your data

#29
Redash is great. We've tried several alternatives, including Metabase, and ended up with extensive Redash use. We use the self-hosted version for sharing data between the tech and business sides, for day-to-day monitoring and for ad-hoc visualizations, and are generally very happy with it. It's not perfect - there are some areas, like fine-control over chart customization, query auto-updates (especially queries with parameters) and the ability to queue parallel queries to the same data source which would be nice improvements, but these are nitpicks - highly recommended.

Re: Redash – Connect to any data source, easily visualize and share your data

#30
post #22

Ask HN: Is there any open source BI tool that is always first on the list when the conversation finally gets to "Oh, you're on the Windows/Microsoft stack? Then you're probably going to wind up using _______"

Have you tried using the growing support for docker and Linux running under windows? I haven't, personally. Just curious if others have.
Post reply on HN