Multazim Deshmukh
Multazim Deshmukh
@LahmerIlyas ping! cc: @rusackas @michael-s-molina
Thanks @LahmerIlyas
@lazuardi21 correct way to enable dashboard rbac is to add following to superset_config.py FEATURE_FLAGS = { "DASHBOARD_RBAC": True }
@villebro can we close this issue?
@hsheth2 I made a couple of contributions to PyHive which were accepted and released in [0.7.1.dev0](https://pypi.org/project/PyHive/0.7.1.dev0/). You are requested to test with the dev version and report any bugs in...
@eschutho I have also observed same behavior with Athena. I was not able to stop one of my Athena queries. On clicking stop button i get error "Failed at stopping...
@eschutho I ran query against Superset metadata databases's query table. I believe we will have to run the cancel query against Athena to stop the actual query execution. As per...
@eschutho In case of Athena, we will have to get QueryExecutionId after running sql statements. So [this code](https://github.com/apache/superset/blob/master/superset/sql_lab.py#L467) won't help us since it is run before the query execution. Looking...
@eschutho What i meant is, To capture QueryExecutionId, we would need a separate thread utilizing the same cursor that is used for running sql statements from SQL Lab but current...
@eschutho In Athena, query id is not available immediately after initiation of cursor.  ``` with closing(engine.raw_connection()) as conn: # get cursor cursor = conn.cursor() # fetch cancel query id...