This commit is contained in:
Vaclav Turecek 2017-08-24 11:39:27 -07:00
Родитель e60457248a
Коммит 0d35d10b29
1 изменённых файлов: 20 добавлений и 4 удалений

Просмотреть файл

@ -1,15 +1,31 @@
# Service Fabric 
# Azure Service Fabric 
This repository is the starting point to engage in and learn about Service Fabric open source projects from Microsoft. For more information on Service Fabric, see our [documentation](https://docs.microsoft.com/azure/service-fabric/).
Azure Service Fabric is a distributed systems platform that makes it easy to package, deploy, and manage scalable and reliable distributed applications. Service Fabric also addresses the significant challenges in developing and managing cloud applications. Developers and administrators can avoid complex infrastructure problems and focus on implementing mission-critical, demanding workloads that are scalable, reliable, and manageable. Service Fabric represents the next-generation middleware platform for building and managing these enterprise-class, tier-1, cloud-scale applications.
Service Fabric is a distributed systems platform that makes it easy to package, deploy, and manage scalable and reliable distributed applications. Service Fabric also addresses the significant challenges in developing and managing cloud applications. Developers and administrators can avoid complex infrastructure problems and focus on implementing mission-critical, demanding workloads that are scalable, reliable, and manageable. Service Fabric represents the next-generation middleware platform for building and managing these enterprise-class, tier-1, cloud-scale applications.
## Issues and feature discussion
For issue reporting and feature discussion please use one of the open source project repos listed below where it makes sense. For general Service Fabric issues and discussion that doesn't fall into one of the open source repos, please use the [Azure/service-fabric-issues](https://github.com/azure/service-fabric-issues) repo.
## Service Fabric open source projects 
We are making parts of the SDK source publicly available and open to contributions. This includes the SDK packages found on NuGet, such as Reliable Services, Reliable Actors, Service Remoting, and ASP.NET Core integration. The Service Fabric runtime is not available today as an open source project. As we collect feedback and run tests on contributions, we will determine the best time to open source the runtime, which includes the clustering layers and the Reliable Collections replicated persisted store.
You can find our open source components in the following repos:
- [Azure/service-fabric-services-and-actors-dotnet](https://github.com/Azure/service-fabric-services-and-actors-dotnet) - Reliable Services and Reliable Actors
- [Azure/service-fabric-aspnetcore](https://github.com/Azure/service-fabric-aspnetcore) - ASP.NET Core Service Fabric integration
**Reliable Services and Reliable Actors**
- [Azure/service-fabric-services-and-actors-dotnet](https://github.com/Azure/service-fabric-services-and-actors-dotnet)
**ASP.NET Core Service Fabric integration**
- [Azure/service-fabric-aspnetcore](https://github.com/Azure/service-fabric-aspnetcore)
**Service Fabric CLI (sfctl)**
- [Azure/service-fabric-cli](https://github.com/Azure/service-fabric-cli)
**Service Fabric Yeoman generators**
- C#: [Azure/generator-azuresfcsharp](https://github.com/Azure/generator-azuresfcsharp)
- Java: [Azure/generator-azuresfjava](https://github.com/Azure/generator-azuresfjava)
- Guest EXEs: [Azure/generator-azuresfguest](https://github.com/Azure/generator-azuresfguest)
- Containers: [Azure/generator-azuresfcontainer](https://github.com/Azure/generator-azuresfcontainer)
## How we do development 
Before Service Fabric shipped publicly as a product in 2015, it was developed as a Microsoft-internal-only platform for over five years. As a result, much of our development process is still deeply rooted in internal build processes, tools, and test suites. So for the time being we are continuing to do our own development internally. Upon each release of the SDK, we will push our latest changes to GitHub. We intend to bring more of our development process and tools into the open over time.