Exemplo n.º 1
0
        private static SubscriberResult Process(ProcessCache cache, IBinarySerializer serializer, ISubscriber subscriber, IEvent @event)
        {
            var documents = cache.Load(subscriber.DocumentType, subscriber.GetDocumentIdsFor(@event));

            subscriber.UpdateDocument(@event, documents);

            var processedDocuments = new List <ProcessedDocument>();

            foreach (var document in documents)
            {
                //TODO: check that it uses the actual type, not the interface type...
                var serializedDocument = serializer.Serialize(document);
                processedDocuments.Add(new ProcessedDocument {
                    DocumentId = document.Id, SerializedDocument = serializedDocument
                });
            }

            return(new SubscriberResult {
                SerialNumber = @event.SerialNumber, ProcessedDocuments = processedDocuments
            });
        }
Exemplo n.º 2
0
        public void Initialize()
        {
            IBinarySerializer binarySerializer = new BinarySerializer();
            var documentFactory = new DocumentFactory(binarySerializer);
            var processCache    = new ProcessCache(_documentStore, documentFactory);

            var options = new DataflowBlockOptions {
                BoundedCapacity = 1000000
            };
            var inputBlock = new BufferBlock <IEvent>(options);

            var broadcastBlock = new BroadcastBlock <IEvent>(e => e);

            inputBlock.LinkTo(broadcastBlock);

            var processedDocumentsBlock = new BufferBlock <SubscriberResult>(options);

            foreach (var subscriber in _subscribers)
            {
                var subscriberPreloadBlock = new TransformBlock <IEvent, IEvent>(e => Preload(processCache, subscriber, e));
                var subscriberProcessBlock = new TransformBlock <IEvent, SubscriberResult>(e => Process(processCache, binarySerializer, subscriber, e));

                broadcastBlock.LinkTo(subscriberPreloadBlock, e => subscriber.CanHandleEvent(e.GetType()));
                subscriberPreloadBlock.LinkTo(subscriberProcessBlock);
                subscriberProcessBlock.LinkTo(processedDocumentsBlock);
            }

            //The BoundedCapacity is set to one to wait for the write operation to finish before we get a new batch.
            //This will increase the batch size and performance
            var writeBlock = new ActionBlock <IReadOnlyList <SubscriberResult> >(rs => WriteDocuments(rs),
                                                                                 new ExecutionDataflowBlockOptions {
                BoundedCapacity = 1
            });

            //Starts the dynamic batching to ensure that the process doesnt stop while waiting for a batchblock (for example)
            Task.Factory.StartNew(() => BatchItems(processedDocumentsBlock, writeBlock));
        }
Exemplo n.º 3
0
 private static IEvent Preload(ProcessCache cache, ISubscriber subscriber, IEvent @event)
 {
     cache.Preload(subscriber.DocumentType, subscriber.GetDocumentIdsFor(@event));
     return(@event);
 }