You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is needed for multi-threaded import and matching. Examples: many corruption algorithms use Random generator. Right now it is shared, this makes single threaded execution faster. In multi-threaded scenario we want to instantiate Random generators per thread.
BloomFilter transformation also have some shared variables, which optimizes single threaded run, but in multi-thread environment another approach is necessary.
The text was updated successfully, but these errors were encountered:
This is needed for multi-threaded import and matching. Examples: many corruption algorithms use Random generator. Right now it is shared, this makes single threaded execution faster. In multi-threaded scenario we want to instantiate Random generators per thread.
BloomFilter transformation also have some shared variables, which optimizes single threaded run, but in multi-thread environment another approach is necessary.
The text was updated successfully, but these errors were encountered: