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: 

Time stamp changes in spark sql

User16826994223
Honored Contributor III

Hi Team

Is there a way to change the current timestamp from the current time zone to a different time zone .

1 REPLY 1

Srikanth_Gupta_
Valued Contributor

import sqlContext.implicits._

import org.apache.spark.sql.functions._

inputDF.select(

   unix_timestamp($"unix_timestamp").alias("unix_timestamp"),

   from_utc_timestamp($"unix_timestamp".cast(DataTypes.TimestampType), "UTC").alias("UTC"),

   from_utc_timestamp($"unix_timestamp".cast(DataTypes.TimestampType), "America/Los_Angeles").alias("pst_timestamp")

  )

Connect with Databricks Users in Your Area

Join a Regional User Group to connect with local Databricks users. Events will be happening in your city, and you won’t want to miss the chance to attend and share knowledge.

If there isn’t a group near you, start one and help create a community that brings people together.

Request a New Group