Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 31 additions & 31 deletions docs/usage/properties/instance/user/common.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion example/basic/instance.properties
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ sleeper.retain.logs.after.destroy=true
# PersistentEmrBulkImportStack, EksBulkImportStack, EmrStudioStack, BulkExportStack, QueryStack,
# WebSocketQueryStack, AthenaStack, KeepLambdaWarmStack, CompactionStack, GarbageCollectorStack,
# PartitionSplittingStack, DashboardStack, TableMetricsStack]
sleeper.optional.stacks=IngestStack,IngestBatcherStack,EmrServerlessBulkImportStack,EmrStudioStack,QueryStack,AthenaStack,CompactionStack,GarbageCollectorStack,PartitionSplittingStack,DashboardStack,TableMetricsStack
sleeper.optional.stacks=IngestStack,IngestBatcherStack,EmrServerlessBulkImportStack,EmrStudioStack,QueryStack,CompactionStack,GarbageCollectorStack,PartitionSplittingStack,DashboardStack,TableMetricsStack

# The AWS account number. This is the AWS account that the instance will be deployed to.
sleeper.account=1234567890
Expand Down
2 changes: 1 addition & 1 deletion example/full/instance.properties
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ sleeper.retain.logs.after.destroy=true
# PersistentEmrBulkImportStack, EksBulkImportStack, EmrStudioStack, BulkExportStack, QueryStack,
# WebSocketQueryStack, AthenaStack, KeepLambdaWarmStack, CompactionStack, GarbageCollectorStack,
# PartitionSplittingStack, DashboardStack, TableMetricsStack]
sleeper.optional.stacks=IngestStack,IngestBatcherStack,EmrServerlessBulkImportStack,EmrStudioStack,QueryStack,AthenaStack,CompactionStack,GarbageCollectorStack,PartitionSplittingStack,DashboardStack,TableMetricsStack
sleeper.optional.stacks=IngestStack,IngestBatcherStack,EmrServerlessBulkImportStack,EmrStudioStack,QueryStack,CompactionStack,GarbageCollectorStack,PartitionSplittingStack,DashboardStack,TableMetricsStack

# The deployment type for AWS Lambda. Not case sensitive.
# There are two types of Lambda deployments, jar and container.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public enum OptionalStack {

public static final List<OptionalStack> DEFAULT_STACKS = List.of(
IngestStack, IngestBatcherStack, EmrServerlessBulkImportStack, EmrStudioStack,
QueryStack, AthenaStack, CompactionStack, GarbageCollectorStack, PartitionSplittingStack,
QueryStack, CompactionStack, GarbageCollectorStack, PartitionSplittingStack,
DashboardStack, TableMetricsStack);

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ void shouldGenerateListOfDefaultValueForOptionalStack() {
InstanceProperties properties = new InstanceProperties();
assertThat(properties.get(OPTIONAL_STACKS))
.isEqualTo("IngestStack,IngestBatcherStack,EmrServerlessBulkImportStack,EmrStudioStack," +
"QueryStack,AthenaStack,CompactionStack,GarbageCollectorStack,PartitionSplittingStack," +
"QueryStack,CompactionStack,GarbageCollectorStack,PartitionSplittingStack," +
"DashboardStack,TableMetricsStack");
}

Expand Down
2 changes: 1 addition & 1 deletion scripts/templates/instanceproperties.template
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ sleeper.retain.logs.after.destroy=true
# PersistentEmrBulkImportStack, EksBulkImportStack, EmrStudioStack, BulkExportStack, QueryStack,
# WebSocketQueryStack, AthenaStack, KeepLambdaWarmStack, CompactionStack, GarbageCollectorStack,
# PartitionSplittingStack, DashboardStack, TableMetricsStack]
sleeper.optional.stacks=IngestStack,IngestBatcherStack,EmrServerlessBulkImportStack,EmrStudioStack,QueryStack,AthenaStack,CompactionStack,GarbageCollectorStack,PartitionSplittingStack,DashboardStack,TableMetricsStack
sleeper.optional.stacks=IngestStack,IngestBatcherStack,EmrServerlessBulkImportStack,EmrStudioStack,QueryStack,CompactionStack,GarbageCollectorStack,PartitionSplittingStack,DashboardStack,TableMetricsStack

# The deployment type for AWS Lambda. Not case sensitive.
# There are two types of Lambda deployments, jar and container.
Expand Down
Loading