Hi, How would I go about accessing a version of my...
# help
v
Hi, How would I go about accessing a version of my data that is stored locally and not on a bucket. If I use the spark s3a method, it fails with
Copy code
Caused by: java.lang.ClassNotFoundException: Class org.apache.hadoop.fs.s3a.S3AFileSystem not found
	at org.apache.hadoop.conf.Configuration.getClassByName(Configuration.java:2592)
	at org.apache.hadoop.conf.Configuration.getClass(Configuration.java:2686)
	... 29 more
a
Use lakectl local command. Read this blog for more info. And check this sample
v
Thanks