Ariadni-Karolina Alexiou

Results 11 comments of Ariadni-Karolina Alexiou

single file around 30 MBs.

``` def get_ssh_connection(): host = data_server ssh = SSHClient() ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) ssh.load_system_host_keys() try: ssh.connect(data_server, username="root") except: password = getpass.getpass("SSH password for {}@{} : ".format("root", data_server)) ssh.connect(data_server, username="root", password=password) return ssh def...

Thank you! I will report back when I benchmark it, because I think more people may find it useful.

Bad news: I didn't perceive a difference one way or the other.

seconding sodul's comment

@scottsand-db May I ask why [storage-s3-dynamodb](https://github.com/delta-io/delta/tree/master/storage-s3-dynamodb) is not under storage/src together with all the other stores?

Given that there's been no updates since September, @theshashankpal are you working on this or could I work on it? BTW, I created a small PR related to S3DynamoDbLogStore: https://github.com/delta-io/delta/pull/1760...

### Proposal add a file in src/storage/integration_tests/logstore.py This file takes as argument the class of the LogStore we want to test and does: generic_setup() # setting up number of readers/writers...

indeed, worked for me when I downloaded 7.1.0 ```wget https://download.qemu.org/qemu-7.1.0.tar.xz```