Skip to content

Commit

Permalink
Up instance size see if issues go away
Browse files Browse the repository at this point in the history
  • Loading branch information
johnf committed May 29, 2024
1 parent 4be7d5a commit 05e2f93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cdk/lib/app-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,12 @@ export class AppStack extends cdk.Stack {
// ////////////////////////
const searchDomain = new opensearch.Domain(this, 'SearchDomain', {
capacity: {
dataNodeInstanceType: 'c6g.large.search', // t3's have some limitations
dataNodeInstanceType: 'c6g.xlarge.search', // t3's have some limitations
dataNodes: 3,
multiAzWithStandbyEnabled: false, // We don't need that much HA
},
ebs: {
volumeSize: 30,
volumeSize: 20,
volumeType: ec2.EbsDeviceVolumeType.GP3,
throughput: 125, // These are the minimums
iops: 3000, // These are the minimums
Expand Down

0 comments on commit 05e2f93

Please sign in to comment.