Created
May 21, 2015 15:19
-
-
Save arikfr/be7c2888520c44cf4f0f to your computer and use it in GitHub Desktop.
re:dash Python datasource join example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# get existing queries results | |
users = get_query_result(132) # this one has {id, name} | |
events_by_users = get_query_result(131) # this one has {user_id, events count} | |
# actual merging. can be replaced with helper function and/or some Pandas code | |
events_dict = {} | |
for row in events_by_users['rows']: | |
events_dict[row['user_id']] = row['count'] | |
for row in users['rows']: | |
row['events_count'] = events_dict.get(row['id'], 0) | |
# set the result to show | |
result = users | |
add_result_column(result, 'events_count', '', 'integer') |
@kausikram - were you able to get around the 'NoneType' object has no attribute 'annotate_query'?
I've hit the same issue and I'm not sure what to do.
Getting the same issue. Has anyone found any solution for this ?
@vmendiratta solved it by restarting the celery workers.
getredash/redash#1169
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@WesleyBatista you need to put the name of the package in the data source configuration (modules to load) and make sure its in a python path (global or specific) that the python code in redash can actually find.
Then you can use "import mymodule". You also need to specifically name the modules you would like to load if these are python built-in module like json and datetime as the purpose of this is to make sure non authorized modules are not loaded and used.