cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

How to get the modification time of files from a notebook command?

brickster_2018
Databricks Employee
Databricks Employee
 
1 ACCEPTED SOLUTION

Accepted Solutions

brickster_2018
Databricks Employee
Databricks Employee

The below code snippet is useful to get the modification time of files.

%scala
import scala.util.Try
import org.apache.hadoop.conf.Configuration
import org.apache.hadoop.fs.{FileSystem, Path}
import org.apache.hadoop.io.IOUtils
import java.io.IOException
val conf = sc.hadoopConfiguration
val pathObj=new Path("s3a://my_bucket/location/")
val obj= pathObj.getFileSystem(conf)
val fs = pathObj.getFileSystem(conf)
display(fs.listStatus(pathObj).map(x=>(x.getModificationTime,x.getPath.toString)).toSeq.toDF().withColumn("time",from_unixtime($"_1" /1000)).withColumnRenamed("_2","path").drop("_1"))

View solution in original post

1 REPLY 1

brickster_2018
Databricks Employee
Databricks Employee

The below code snippet is useful to get the modification time of files.

%scala
import scala.util.Try
import org.apache.hadoop.conf.Configuration
import org.apache.hadoop.fs.{FileSystem, Path}
import org.apache.hadoop.io.IOUtils
import java.io.IOException
val conf = sc.hadoopConfiguration
val pathObj=new Path("s3a://my_bucket/location/")
val obj= pathObj.getFileSystem(conf)
val fs = pathObj.getFileSystem(conf)
display(fs.listStatus(pathObj).map(x=>(x.getModificationTime,x.getPath.toString)).toSeq.toDF().withColumn("time",from_unixtime($"_1" /1000)).withColumnRenamed("_2","path").drop("_1"))

Join Us as a Local Community Builder!

Passionate about hosting events and connecting people? Help us grow a vibrant local communityโ€”sign up today to get started!

Sign Up Now