eden-ohana
eden-ohana
On the DB implementation, the function **markTokenSingleUse** of the auth service also deletes all expired tokens from the DB. Find a way to delete all expired tokens (need to scan...
On the kv migration remove/update the commit version that was added after the parent switch bug on the merge. ``` const ( CommitVersionInitial CommitVersion = iota CommitVersionParentSwitch CurrentCommitVersion = CommitVersionParentSwitch...
Currently, the import from the UI client performs API calls to the server on every range creation. Maybe combine it into one operation on the server/ keep state on the...
Gives the users the sense the cancel will cancel the operation after it's done. 
Currently supports revert to single commit or list of commits. ``` branch revert lakefs://example-repo/example-branch HEAD~1 HEAD~2 HEAD~3 ``` The git command has the ability to revert a range of commits,...
# Boto resource Provides high-level, object-oriented API. It exposes sub-resources and collections of AWS resources and has actions (operations on resources). [API] # Usage ```python import boto3 s3 = boto3.resource('s3')...
# S3FS S3Fs is a Pythonic file interface to S3. It builds on top of botocore. The most common way to interact with s3 on **Pandas**. [API] # Usage ```python...
Currently supports only dictionary. ```python CopySource='string' or {'Bucket': 'string', 'Key': 'string', 'VersionId': 'string'} ``` [Reference] Not trivial because If you want to provide the copy source for an S3 access...