Samples/MusicStore
Hananiel Sarella 3f57578534 Merge conflict resolved 2020-04-03 11:45:42 -04:00
..
src Merge conflict resolved 2020-04-03 11:45:42 -04:00
MusicStore.sln Music store updates for 2.0, name dotnet processes for easier debug attachment [Finishes #152179228} 2017-11-16 16:41:52 -06:00
README.md update READMEs and Integration tests for cflinuxfs3/ubuntu 16.04 (#109) 2019-05-13 10:14:37 -05:00
config-server.json Changes for horizontal scaling 2016-10-21 13:35:23 -06:00
createCloudFoundryServices.cmd use p.mysql instead of p-mysql, revert Redis sample to netcore2.1 for integration tests' benefit 2019-01-17 14:12:40 -06:00
createCloudFoundryServices.sh use p.mysql instead of p-mysql, revert Redis sample to netcore2.1 for integration tests' benefit 2019-01-17 14:12:40 -06:00
deleteCloudFoundryServices.cmd Add first cut of Hystrix to Music Store 2017-12-20 06:18:54 -07:00
deleteCloudFoundryServices.sh Fix shell script permissions 2018-05-03 11:01:18 -04:00
docker-compose.yml Use docker for local supporting services 2018-06-12 10:19:00 -04:00
dockerrun-configserver.cmd Use steeltoe OSS docker hub images 2016-08-29 14:27:21 -06:00
dockerrun-configserver.sh Use steeltoe OSS docker hub images 2016-08-29 14:27:21 -06:00
dockerrun-eurekaserver.cmd Use steeltoe OSS docker hub images 2016-08-29 14:27:21 -06:00
dockerrun-eurekaserver.sh Use steeltoe OSS docker hub images 2016-08-29 14:27:21 -06:00
dockerrun-mysqlserver.cmd Fix docerrun-mysqlserver.sh/cmd names 2017-08-26 08:44:17 -06:00
dockerrun-mysqlserver.sh Fix shell script permissions 2018-05-03 11:01:18 -04:00
dockerrun-postgresserver.cmd Add Postgres & EFCore compile/run option, default to MySQL 2016-08-07 08:53:35 -06:00
dockerrun-postgresserver.sh Updates for developing/running on MacOS 2016-08-08 09:43:27 -06:00
nuget.config SteelToe -> Steeltoe [#130554549] 2016-09-19 10:21:45 -04:00
pushMusicStoreService.cmd update READMEs and Integration tests for cflinuxfs3/ubuntu 16.04 (#109) 2019-05-13 10:14:37 -05:00
pushMusicStoreService.sh update READMEs and Integration tests for cflinuxfs3/ubuntu 16.04 (#109) 2019-05-13 10:14:37 -05:00
pushMusicStoreUI.cmd update READMEs and Integration tests for cflinuxfs3/ubuntu 16.04 (#109) 2019-05-13 10:14:37 -05:00
pushMusicStoreUI.sh update READMEs and Integration tests for cflinuxfs3/ubuntu 16.04 (#109) 2019-05-13 10:14:37 -05:00
pushOrderService.cmd update READMEs and Integration tests for cflinuxfs3/ubuntu 16.04 (#109) 2019-05-13 10:14:37 -05:00
pushOrderService.sh update READMEs and Integration tests for cflinuxfs3/ubuntu 16.04 (#109) 2019-05-13 10:14:37 -05:00
pushShoppingCartService.cmd update READMEs and Integration tests for cflinuxfs3/ubuntu 16.04 (#109) 2019-05-13 10:14:37 -05:00
pushShoppingCartService.sh update READMEs and Integration tests for cflinuxfs3/ubuntu 16.04 (#109) 2019-05-13 10:14:37 -05:00
runMusicStoreService.cmd update music store scripts and readme to use netcoreapp2.1 2018-05-29 08:08:40 -05:00
runMusicStoreService.sh update music store scripts and readme to use netcoreapp2.1 2018-05-29 08:08:40 -05:00
runMusicStoreUI.cmd update music store scripts and readme to use netcoreapp2.1 2018-05-29 08:08:40 -05:00
runMusicStoreUI.sh update music store scripts and readme to use netcoreapp2.1 2018-05-29 08:08:40 -05:00
runOrderService.cmd update music store scripts and readme to use netcoreapp2.1 2018-05-29 08:08:40 -05:00
runOrderService.sh update music store scripts and readme to use netcoreapp2.1 2018-05-29 08:08:40 -05:00
runShoppingCartService.cmd update music store scripts and readme to use netcoreapp2.1 2018-05-29 08:08:40 -05:00
runShoppingCartService.sh update music store scripts and readme to use netcoreapp2.1 2018-05-29 08:08:40 -05:00

README.md

Steeltoe MusicStore Sample Application

This repo tree contains a sample app illustrating how to use all of the Steeltoe components together in a ASP.NET Core application. This application is based on the ASP.NET Core reference app MusicStore provided by Microsoft.

In creating this application, we took the Microsoft reference application and broke it up into multiple independent services:

  • MusicStoreUI - provides the UI to the MusicStore application and all of its services.
  • MusicStoreService - provides a RESTful API to the MusicStore and its backend Music database.
  • OrderService - provides a RESTful API for Order processing service and its backend Order database.
  • ShoppingCartService - provides a RESTful api to a ShoppingCart service and its backend ShoppingCart database.

Note: The OrderService and ShoppingCartService are independent from the Music application and could be used in any other application requiring those basic services.

This application makes use of the following Steeltoe components:

  • Spring Cloud Config Server Client for centralized application configuration
  • Spring Cloud Eureka Server Client for service discovery
  • Steeltoe Connector for connecting to MySql using EFCore
  • Steeltoe CircuitBreaker to help prevent cascading failures from lower level service failures
  • Steeltoe Management for enabling management actuator endpoints that can be used by the Pivotal Apps Manager
  • Optionally uses Steeltoe Redis Connector to connect to a Redis cache for Session storage. Note: This is required if you want to scale the MusicStoreUI component to multiple instances.
  • Optionally uses Steeltoe Redis DataProtection provider to the cause the DataProtection KeyRing to be stored in a Redis cache. Note: This is also required if you want to scale the MusicStoreUI component to multiple instances.
  • Optionally uses Hystrix Dashboard for monitoring Circuit Breakers

The default is to NOT use a Redis cache for Session storage or DataProtection KeyRing storage. Details on how to enable it are provided below.

Getting Started

Pre-requisites - Local

  1. Installed .NET Core SDK.
  2. You need running instances of the following external services on your local machine:
  • Spring Cloud Config Server - listening @ http://localhost:8888
  • Spring Cloud Eureka Server - listening @ http://localhost:8761/eureka/
  • MySql Database Server - listening @ localhost:3306 username: root, password: steeltoe
  • Redis Cache - Optional, can be used for Session state backing store and KeyRing storage.

You have a three options to choose from in order to get these services up and running locally:

  • Use Docker images
  • Install each service manually.

Currently, the simplest way to get these up and running is to use the first option above:

Pre-requisites - Using Docker images

  1. cd Samples/MusicStore
  2. docker-compose up (currently only works if using Linux containers)

Building & Running MusicStore App - Locally

Once you have the pre-requisite services up and running then you are ready to build and run the various MusicStore services locally. The simplest way is to use the provided run*.cmd or run*.sh files.

For example, to startup the MusicStoreService:

  1. cd Samples/MusicStore
  2. runMusicStoreService.cmd or ./runMusicStoreService.sh

Its probably best to startup the MusicStoreService, OrderService and ShoppingCartService first and then follow up with the MusicStoreUI last.

The run*.* commands will dotnet run -f netcoreapp2.1 (i.e. target .NET Core).

If all the services startup cleanly, you should be able to hit: http://localhost:5555/ to see the Music Store.

Debugging/Developing Locally on Windows

You should have no problem using the provided solution to launch the individual services in the debugger and set break points and walk through code as needed.

Pre-requisites - CloudFoundry

  1. Install Pivotal Cloud Foundry
  2. Install Spring Cloud Services
  3. Install .NET Core SDK.
  4. Install Redis service if you want to use Redis for Session storage and KeyRing storage.
  5. Install Pivotal Apps Manager 1.11+ if you want to access Management endpoints from Apps Manager.

Setup Services on CloudFoundry

As mentioned above, the application is dependent on the following services:

  • Spring Cloud Config Server
  • Spring Cloud Eureka Server
  • MySql Database Server - Default database used by all MusicStore services.
  • Redis Cache - Optional! Note you have to specifically build/publish MusicStoreUI service to use Redis (Details below).

Note: Redis Cache is required if you want to scale the MusicStoreUI app to multiple instances (e.g. cf scale musicui -i 2+). Redis is not required to scale the other microservices.

Before pushing the application to CloudFoundry you need to create those services. If you plan on using Redis, set the environment variable USE_REDIS_CACHE=true before running these command.

Note: MySQL v2 uses different naming conventions by default than v1. If your environment uses MySQL v2, you may need to alter the createCloudFoundryServices script accordingly!

  1. cf target -o myOrg -s mySpace
  2. cd Samples/MusicStore
  3. Optionally - SET USE_REDIS_CACHE=true or export USE_REDIS_CACHE=true
  4. start createCloudFoundryServices.cmd or ./createCloudFoundryServices.sh

This will create all of the services needed by the application. Specifically, it creates:

  • mStoreConfig - Spring Cloud Config Server instance
  • mStoreRegistry - Spring Cloud Eureka Server instance
  • mStoreAccountsDB - MySql database instance for Users and Roles (Identity)
  • mStoreOrdersDB - MySql database instance for Orders
  • mStoreCartDB - MySql database instance for ShoppingCarts
  • mStoreStoreDB - MySql database instance for MusicStore
  • mStoreRedis(optionally) - Redis cache instance used by MusicStoreUI for storing Session state

Note: The Spring Cloud Config Server instance created by the above script configures the Config Server instance to use the git repo: https://github.com/SteeltoeOSS/musicStore-config.git. This repo contains the same configuration files as those found in Samples/MusicStore/config. No changes are required to the application configuration files before pushing the app to CloudFoundry.

Note: If you wish to change what github repo the Config server instance uses, you can modify config-server.json before using the createCloudFoundryServices script above.

Building & Pushing App - CloudFoundry

Once the services have been created and ready on CloudFoundry (i.e. check via cf services) then you can use the provided push*.cmd or push*.sh commands to startup the individual application services on CloudFoundry. For example to start the ShoppingCart service:

  1. cd Samples/MusicStore
  2. pushShoppingCartService.cmd win10-x64 netcoreapp2.1 or ./pushShoppingCartService.sh ubuntu.16.04-x64 netcoreapp2.1

Note: If you wish to use the Redis cache for storing Session state, you will have to set ENVIRONMENT variable DefineConstants=USE_REDIS_CACHE before building and pushing the MusicUI application.

Each of the push*.* scripts dotnet publish the MusicStore service targeting the framework and runtime you specify. They then push the MusicStore service using the appropriate CloudFoundry manifest found in the projects directory (e.g. manifest-windows.yml, manifest.yml ).

Note: If you are using self-signed certificates it is possible that you might run into SSL certificate validation issues when pushing these apps. The simplest way to fix this:

  1. Disable certificate validation for the Spring Cloud Config Client. You can do this by editing appsettings.json and add spring:cloud:config:validate_certificates=false. You will need to do this for each of the applications.

Once you have pushed all the applications to Cloud Foundry, if you do a cf a, you should see the following applications:

  • musicui - Music store User Interface
  • musicstore - Music store database micro-service
  • orderprocessing - Order processing micro-service
  • shoppingcart - Shopping cart micro-service
name              requested state   instances   memory   disk   urls
musicstore        started           1/1         1G       1G     musicstore.apps.testcloud.com
musicui           started           1/1         1G       1G     musicui.apps.testcloud.com
orderprocessing   started           1/1         1G       1G     orderprocessing.apps.testcloud.com
shoppingcart      started           1/1         1G       1G     shoppingcart.apps.testcloud.com

Known Limitations

Sample Databases

All MusicStore services (i.e. MusicStoreUI, OrderService, etc.) have their own database instance for persisting data. When a MusicStore service is started locally, it will always drop and recreate its database upon startup. When a MusicStore service is started on CloudFoundry, only the first instance (i.e. CF_INSTANCE_INDEX=0) will drop and recreate its database. Note then, the service is not fully ready until the first instance has finished initializing its database, even though other instances are ready.