Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lawrencegripper/awesome-servicefabric
A curated list of useful Service Fabric stuff
https://github.com/lawrencegripper/awesome-servicefabric
List: awesome-servicefabric
Last synced: 19 days ago
JSON representation
A curated list of useful Service Fabric stuff
- Host: GitHub
- URL: https://github.com/lawrencegripper/awesome-servicefabric
- Owner: lawrencegripper
- License: mit
- Created: 2018-01-19T09:35:37.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-25T07:38:01.000Z (almost 6 years ago)
- Last Synced: 2024-05-23T04:06:06.963Z (6 months ago)
- Language: Shell
- Size: 32.2 KB
- Stars: 37
- Watchers: 5
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- fucking-awesome-awesomeness - Service Fabric
- fucking-lists - awesome-servicefabric - us/azure/service-fabric/) distributed services platform (Technical / awesome-*)
- awesomelist - awesome-servicefabric - us/azure/service-fabric/) distributed services platform (Technical / awesome-*)
- more-awesome - Service Fabric - Useful Service Fabric stuff. (To Sort)
- collection - awesome-servicefabric - us/azure/service-fabric/) distributed services platform (Technical / awesome-*)
- lists - awesome-servicefabric - us/azure/service-fabric/) distributed services platform (Technical / awesome-*)
- awesome-awesomeness - Service Fabric
README
# awesome-servicefabric
A curated list of awesome SF stuff inspired by other [awesome-*](https://github.com/bayandin/awesome-awesomeness) lists.> Contributing: Please submit PR's with other useful tools, guides and projects :)
What is Service Fabric
-------------------
Service Fabric is a distributed systems platform for Linux and Windows that makes it easy to package, deploy, and manage scalable and reliable microservices and containers. It is designed to simplify infrastructure and focus on implementing mission-critical, demanding workloads that are scalable, reliable, and manageable.It is deployable in on-premise, Microsoft Azure, Amazon AWS… and has a number of unique features:
* Container (Windows & Linux) deployment and orchestration
* Host any process as a Guest Executable
* Reliable stateless and stateful programming model for Java or .NET
* Reliable Actors programming model to create cloud objects with self-contained code and state
* Built-in state model to persist highly-available state
* Monitor and diagnose the health of applications and set policies for performing automatic repairs
* Resource balancer orchestrate the automatically redistributes applications across the cluster, based on policies and resource utilization. Service Fabric recovers from failures and optimizes the distribution of load based on available resources Rolling upgrades of running process without downtime, including breaking and nonbreaking upgradesAzure’s core infrastructure is based on Service Fabric and service such as Azure SQL, Bing, Cosmos DB, IoT Hub, Event Hub etc. are all running on Service Fabric.
Starting Point
-------------------
* [Service Fabric Docs](https://docs.microsoft.com/en-us/azure/service-fabric/) - Public documentation from Microsoft with [overview](https://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-overview), [architecture](https://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-architecture) and [terminology](https://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-technical-overview)
* [Service Fabric issue tracker](https://github.com/azure/service-fabric-issues/issues)
* [Service Fabric Party Cluster](https://aka.ms/tryservicefabric) - try a free, limited-time usage Service Fabric cluster hosted on Microsoft Azure
* [Service Fabric code samples](https://azure.microsoft.com/en-us/resources/samples/?service=service-fabric)Installation / Setup
-------------------
* Setting up a [Windows development environment](https://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-get-started)
* Setting up a [Linux development environment](https://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-get-started-linux)
* Setting up a [Mac development environment](https://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-get-started-mac)Source
-------------------
[Service Fabric Open Source Projects](https://github.com/Azure/service-fabric) - Service Fabric homepage for OSS projectsDevelopment
-------------------
* [CoherentSolutions.Extensions.Hosting.ServiceFabric](https://github.com/coherentsolutionsinc/aspnetcore-service-fabric-hosting) - Contains a extension methods for generic host to simplify configuration of Reliable Services and reduce amount of hand written code. The project infrastructure also supports common logging / tracing, dependency injection and configuration scenarios.Testing
-------------------
* [Service Fabric Mocks](https://www.nuget.org/packages/ServiceFabric.Mocks/) - Contains many Mock and helper classes to facilitate and simplify unit testing of Service Fabric Actors and Services.Continuous Integration, Monitoring & Delivery
-------------------
* [Service Fabric Watchdog](https://github.com/peterbryntesson/ServiceFabric.Watchdog) - A framework for exposing custom metrics and monitoring them with a watchdog in Azure Service Fabric.
* [Jenkins CI/CD with Service Fabric](https://channel9.msdn.com/Shows/Azure-Friday/Jenkins-CICD-with-Service-Fabric) - Setup a CI/CD pipeline for Service Fabric using Jenkins.
* [Visual Studio Team Services CI/CD with Service Fabric](https://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-tutorial-deploy-app-with-cicd-vsts) - Setup a CI/CD pipeline for Service Fabric using VSTS.
* [Service Fabric Run-Tests](https://hub.docker.com/r/coherentsolutions/service-fabric-run-tests/) - A Linux docker image for execution of unit test that use Service Fabric classes (i.e. StatefulServiceBase).Networking and Routing
-------------------
* [Traefik on Service Fabric](https://github.com/jjcollinge/traefik-on-service-fabric/) - Ingress and Routing provider to enable [Traefik](https://traefik.io/) integration.Code, SDKs and Integrations
-------------------
* [Unofficial Management SDK for golang](https://godoc.org/github.com/jjcollinge/servicefabric) - Package servicefabric is an opinionated Service Fabric client written in Golang.
* [Example Hosting Redis](https://github.com/lawrencegripper/RedisOnSerivceFabric-Example) - An example project showing two different approaches for hosting Redis as a GuestExecutable.
* [IAsyncEnumerable Bridge for Service Fabric Reliable Collections](https://gist.github.com/aelij/987d974c811865029564f1bbeffb6b47) - An IAsyncEnumerable Bridge to enable LINQ like queries on Service Fabric Reliable Collections.
* [Minio Server for Service Fabric](https://github.com/MedAnd/Minio.ServiceFabric) - Minio for Service Fabric is an open source object storage server with Amazon S3 compatible API.
* [Custom Headers For Remoting](https://github.com/Expecho/ServiceFabric-Remoting-CustomHeaders) - Allows injecting custom message headers into remoting messages (Actors and Reliable Services, V2 remoting only)Interesting Blogs
-------------------
* [Service Fabric Team Blog](https://blogs.msdn.microsoft.com/azureservicefabric/)
* [Continuous Delivery for Service Fabric via Github, Travis CI and Docker Compose](https://www.microsoft.com/developerblog/2018/01/18/continuous-delivery-service-fabric-via-github-travis-ci-docker-compose/)
* [Deploying a Linux Python web application to Service Fabric via Docker Compose](https://www.microsoft.com/developerblog/2018/01/09/deploying-a-linux-python-web-application-to-service-fabric-via-docker-compose/)
* [Service Fabric Under the Hood: The Cluster Resource Manager (Part 1)](https://blogs.msdn.microsoft.com/azureservicefabric/2015/12/15/service-fabric-under-the-hood-the-cluster-resource-manager-part-1/)
* [Service Fabric Under the Hood: The Cluster Resource Manager (Part 2)](https://blogs.msdn.microsoft.com/azureservicefabric/2016/01/14/service-fabric-under-the-hood-the-cluster-resource-manager-part-2/)
* [Azure services explained – Part 1: Azure Service Fabric](https://www.dynatrace.com/blog/azure-services-explained-part-1-azure-service-fabric/)
* [Unit testing in Azure Service Fabric](https://loekd.wordpress.com/2018/03/05/unit-testing-in-azure-service-fabric/)
* [Service Fabric Handbook](https://olegkarasik.wordpress.com/2018/10/03/service-fabric-handbook/)Training, Courses and Books
-------------------
* [Building Microservices Applications on Azure Service Fabric](https://mva.microsoft.com/en-us/training-courses/building-microservices-applications-on-azure-service-fabric-16747?l=tbuZM46yC_5206218965)
* [Service Fabric Patterns and Practices](https://mva.microsoft.com/en-us/training-courses/azure-service-fabric-patterns-and-practices-16925?l=mudwqISGD_6005167344)
* [Programming Microsoft Azure Service Fabric](https://www.microsoftpressstore.com/store/programming-microsoft-azure-service-fabric-9781509301881)
* [Understanding the Programming Models of Azure Service Fabric](https://www.pluralsight.com/courses/azure-service-fabric-programming-models)
* [Service Fabric on Channel9](https://channel9.msdn.com/Search?term=service%20fabric#pubDate=year&ch9Search&lang-en=en)
* [Why Service Fabric?](https://www.lynda.com/Azure-tutorials/Why-Azure-Service-Fabric/573134/590379-4.html)Hacks, Samples and Labs
-------------------
* [Service Fabric Challenges](https://github.com/kagowda/India-Hackathon)
* [Service Fabric Windows Container Lab](https://github.com/MikkelHegn/ContainersSFLab)
* [Service Fabric Samples](https://azure.microsoft.com/en-us/resources/samples/?service=service-fabric&sort=0)Comparisons with Kubernetes
-------------------
* [Service Fabric and Kubernetes: community comparison, part 1 – Distributed Systems Architecture](https://blogs.msdn.microsoft.com/azuredev/2018/08/15/service-fabric-and-kubernetes-comparison-part-1-distributed-systems-architecture/)
* [Multi-Container Sample with Service Fabric and Kubernetes](https://github.com/paolosalvatori/service-fabric-acs-kubernetes-multi-container-app)
* [Difference between Kubernetes and Service Fabric](https://stackoverflow.com/questions/48415057/difference-between-kubernetes-and-service-fabric)