Shabir Ahmad Bhat

Results 28 comments of Shabir Ahmad Bhat

@mshustov On huge files, the above method failed with memory issues, Most failures occurred on the file that contained more than 300 columns. ``` ERROR [2023-07-27 06:20:36,451] com.datoin.library.dataset.sql.utility.commons.abstracts.sql.AbstractDBEngine: Failed to...

If the file size is 5GB but the number of columns is less (less than 10 columns).then the above method works fine. But if the file size is just 200MB...

https://github.com/ClickHouse/clickhouse-java/issues/1467

@mzitnik I used the below method to upload the local file on clickhouse. ```` static long insert(String tableName, String csvFilePath) throws Exception { ClickHouseNode server = getServer(); try (BufferedInputStream bufferedInputStream...

@mzitnik How to set memory in the above method? and if I set max_memory_usage_for_user = 10, Is it 10 Bytes/MB/GB ?

@mzitnik How to set memory in the below method? like max_memory_usage_for_user, max_memory_usage, etc ``` static long insert(String tableName, String csvFilePath) throws Exception { ClickHouseNode server = ClickHouseNode.builder() .host(System.getProperty("chHost", "localhost")) .port(ClickHouseProtocol.HTTP,...

@mshustov @mzitnik If the file size is 5GB but the number of columns is less (less than 10 columns).then the above method works fine. But if the file size is...

Is there any option to set GPU off in AutoPytorch?