-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathregistry.json
More file actions
138 lines (138 loc) · 6.3 KB
/
registry.json
File metadata and controls
138 lines (138 loc) · 6.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
[
{
"title": "Connect to MySQL with ADBC in Python",
"path": "notebooks/connect-to-mysql-with-adbc-in-python.ipynb",
"date": "2026-03-09",
"authors": ["emil-sadek"],
"description": "Connect to MySQL from Python using ADBC and Apache Arrow for efficient columnar data access, queries, and bulk ingestion.",
"categories": ["Database Connections"]
},
{
"title": "Connect to MariaDB with ADBC in Python",
"path": "notebooks/connect-to-mariadb-with-adbc-in-python.ipynb",
"date": "2026-03-09",
"authors": ["emil-sadek"],
"description": "Connect to MariaDB from Python using ADBC and Apache Arrow for efficient columnar data access, queries, and bulk ingestion.",
"categories": ["Database Connections"]
},
{
"title": "Connect to TiDB with ADBC in Python",
"path": "notebooks/connect-to-tidb-with-adbc-in-python.ipynb",
"date": "2026-03-09",
"authors": ["emil-sadek"],
"description": "Connect to TiDB from Python using ADBC and Apache Arrow for efficient columnar data access, queries, and bulk ingestion.",
"categories": ["Database Connections"]
},
{
"title": "Connect to PostgreSQL with ADBC in Python",
"path": "notebooks/connect-to-postgresql-with-adbc-in-python.ipynb",
"date": "2026-03-09",
"authors": ["emil-sadek"],
"description": "Connect to PostgreSQL from Python using ADBC and Apache Arrow for efficient columnar data access, queries, and bulk ingestion.",
"categories": ["Database Connections"]
},
{
"title": "Connect to Citus with ADBC in Python",
"path": "notebooks/connect-to-citus-with-adbc-in-python.ipynb",
"date": "2026-03-09",
"authors": ["emil-sadek"],
"description": "Connect to Citus from Python using ADBC and Apache Arrow for efficient columnar data access, queries, and bulk ingestion.",
"categories": ["Database Connections"]
},
{
"title": "Connect to ParadeDB with ADBC in Python",
"path": "notebooks/connect-to-paradedb-with-adbc-in-python.ipynb",
"date": "2026-03-09",
"authors": ["emil-sadek"],
"description": "Connect to ParadeDB from Python using ADBC and Apache Arrow for efficient columnar data access, queries, and bulk ingestion.",
"categories": ["Database Connections"]
},
{
"title": "Connect to TimescaleDB with ADBC in Python",
"path": "notebooks/connect-to-timescaledb-with-adbc-in-python.ipynb",
"date": "2026-03-09",
"authors": ["emil-sadek"],
"description": "Connect to TimescaleDB from Python using ADBC and Apache Arrow for efficient columnar data access, queries, and bulk ingestion.",
"categories": ["Database Connections"]
},
{
"title": "Connect to DuckDB with ADBC in Python",
"path": "notebooks/connect-to-duckdb-with-adbc-in-python.ipynb",
"date": "2026-03-09",
"authors": ["emil-sadek"],
"description": "Connect to DuckDB from Python using ADBC and Apache Arrow for efficient columnar data access, queries, and bulk ingestion.",
"categories": ["Database Connections"]
},
{
"title": "Fast PostgreSQL Data Loading with dlt and ADBC",
"path": "notebooks/fast-postgresql-data-loading-with-dlt-and-adbc.ipynb",
"date": "2026-03-10",
"authors": ["emil-sadek"],
"description": "Load data into PostgreSQL up to 100x faster using dlt with Parquet and ADBC for high-performance bulk ingestion.",
"categories": ["Data Loading"]
},
{
"title": "Fast MySQL Data Loading with dlt and ADBC",
"path": "notebooks/fast-mysql-data-loading-with-dlt-and-adbc.ipynb",
"date": "2026-03-10",
"authors": ["emil-sadek"],
"description": "Load data into MySQL up to 100x faster using dlt with Parquet and ADBC for high-performance bulk ingestion.",
"categories": ["Data Loading"]
},
{
"title": "Ingest Parquet Data into MariaDB with ADBC",
"path": "notebooks/ingest-parquet-data-into-mariadb-with-adbc.ipynb",
"date": "2026-03-12",
"authors": ["emil-sadek"],
"description": "Ingest Parquet files into MariaDB efficiently using ADBC and Apache Arrow for fast columnar bulk ingestion.",
"categories": ["Data Loading"]
},
{
"title": "Connect to ClickHouse with ADBC in Python",
"path": "notebooks/connect-to-clickhouse-with-adbc-in-python.ipynb",
"date": "2026-03-24",
"authors": ["emil-sadek"],
"description": "Connect to ClickHouse from Python using ADBC and Apache Arrow for efficient columnar data access and queries.",
"categories": ["Database Connections"]
},
{
"title": "Connect to DuckLake with ADBC in Python",
"path": "notebooks/connect-to-ducklake-with-adbc-in-python.ipynb",
"date": "2026-03-25",
"authors": ["emil-sadek"],
"description": "Connect to DuckLake from Python using ADBC and Apache Arrow for efficient columnar data access, queries, and bulk ingestion.",
"categories": ["Database Connections"]
},
{
"title": "Exploratory Data Analysis with PyArrow",
"path": "notebooks/exploratory-data-analysis-with-pyarrow.ipynb",
"date": "2026-03-31",
"authors": ["emil-sadek"],
"description": "Perform exploratory data analysis on the Palmer Penguins dataset using PyArrow compute functions for efficient columnar data processing.",
"categories": ["Data Analysis"]
},
{
"title": "Reduce Data Size with Arrow IPC Encodings and Compression",
"path": "notebooks/reduce-data-size-with-arrow-ipc-encodings-and-compression.ipynb",
"date": "2026-04-07",
"authors": ["ian-cook"],
"description": "Convert a CSV file into a compact Arrow IPC file using run-end encoding, dictionary encoding, and zstd compression to dramatically reduce file size.",
"categories": ["Data Processing"]
},
{
"title": "Vortex and ADBC Integration",
"path": "notebooks/vortex-and-adbc-integration.ipynb",
"date": "2026-04-10",
"authors": ["emil-sadek"],
"description": "Read and write Vortex files using ADBC and Apache Arrow for efficient columnar data exchange with databases.",
"categories": ["Data Processing"]
},
{
"title": "Use ADBC Connection Profiles in Python",
"path": "notebooks/use-adbc-connection-profiles-in-python.ipynb",
"date": "2026-04-15",
"authors": ["ian-cook"],
"description": "Define reusable, named connection configurations in TOML files and use them to connect to databases with ADBC, just like ODBC DSNs.",
"categories": ["Database Connections"]
}
]