ashish173
Difference in between :utc_datetime and :naive_datetime in Ecto
I am using Ecto timestamps with postgres, I can see the timestamps() use the :naive_dateime but for my use case I wanted to store the timezone too.
I read a little more here and found out that on the DB end both the fields are the same which is utc time without timezone.
Now, I am a little confused about when should I use :naive_datetime and when :utc_datetime.
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated!
To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead.
Sta...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #performance










First 10 of 15 Posts
Nicd
You should use
:utc_datetimeunless you have a reason not to. The reason why Ecto’stimestamps()are naive by default is backwards compatibility. Since they are always UTC anyway, you should use:utc_datetimefor them (and I believe the default will be changed to that in the future).The difference between
:utc_datetimeand:naive_datetimeis that the former will ensure that you can only insert UTCDateTimes and will read back UTCDateTimestructs from the DB, whereas the latter will remove timezone information when writing and returnNaiveDateTimes when you read from the DB.For most cases, you should use UTC.
BTW, if you need to store the timezone too (in PostgreSQL), you have no option but to use a naive datetime field and store the offset or timezone information separately. This is because PostgreSQL does not have a data type for storing a timestamp with timezone.
There is the confusingly named timestamp with timezone but all it does is convert your input timestamp to UTC and convert it back to whatever your DB connection’s timezone is when reading (so for most cases it’s useless). It does not even store the offset/timezone. So you need to do that yourself somehow.
OvermindDL1
Also, use naive/UTC to store datetimes in the past, use timezones only when storing datetimes in the future, don’t mix them (personal experience). ^.^;
outlog
for datetime in a specific location you generally need “wall time” - as timezones and/or daylight saving time changes..
something like calecto GitHub - lau/calecto: Adapter for the Calendar library in Ecto · GitHub will get you wall time..
time is fun (not!)
OvermindDL1
Exactly, that is why future times should always have a time zone.
SZJX
The “timestamp with timezone” type still seems to be useful since it makes all clients that try to read from this database interpret it as UTC time. Otherwise each client might try to interpret the timestamp in its local time, which would be a total mess. I find this article to summarize everything related to timezone in Elixir + Postgres pretty well: Time zones in PostgreSQL, Elixir and Phoenix | AmberBit Sp. z o. o.
LostKobrakai
The following argues that the exact same mess would happen when using
timestamptzas well and that being the reason to not use it in ecto in the first place: utc_datetime having no affect on PostgreSQL DDL · Issue #1868 · elixir-ecto/ecto · GitHubSZJX
Interesting. The author of the article I linked to actually seems to think that this is the desired behavior:
i.e. because the timestamp will then be guaranteed to be output in local time, the SQL queries will behave consistently across different clients.
I haven’t explored it myself yet so I’m not sure if this would indeed result in consistent behaviors for SQL queries, as the author claimed.
Nicd
Wrong,
timestamptzwill return the timestamp in the connection’s local timezone. They explicitly won’t be getting UTC from the database, unless they have set the connection to UTC. Quoting:This is what I never want to happen.
Now it’s true that if you fire up
psqlor some script and compare thetimestampvalues to for exampleNOW(), you may end up with unexpected results if you didn’t remember to set the connection timezone. For me, usingtimestamptzhere would be optimising for a special case and making the general case worse. It’s also reliant on magic (and frankly unintuitive) behaviour from PostgreSQL, and I feel being explicit in what you do (like you have to be when using plaintimestamp) is better.timestamp with time zoneis a misnomer and IMO a misfeature that shouldn’t be in PostgreSQL.SZJX
Thanks a lot for the answer. This is definitely quite a rabbit hole to jump into and time representation is always a nightmare to deal with. At least one universal consensus seems to be to always use
:utc_datetimein Ecto when there are no backwards compatibility worries. I’ll do that.cnck1387
You’ve only reached the first tunnel of the rabbit hole because there’s timex and timex_ecto too.