-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
is there a change to what the create_project method returns -- I'm getting None back for the project dictionary. #22
Comments
I think I fixed it. |
Works now…
On Sep 22, 2023, at 5:21 AM, Igor Mandrichenko ***@***.***> wrote:
[This email originated from outside of OSU. Use caution with links and attachments.]
I think I fixed it.
Please try and let me know
—
Reply to this email directly, view it on GitHub<#22 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AIA37DIBIEK7NL4BACXHMSTX3V7C3ANCNFSM6AAAAAA5CIBDG4>.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
I did get a strange error at the end of a project which I think was trying to read files frmo tape but that did fix the original issue. More checks for me to do.
On Sep 22, 2023, at 7:09 AM, Igor Mandrichenko ***@***.***> wrote:
[This email originated from outside of OSU. Use caution with links and attachments.]
Closed #22<#22> as completed.
—
Reply to this email directly, view it on GitHub<#22 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AIA37DIT3NI7CONWZJAL4W3X3WL25ANCNFSM6AAAAAA5CIBDG4>.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
What was the error ? |
Interesting behavior. 1st time I ran it, no replicas found. Ran it again and now finding replicas at FNAL.
My job was only actually using 1 replica. You can see the behavior change from #25 to #29 at https://metacat.fnal.gov:9443/dune/dd/gui/P/projects
I am now running with a request for 3 files that actually uses 3 files.
This looks as if there was some response failure from rucio or there may actually only be 1 copy of those files and dcache is staging on request.
On Sep 22, 2023, at 8:08 AM, Igor Mandrichenko ***@***.***> wrote:
[This email originated from outside of OSU. Use caution with links and attachments.]
Reopened #22<#22>.
—
Reply to this email directly, view it on GitHub<#22 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AIA37DMVYVKP6YSNDB4LZILX3WSWRANCNFSM6AAAAAA5CIBDG4>.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Replica availability information is not updated in real time. So initially replicas are always not found until DD polls Rucio next time |
Any way to get it to behave better, like wait? having the job check, fail to find anything and then fail to do anything seems non-optimal.
On Sep 22, 2023, at 8:26 AM, Igor Mandrichenko ***@***.***> wrote:
[This email originated from outside of OSU. Use caution with links and attachments.]
Replica availability information is not updated in real time. So initially replicas are always not found until DD polls Rucio next time
—
Reply to this email directly, view it on GitHub<#22 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AIA37DPW55HRYS757743LX3X3WU3BANCNFSM6AAAAAA5CIBDG4>.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
I am not sure what you mean. |
May be missing that step. this is based on Jake’s work almost a year ago. right now it is asking for list of replicas and due to the design of larsoft was passing the list of locations to the executable.
On Sep 22, 2023, at 8:53 AM, Igor Mandrichenko ***@***.***> wrote:
[This email originated from outside of OSU. Use caution with links and attachments.]
I am not sure what you mean.
The worker is supposed to issue "next file" and wait for a replica to become available.
Are you doing something else ?
—
Reply to this email directly, view it on GitHub<#22 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AIA37DJCJSAJITEHYNSBLL3X3WYAFANCNFSM6AAAAAA5CIBDG4>.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
List of replicas ? |
I'm running my test code again after a month or so and I find that this code:
try:
print ("try to make a project")
proj_dict = dd_client.create_project(files=query_files, query=thequery, idle_timeout=259201)
print ("project creation succeeded",query_files,thequery)
except:
if debug: print("project dictionary",proj_dict)
succeeds but prints out:
create_project with 10 files
try to make a project
project creation succeeded 10 files from schellma:rawPhysics_5141_5143 ordered skip 10 limit 10
project dictionary None
so valid list of files and query, no exception but no response.
THanks, Heidi
The text was updated successfully, but these errors were encountered: