cardillo / joinery

Data frames for Java
https://joinery.sh
GNU General Public License v3.0
695 stars 167 forks source link

Implementing chunkSize in writesql #106

Open kjckang opened 2 years ago

kjckang commented 2 years ago

Implemented chunkSize feature - writesql has an additional parameter, chunkSize to determine the number of folds desired by user. chunkSize is a number of folds to split dataframe and process incrementally by split. The method currently only checks whether chunkSize is <= 0 or >= df.length(). Further checks on incorrect inputs such as string would be needed. Closes #94

zihanxu3 commented 2 years ago

@kjckang hi I've created a pull request for this issue in November.