Skip to content
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

[BUG] Rcursion Error #2596

Closed
1 task
ChawDoe opened this issue Sep 18, 2023 · 1 comment · Fixed by #2600
Closed
1 task

[BUG] Rcursion Error #2596

ChawDoe opened this issue Sep 18, 2023 · 1 comment · Fixed by #2600
Assignees
Labels
bug Something isn't working

Comments

@ChawDoe
Copy link

ChawDoe commented Sep 18, 2023

Severity

P0 - Critical breaking issue or missing functionality

Current Behavior

/lib/python3.10/site-packages/deeplake/core/version_control/commit_node.py", line 28, in copy
    node = CommitNode(self.branch, self.commit_id)
RecursionError: maximum recursion depth exceeded

i used 4 gpus to pre-compute the data tensor and save it into deeplake dataset.
the workflow like this:

a = deeplake('xxx', overwrite=False)
for i in range(100000):
  a.extend(xxx)
  if i % 100 == 0:
    a.commit()

Steps to Reproduce

a = deeplake('xxx', overwrite=False)
for i in range(100000):
  a.extend(xxx)
  if i % 100 == 0:
    a.commit()

Expected/Desired Behavior

/lib/python3.10/site-packages/deeplake/core/version_control/commit_node.py", line 28, in copy
node = CommitNode(self.branch, self.commit_id)
RecursionError: maximum recursion depth exceeded

Python Version

No response

OS

No response

IDE

No response

Packages

No response

Additional Context

No response

Possible Solution

No response

Are you willing to submit a PR?

  • I'm willing to submit a PR (Thank you!)
@ChawDoe ChawDoe added the bug Something isn't working label Sep 18, 2023
@davidbuniat
Copy link
Member

Thanks @ChawDoe for reporting the issue! Adding @FayazRahman to deep dive on the problem.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants