Samples/MusicStore
Tim Hess 03cbc3dc38 update music store scripts and readme to use netcoreapp2.1 2018-05-29 08:08:40 -05:00
..
src Updates to (asp).net core 2.1.0-rc1 and other misc packages [#157514780] 2018-05-24 14:38:08 -05: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 music store scripts and readme to use netcoreapp2.1 2018-05-29 08:08:40 -05:00
config-server.json Changes for horizontal scaling 2016-10-21 13:35:23 -06:00
createCloudFoundryServices.cmd Add first cut of Hystrix to Music Store 2017-12-20 06:18:54 -07:00
createCloudFoundryServices.sh Add first cut of Hystrix to Music Store 2017-12-20 06:18:54 -07: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
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 music store scripts and readme to use netcoreapp2.1 2018-05-29 08:08:40 -05:00
pushMusicStoreService.sh update music store scripts and readme to use netcoreapp2.1 2018-05-29 08:08:40 -05:00
pushMusicStoreUI.cmd update music store scripts and readme to use netcoreapp2.1 2018-05-29 08:08:40 -05:00
pushMusicStoreUI.sh update music store scripts and readme to use netcoreapp2.1 2018-05-29 08:08:40 -05:00
pushOrderService.cmd update music store scripts and readme to use netcoreapp2.1 2018-05-29 08:08:40 -05:00
pushOrderService.sh update music store scripts and readme to use netcoreapp2.1 2018-05-29 08:08:40 -05:00
pushShoppingCartService.cmd update music store scripts and readme to use netcoreapp2.1 2018-05-29 08:08:40 -05:00
pushShoppingCartService.sh update music store scripts and readme to use netcoreapp2.1 2018-05-29 08:08:40 -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 pre-built Steeltoe Docker images.
  • On Windows 10, use pre-built Steeltoe Windows Container images.
  • Install each service manually.

Currently, the simplest way to get these up and running is to use the first option above together with the provided dockerrun-*.cmd, dockerrun-*.sh files to startup those services locally on your machine.

Pre-requisites - Using Steeltoe Docker images

If you don't have Docker installed on your local machine, you can use:

After installing either of the above, you need to enable File Sharing between your Docker VM and your local machine. On Windows 10, share the C: drive from you local machine with the VM. On MacOS, share your Home directory with the VM. This is necessary as the pre-built Config Server image has been pre-configured to read its configuration data from ~/steeltoe/config-repo or C:\steeltoe\config-repo off of the local machine.

Once you have Docker installed and running, use the provided command files to start the various services. To startup a Spring Cloud Config Server:

  1. cd Samples/MusicStore
  2. start dockerrun-configserver.cmd or ./dockerrun-configserver.sh

This script will create a directory ~/steeltoe/config-repo or c:\steeltoe\config-repo if it doesn't exist and then fire up a Spring Cloud Config Server listening on port 8888. Copy the MusicStore configuration files to `\steeltoe\config-repo' so the running Config Server will have access to them.

  1. cd Samples/MusicStore/src/config
  2. copy *.* c:/steeltoe/config-repo or cp *.* ~/steeltoe/config-repo

Note: The first symptom you missed this step (or have docker configuration issues affecting the drive share) is likely to be the error Discovery client type UNKNOWN, check configuration

Similarly, start a Spring Cloud Eureka Server (listening on port 8761):

  1. cd Samples/MusicStore
  2. start dockerrun-eurekaserver.cmd or ./dockerrun-eurekaserver.sh

Next, fire up a MySql Server listening on port 3306 with username: root and password: steeltoe.

  1. cd Samples/MusicStore
  2. start dockerrun-mysqlserver.cmd or ./dockerrun-mysqlserver.sh

Note: if you are not using the docker image, modify the username and password values in the *.yml files the config server is using to match your environment

Pre-requisites - Using Windows Containers

Details to be provided when Windows containers stabilize!

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.14.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.