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
When passing this information to the SX front end for the query:
spec=sx.ServiceXSpec(
General=sx.General(
ServiceX="atlasr22",
Codegen=query[1],
OutputFormat=sx.ResultFormat.root, # type: ignoreDelivery=("LocalCache"ifdownloadelse"SignedURLs"), # type: ignore
),
Sample=[
# TODO: Need a way to have the DID finder re-fetch the file list.sx.Sample(
Name=f"speed_test_{ds_name}"[0:128],
RucioDID=ds_name,
Codegen=query[1],
Query=query[0],
NFiles=num_files,
IgnoreLocalCache=ignore_cache,
) # type: ignorefords_nameinds_names
],
)
the fact you have to carry these two things along seperately isn't the test UX. Perhaps if all Querys impelment a common API, one could query for the codegen. No worries if codegen comes in via other routes, but this should be one of them.
The text was updated successfully, but these errors were encountered:
Nominally, the
codegen
and the content of the query go hand-in-hand.For example, here
build_query
builds the query as afunc_adl
. Another query could be builthere and could require a different backend.
When passing this information to the SX front end for the query:
the fact you have to carry these two things along seperately isn't the test UX. Perhaps if all
Query
s impelment a common API, one could query for the codegen. No worries ifcodegen
comes in via other routes, but this should be one of them.The text was updated successfully, but these errors were encountered: