ic3
ic3

Reputation: 7690

Amazon Redshift public database

We would like to test some code against Redshift jdbc driver without the hassle to create our own instance.

Is there a public instace of Redshift available for developement testing ?

Upvotes: 1

Views: 1295

Answers (3)

Alex
Alex

Reputation: 447

With some limitations, Redshift is basically a Postgres database, so for basic development you can use this instead.

Upvotes: 1

Luniam
Luniam

Reputation: 463

Redshift does not have a public instance. But they do provide 2 months of trial period free. You can get 750 hours of usage with node type DC1.Large.

However, there is a site where you can play around with different databases (but Redshift has not been added there yet):

http://sqlfiddle.com/

Upvotes: 0

Sandesh Deshmane
Sandesh Deshmane

Reputation: 2305

Public instance is not available.

You can create test cluster ( single node) using smallest possible box ( dw2.large $0.25 per hour ) and test your code with cluster and terminate it once done.

S

Upvotes: 3

Related Questions