Skip to content

Instantly share code, notes, and snippets.

@johnakashx
johnakashx / install-AzCopy.sh
Created September 18, 2025 16:38 — forked from aessing/install-AzCopy.sh
Install AzCopy on Linux
#!/bin/bash
# =============================================================================
# Install AzCopy on Linux
# https://docs.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-v10
# https://github.com/Azure/azure-storage-azcopy
# -----------------------------------------------------------------------------
# Developer.......: Andre Essing (https://www.andre-essing.de/)
# (https://github.com/aessing)
# (https://twitter.com/aessing)
# (https://www.linkedin.com/in/aessing/)
@johnakashx
johnakashx / append_table.py
Created April 4, 2025 19:52 — forked from kevinjqliu/append_table.py
Write multiple parquet files using PyIceberg
import os
from timeit import default_timer as timer
import pyarrow as pa
from pyiceberg.catalog import load_catalog
from pyiceberg.utils.concurrent import ExecutorFactory
def _append():