I'm implementing CQRS pattern with Event sourcing, I'm using NServiceBus, NEventStore and NES(Connects between NSB and NEventStore).
My application will check a web service regularly for a file to be downloaded and processed. The file will be then de-serialized into objects (let's call them Orders), and each Order should be processed separately and independently. Now inside the (File domain) I'm creating an event for each Order called (OrderExtracted), and calling Apply to raise that event.
What I noticed is that by default, the column size in NEventStore that hold the number of events (Items) is tiny-int, However in my case, sometimes there are files that contains 1000+ orders ! Does it mean that an event source should not normally have more than 255 events?
Do I need to change my design?