Initial commit

This commit is contained in:
Andrey
2024-04-08 19:15:50 +03:00
commit 072ced2815
51 changed files with 2926 additions and 0 deletions

37
search/Mycroft.puml Normal file
View File

@@ -0,0 +1,37 @@
@startuml
'Параметры для интерфейсов
skinparam interface {
backgroundColor #1a2eff
borderColor black
}
'Параметры для компонентов
skinparam component {
FontSize 13
ArrowFontStyle Bold
FontName Times New Roman
BorderColor black
BackgroundColor #e6ffef
ArrowFontName Courier
ArrowColor #111111
ArrowFontColor #111111
}
frame Mycroft_scheme #ededed {
database MySql #turquoise {
[Sphinx]
}
database ElasticSearch #turquoise {
[Sherlock]
}
[request] --> [Sherlock]
[request] --> [Sphinx]
[Sherlock] --> [aggregate]
[Sphinx] --> [aggregate]
[aggregate] --> [csv_files]: save
}
@enduml