We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@op
The culprit seems to be InMemCallStorage.save, specifically these lines:
InMemCallStorage.save
for k, v in call.inputs.items(): self.df.loc[(call.hid, k), :] = ("in", call.cid, v.cid, v.hid, call.op.name, call.semantic_version, call.content_version) for k, v in call.outputs.items(): self.df.loc[(call.hid, k), :] = ( "out", call.cid, v.cid, v.hid, call.op.name, call.semantic_version, call.content_version, )
probably because the df grows too much over time. The solution is to change the storage format for the in-memory storage.
The text was updated successfully, but these errors were encountered:
amakelov
No branches or pull requests
The culprit seems to be
InMemCallStorage.save
, specifically these lines:probably because the df grows too much over time. The solution is to change the storage format for the in-memory storage.
The text was updated successfully, but these errors were encountered: