Can you store JSON fields on Redshift?

Some Guy picture Some Guy · Sep 22, 2015 · Viewed 9.3k times · Source

Does Redshift support JSON fields, like Postgresql's json data type? If so what do I do to use it?

Answer

John Rotenstein picture John Rotenstein · Sep 23, 2015

You can store JSON in Amazon Redshift, within a normal text field.

There are functions available to extract data from JSON fields, but it is not an effective way to store data since it doesn't leverage the full capabilities of Redshift's column-based architecture.

See: Amazon Redshift documentation - JSON Functions