Files
SearchServices/search-services/alfresco-search/doc/architecture/AsyncContentTracker/componenet-diagram.puml
2019-08-06 09:34:47 +01:00

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