The goal of Repository is to significantly reduce the amount of boilerplate code required to implement data access layers for various persistence stores.
RepositoryAdapter could be used when one wants to save a Dataset[A]
to a data store of type B
.
RepositoryAdapter could be used when one wants to save a Dataset[A]
to a data store of type B
.
A Repository[A]
and a DatasetConverter[A, B]
must be provided (either explicitly or implicitly)
Type of the Repository
Target data store type
SparkRepository guarantee a Read-after-write consistency.
SparkRepository guarantee a Read-after-write consistency.
type of spark repository
The goal of Repository is to significantly reduce the amount of boilerplate code required to implement data access layers for various persistence stores.
data type