dtro-devuk Knowledge Base

Logo

A curated list of helpful material on some of my Development Stack

View the Project on GitHub dtro-devuk/KnowledgeBase

ServiceFabric Azure Service Fabric Knowledge Base

A curated list of helpful material to start learning Modern Development Things :smile:

Project Workflow using ZenHub

Title Author Version Group Sub-Levels
Azure Service Fabric Knowledge base dtro-devuk 1.0 Root 0

Azure Service Fabric is a Platform-as-a-Service offering, which promises us a way to build highly reliable, massively scalable cloud based services

Overview

Advantages of Service Fabric and Microservices

Taken from benefits to TalkTalk TV…

Intro

Official

Others

Case Studies

Actor Frameworks, Patterns etc

Actor Model

Reliable Actors

see:

State Clears

**NB. State Clears on Restart!!!

Swagger

Tutorials

Official

Completed

Official Sample Apps

Deployment and Debugging

Security

SFX (Service Fabric Explorer)

Azure Symbols

Moving Clusters and Size

Local clusters begin eating up your SD drive, so you can tweak config and locations of data and logs using the notes below:

Clusters stored here by default:

Command to run to change clusters

.\DevClusterSetup.ps1 -PathToClusterDataRoot -PathToClusterLogRoot

.\DevClusterSetup.ps1 -PathToClusterDataRoot d:\SfDevCluster\data -PathToClusterLogRoot d:\SfDevCluster\log

Steps to move clusters:

  1. Open MS Powershell as Administrator
  2. Eleveate permissions: Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Force -Scope CurrentUser
  3. Navigate to ClusterSetup folder: cd “C:\Program Files\Microsoft SDKs\Service Fabric\ClusterSetup”
  4. Run command to move partitions to d drive: .\DevClusterSetup.ps1 -PathToClusterDataRoot d:\SfDevCluster\data -PathToClusterLogRoot d:\SfDevCluster\log