Skip to content

Instantly share code, notes, and snippets.

@noriyukitakei
Created July 11, 2018 11:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save noriyukitakei/cd24c3d71fae7c7ebcd3482d5d631d13 to your computer and use it in GitHub Desktop.
Save noriyukitakei/cd24c3d71fae7c7ebcd3482d5d631d13 to your computer and use it in GitHub Desktop.
多分わかりやすいマイクロサービス入門 〜 マイクロサービスフレームワーク「Azure Service Fabric」でLINE風なチャットアプリを作ろう!! 〜
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<ApplicationManifest xmlns="http://schemas.microsoft.com/2011/01/fabric" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ApplicationTypeName="ChatApplicationType" ApplicationTypeVersion="1.0.0">
<Description>Chat Application</Description>
<ServiceManifestImport>
<ServiceManifestRef ServiceManifestName="ChatWebPkg" ServiceManifestVersion="1.0.0"/>
</ServiceManifestImport>
<ServiceManifestImport>
<ServiceManifestRef ServiceManifestName="ChatDataPkg" ServiceManifestVersion="1.0.0"/>
</ServiceManifestImport>
<DefaultServices>
<Service Name="ChatWeb">
<StatelessService InstanceCount="1" ServiceTypeName="ChatWebType">
<SingletonPartition/>
</StatelessService>
</Service>
<Service Name="ChatData">
<StatefulService MinReplicaSetSize="3" ServiceTypeName="ChatDataType" TargetReplicaSetSize="3">
<UniformInt64Partition HighKey="9223372036854775807" LowKey="-9223372036854775808" PartitionCount="1"/>
</StatefulService>
</Service>
</DefaultServices>
<Certificates>
<SecretsCertificate X509FindType="FindByThumbprint" X509FindValue="XXXXXX" />
</Certificates>
</ApplicationManifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment