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
Offline processing can be made more efficient by batch-processing data, so we should offer an option to define a batch update function for the operators.
classOperator:
def__init__(self, batch_size):
self.batch_size=batch_size# user defined transformation defon_record(self, record: Record):
pass# can be overwritten by user defon_records(self, records: List[Record]):
forrecordinrecords:
self.on_record(record)
The text was updated successfully, but these errors were encountered:
Offline processing can be made more efficient by batch-processing data, so we should offer an option to define a batch update function for the operators.
on_records(self, records: List[Record]) → List[Record]
The text was updated successfully, but these errors were encountered: