You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently, fetch_runs_table returns just the LAST value of a floatSeries column, and there's seemingly no way for different behavior. Note how it's possible for query but not columns:
I would like to be able to use NQL or similar in columns
Describe alternatives you've considered
iterating through each run, one-by-one. very slow! 100x more queries.
Have I missed a way to do this?
Edit: the alternative is worse than I thought. I want to do this for about ~80 columns, and using the Run API I have to query each of the 80 floatSeries independently. So instead of 1 query per 100 runs as with fetch_runs_table to get the LAST values of each column I have to do 8000x more queries to get the MIN values of each column.
The text was updated successfully, but these errors were encountered:
I understand that adding 80 such columns to the table can take a while, and a manual approach is not what you would have in mind, but this is the best way of accomplishing what you need currently.
Please let me know if this helps or if I can help you with anything else 🤗
Is your feature request related to a problem? Please describe.
Currently, fetch_runs_table returns just the LAST value of a floatSeries column, and there's seemingly no way for different behavior. Note how it's possible for
query
but notcolumns
:Describe the solution you'd like
I would like to be able to use NQL or similar in
columns
Describe alternatives you've considered
iterating through each run, one-by-one. very slow! 100x more queries.
Have I missed a way to do this?
Edit: the alternative is worse than I thought. I want to do this for about ~80 columns, and using the
Run
API I have to query each of the 80 floatSeries independently. So instead of 1 query per 100 runs as withfetch_runs_table
to get the LAST values of each column I have to do 8000x more queries to get the MIN values of each column.The text was updated successfully, but these errors were encountered: