Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

Commit

Permalink
migrating to Akka.Persistence storage for sharding (#27)
Browse files Browse the repository at this point in the history
* migrating to Akka.Persistence storage for sharding

* Delete kubectl

* updated
  • Loading branch information
Aaronontheweb authored Apr 20, 2022
1 parent 85a30d5 commit 5607634
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [0.4.6] / 19 April 2022
- Arbitrary bump for deployment purposes

## [0.4.5] / 19 April 2022
- Switched Cluster.Sharding `state-store-mode=persistence`

## [0.4.4] / 19 April 2022
- Bumped Phobos to 2.0.2

## [0.4.3] / 15 April 2022
- Bumped Akka.Remote max-frame-size to 1mb, buffer sizes to 2mb.

Expand Down
Empty file removed k8s/prod/kubectl
Empty file.
6 changes: 3 additions & 3 deletions k8s/prod/services/prod-services.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ spec:
emptyDir: {}
containers:
- name: frontend
image: akkalargescaleimages64b06635.azurecr.io/akkadotnet.frontend:0.4.3
image: akkalargescaleimages64b06635.azurecr.io/akkadotnet.frontend:0.4.6
env:
- name: POD_NAME
valueFrom:
Expand Down Expand Up @@ -190,7 +190,7 @@ metadata:
akkacluster: stress
spec:
serviceName: "backend-akka"
replicas: 3
replicas: 130
selector:
matchLabels:
app: backend
Expand All @@ -207,7 +207,7 @@ spec:
emptyDir: {}
containers:
- name: backend
image: akkalargescaleimages64b06635.azurecr.io/akkadotnet.backend:0.4.3
image: akkalargescaleimages64b06635.azurecr.io/akkadotnet.backend:0.4.6
env:
- name: POD_NAME
valueFrom:
Expand Down
4 changes: 2 additions & 2 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<PropertyGroup>
<Copyright>Copyright © 2022 Petabridge</Copyright>
<Authors>Petabridge</Authors>
<VersionPrefix>0.4.3</VersionPrefix>
<PackageReleaseNotes>• Bumped Akka.Remote max-frame-size to 1mb%2C buffer sizes to 2mb.</PackageReleaseNotes>
<VersionPrefix>0.4.6</VersionPrefix>
<PackageReleaseNotes>• Arbitrary bump for deployment purposes</PackageReleaseNotes>
<PackageIconUrl>
</PackageIconUrl>
<PackageProjectUrl>
Expand Down
2 changes: 1 addition & 1 deletion src/backend/AkkaDotNet.BackEnd/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
{
RememberEntities = false,
Role = ActorSystemConstants.BackendRole,
StateStoreMode = StateStoreMode.DData
StateStoreMode = StateStoreMode.Persistence
})
.WithItemMessagingActor();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<PackageReference Include="OpenTelemetry.Instrumentation.Http" Version="$(OTelInstrumentationVersion)" />
<PackageReference Include="OpenTelemetry.Exporter.Jaeger" Version="$(OTelVersion)" />
<PackageReference Include="OpenTelemetry.Exporter.Prometheus" Version="$(OTelVersion)" />
<PackageReference Include="Phobos.Hosting" Version="2.0.1" />
<PackageReference Include="Phobos.Hosting" Version="2.0.2" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 5607634

Please sign in to comment.