Kamil Piechowiak
Kamil Piechowiak
### Steps to reproduce This code persists input, I am not sure if it should. Notice that `persistence_mode` is set to `UDF_CACHING`: ```python import pathway as pw class InSchema(pw.Schema): a:...
**Is your feature request related to a problem? Please describe.** GDrive connector downloads files sequentially (new download starts when a previous finishes). It makes reading from gdrive slow. **Describe the...
### Steps to reproduce This simple program never terminates: ```python import pathway as pw import multiprocessing def local_run(): pw.run(monitoring_level=pw.MonitoringLevel.NONE) p = multiprocessing.Process(target=local_run) p.start() p.join() ``` (`local_run` added to disable monitoring)...