mirror of
https://github.com/Alfresco/SearchServices.git
synced 2025-10-01 14:41:19 +00:00
33 lines
644 B
Plaintext
33 lines
644 B
Plaintext
@startuml
|
|
|
|
database "Solr" {
|
|
package "SolrInfrmationServer" {
|
|
[UpdateIndex]
|
|
}
|
|
package "org.alfresco.tracker.content"{
|
|
[ContentConsumer]
|
|
[ContentMessageProducer]
|
|
[SharedFileStoreClient]
|
|
}
|
|
folder "ContentStore" {
|
|
[UpdateFile]
|
|
}
|
|
}
|
|
node "Alfresco SharedFileStore" {
|
|
[GetFile]
|
|
}
|
|
|
|
database "ActiveMQ" {
|
|
[ContentMessageQue]
|
|
}
|
|
|
|
[ContentMessageProducer] --> [ContentMessageQue]
|
|
[ContentConsumer] --> [ContentMessageQue]
|
|
[ContentConsumer] --> [SharedFileStoreClient]
|
|
[ContentConsumer] <-- [SharedFileStoreClient]
|
|
[SharedFileStoreClient] --> [GetFile]
|
|
[ContentConsumer] --> [UpdateIndex]
|
|
[UpdateIndex] -->[UpdateFile]
|
|
|
|
|
|
@enduml |