Shared statestore to different processor

Should a statestore shared to two or more processors? Does it supports concurrent update?

Yes, you can share a state store across multiple Processors, and yes, both can read and write the state store. There is nothing you need to worry about.

In the end, there won’t be concurrent access, because all Processors accessing the same state store will be executed on the same thread.