distributed-computing/tasks/savitskiy-al/lab_3/README.md
2023-12-15 14:17:16 +04:00

117 lines
4.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Отчет по лабораторной работе №3
Выполнил студент гр. ИСЭбд-41 Савицкий А.В.
## REST API, Gateway и синхронный обмен между микросервисами
## Создание микросервисов
1. С помощью команды `dotnet new web -n worker-1` в терминале создал первый микросервис
2. Добавил решение командой `dotnet new sln`
3. Связал решение и проект командой `dotnet sln worker-1.sln add worker-1.csproj`
4. Повторил действие для второго микросервиса
5. Добавил библиотеку Swagger и OpenAi в проекты и запустил с помощью команды `dotnet run`
6. Заложил в приложения следующую логику :
worker-1 - CRUD для сущности Aeroplan
worker-2 - CRUD для сущности Pilot
К одному Aeroplan относится много Pilot
Скриншоты API обоих приложений:
![](pic/1.png)
![](pic/2.png)
## Реализация синхронного обмена
Реализовал хранение данных в оперативной памяти с хранилещем спректированым по паттерну Singleton. Хранилище при инициализации сихронно вызывает данные из соседнего микросервиса.
Далее эти данные используются при обработке запросов к API
```cs
public class Storage
{
private static Random rand = new Random();
public AiroplaneDal[] Airoplanes { get; set; }
public List<PilotDal> Pilots { get; set; }
public static Storage Instance { get; set; }
private Storage() { }
public static async Task<Storage> GetInstance()
{
if(Instance is not null)
{
return Instance;
}
var client = new HttpClient();
string reqUrl = $"http://worker-1:8080/Aeroplanes/";
Instance = new Storage();
Instance.Airoplanes = await client.GetFromJsonAsync<AiroplaneDal[]>(reqUrl);
Instance.Pilots = new List<PilotDal>()
{
new PilotDal() { PilotId = Guid.NewGuid(), BirthDate = DateTime.Today.AddDays(-100), AeroplaneId = Instance.Airoplanes[rand.Next(Instance.Airoplanes.Length)].AeroplaneId, FullName = "Савицкий Александр Вячеславович", Experience = 10 },
new PilotDal() { PilotId = Guid.NewGuid(), BirthDate = DateTime.Today.AddDays(-150), AeroplaneId = Instance.Airoplanes[rand.Next(Instance.Airoplanes.Length)].AeroplaneId, FullName = "Гайдулян Максим Петрович", Experience = 15 }
};
return Instance;
}
}
```
## Реализация gateway при помощи nginx
Добавил nginx.conf:
```conf
server {
listen 8080;
listen [::]:8080;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
location /worker-1/ {
proxy_pass http://worker-1:8080/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Prefix /worker-1;
}
location /worker-2/ {
proxy_pass http://worker-2:8080/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Prefix /worker-2;
}
}
```
Результат, после выполнения команды `docker-compose up`:
Docker:
![](pic/3.png)
index.html на localhost:8080:
![](pic/4.png)
worker-1:
![](pic/5.png)
worker-2:
companyId - берется из другого приложения. Идентификаторы совпали -> все отработало корректно
![](pic/6.png)