Skip to content

Big Data Systems Assignment - Distributed Applications with Orleans

Notifications You must be signed in to change notification settings

diku-dk/BDSOnlineShop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BDS OnlineShop

BDS OnlineShop is an event-driven application based on Orleans actors and Orleans Streams.

Table of Contents

Getting Started

Prerequisites

New Orleans Users

Orleans framework provides facilities to program distributed applications at scale using the virtual actor model. We highly recommend starting from the Orleans Documentation to further understand the model.

How to Run

As any real-world application, we need to make sure the server is up and running before any client interation. Therefore, in the project's root folder, run the following command:

dotnet run --project Server

This command will start up the Orleans server (aka silo).

Next, we can initialize the client program. In another console, run:

dotnet run --project Client

Assignment

Description

Refer to the description in Absalon.

Troubleshooting

Q: There are compilation errors

A: Make sure you have installed .NET Framework 7 correctly. Besides, make sure you have not modified the original code.

Q: How to debug?

A: Use an IDEA. For instance, to open the project in Visual Studio, make sure to select the BDSOnlineShop.sln as the solution file, so Visual Studio will recognize the solution as a whole and allow you to debug your application.

Q: The project is throwing exceptions.

A: You are supposed to complete the application according to the assignment description, removing the exceptions thrown in the way.

Q: My events are not reaching the correct actors.

A: Make sure you are sending to the correct stream and actor. Refer to Orleans Streams documentation for further details.

About

Big Data Systems Assignment - Distributed Applications with Orleans

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages