Amazon Redshift is a fully managed, petabyte-scale data warehouse service in the cloud. You can start with just a few hundred gigabytes of data and scale to a petabyte or more. This enables you to use your data to acquire new insights for your business and customers.
To set up a Redshift cluster, define a Cluster. It will be launched in a VPC. You can specify a VPC, otherwise one will be created. The nodes are always launched in private subnets and are encrypted by default.
const vpc = new ec2.Vpc(this, "VPC");
const cluster = new redshift.Cluster(this, "RedshiftCluster", {
masterUser: {
masterUsername: "admin",
},
vpc,
roles: [role],
});
By default, the master password will be generated and stored in AWS Secrets Manager.
A default database named default_db will be created in the cluster. To change the name of this database set the defaultDatabaseName attribute in the constructor properties.
By default, the cluster will not be publicly accessible. Depending on your use case, you can make the cluster publicly accessible with the publiclyAccessible property.
To control who can access the cluster, use the .connections attribute. Redshift Clusters have a default port, so you don't need to specify the port:
cluster.connections.allowFromAnyIpv4(ec2.Port.allTraffic());
const role = new Role(this, "redshift", {
assumedBy: new ServicePrincipal("redshift.amazonaws.com"),
});
const policy = new PolicyStatement({
effect: Effect.ALLOW,
actions: ["dynamodb:*", "ec2:*"],
resources: ["*"],
});
role.addToPolicy(policy);
const lollyTable = new ddb.Table(this, "lollyTable", {
billingMode: ddb.BillingMode.PAY_PER_REQUEST,
partitionKey: {
name: "id",
type: ddb.AttributeType.STRING,
},
});
and add some data in the database e.g id: '123', name: 'name', age: 123
-
Go to Secret manager and retrieve database name and database password
-
After that go to redshift -> query Editor and connect to your database using those credentials
To create a Table Run
CREATE SCHEMA myinternalschema
CREATE TABLE myinternalschema.event(
name varchar(200),
age integer not null,
city varchar(200));
COPY myinternalschema.event FROM 's3://aws-redshift-spectrum-sample-data-us-east-1/spectrum/event/allevents_pipe.txt'
iam_role ‘REPLACE THIS PLACEHOLDER WITH THE IAM ROLE ARN'
readratio 50;
4.Then check your data using
SELECT * FROM myinternalschema.event
LIMIT 10;
This is a blank project for TypeScript development with CDK.
The cdk.json
file tells the CDK Toolkit how to execute your app.
npm run build
compile typescript to jsnpm run watch
watch for changes and compilenpm run test
perform the jest unit testscdk deploy
deploy this stack to your default AWS account/regioncdk diff
compare deployed stack with current statecdk synth
emits the synthesized CloudFormation template