GitHub
03/15/2023, 2:24 PMrevert
. Need more explanation, diagrams, and examples.
See conversation here Slack Message
treeverse/lakeFSRobin Moffatt
03/15/2023, 3:09 PMCristian Caloian
03/17/2023, 12:22 PMΓιάννης Μαντιός
03/18/2023, 3:18 PMVaibhav Kumar
03/20/2023, 2:13 PMRobin Moffatt
03/21/2023, 5:27 PMgit mv
?Asher Song
03/29/2023, 3:48 PMFlorian Paul
04/05/2023, 12:04 PMTaha Sadiki
04/06/2023, 6:20 PMTaha Sadiki
04/11/2023, 4:52 PMPaul
04/12/2023, 2:31 PMAriel Shaqed (Scolnicov)
04/12/2023, 2:36 PMAriel Shaqed (Scolnicov)
04/12/2023, 2:39 PMFirst, is there a command to know the current branch ?A difference between Git and lakeFS is that lakeFS has no concept of a "current branch". It does not make sense on a datalake, as access to the lake itself is distributed among machines. So if you look at lakectl commands they all take a lakeFS path. You might be able to do something similar using the
--base-uri
flag of lakectl
. Taking it one step further, you can set the environment variable LAKECTL_BASE_URI
and all relative locations you give lakectl will be relative to that branch or repo (or even a deeper prefix).Ariel Shaqed (Scolnicov)
04/12/2023, 2:41 PMSecond, what is the command to switch branch if exists ? (The equivalent of git checkout)Since there is no current branch, there is no "checkout" command. You could alias you way around
alias lakeco='export LAKECTL_BASE_URI=<lakefs://my-repo/$1>'
to get similar behaviour. (But it would not ensure that the branch exists)Ariel Shaqed (Scolnicov)
04/12/2023, 2:43 PMAfter creating one and linking it to an s3 bucket, it is no longer possible to share this storage namespace with another lakeFS repo. If I don't use this repo anymore and I delete it, is there any way to connect a new repo to this same bucket ?Unfortunately not all of the state of the repo is held on the storage namespace, so this is not possible. We would have the objects and the structure of contents of each commit, but AFAIK not the actual branches and commits.
Paul
04/12/2023, 3:15 PMYerachmiel Feltzman
04/13/2023, 12:38 PMfuzhy
04/20/2023, 12:03 PMAmit Kesarwani
04/20/2023, 4:31 PMMohammad Umair
04/23/2023, 8:34 PMRobin Moffatt
04/25/2023, 5:03 PMspark.sql.warehouse.dir
? I've tried that but getting org.apache.spark.SparkException: Unable to create database default as failed to create its directory <s3://example/main>.
and no obvious error on the lakeFS side that I can see.mishraprafful
04/28/2023, 1:56 PMSparkApplication
in k8s.
ThanksOmar Talbi
05/02/2023, 7:57 PMBudi
05/04/2023, 2:00 AMHT
05/04/2023, 7:22 AMPaul
05/04/2023, 2:24 PMRobin Moffatt
05/04/2023, 8:34 PMlakectl branch revert
from the web UI? e.g. what's shown here but without CLI https://docs.lakefs.io/use_cases/rollback.html#how-to-rollback-from-a-bad-data-syncPaul
05/09/2023, 11:47 AMJon Erik Kemi Warghed
05/11/2023, 11:35 AMIddo Avneri
05/14/2023, 11:00 AM