俞加平

Results 1 issues of 俞加平

``` def hdfs_copy_stream(src, dst, namenode=None): try: md5 = hashlib.md5() offset = 0 clt = get_client(src, namenode) with clt.read(src, offset=offset, chunk_size=2 ** 16) as reader: with clt.write(dst, overwrite=True) as writer: for...