Connection
geneva.db.Connection
Bases: DBConnection
Geneva Connection.
Source code in geneva/db.py
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 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 |
|
jobs
Geneva Jobs API
Example
# List all jobs
>>> conn = connect("db://mydb")
>>> jobs = conn.jobs.list(table="mytable",
limit=500,
filter="created_at > '2021-01-01'")
# Start a new job
>>> conn.jobs.start(table="mytable", column="virtual_col")
close
table_names
List all available tables and views.
open_table
open_table(
name: str,
*,
storage_options: dict[str, str] | None = None,
index_cache_size: int | None = None,
version: int | None = None,
) -> Table
Open a Lance Table.
Parameters:
-
name
(str
) –Name of the table.
-
storage_options
(dict[str, str] | None
, default:None
) –Additional options for the storage backend. Options already set on the connection will be inherited by the table, but can be overridden here. See available options at https://lancedb.github.io/lancedb/guides/storage/
Source code in geneva/db.py
create_table
create_table(
name: str,
data: DATA | None = None,
schema: Schema | LanceModel | None = None,
mode: str = "create",
exist_ok: bool = False,
on_bad_vectors: str = "error",
fill_value: float = 0.0,
*,
storage_options: dict[str, str] | None = None,
**kwargs,
) -> Table
Create a Table in the lake
Parameters:
-
name
(str
) –The name of the table
-
data
(DATA | None
, default:None
) –User must provide at least one of
data
orschema
. Acceptable types are:- list-of-dict
- pandas.DataFrame
- pyarrow.Table or pyarrow.RecordBatch
-
schema
(Schema | LanceModel | None
, default:None
) –Acceptable types are:
- pyarrow.Schema
- [LanceModel][lancedb.pydantic.LanceModel]
-
mode
(str
, default:'create'
) –The mode to use when creating the table. Can be either "create" or "overwrite". By default, if the table already exists, an exception is raised. If you want to overwrite the table, use mode="overwrite".
-
exist_ok
(bool
, default:False
) –If a table by the same name already exists, then raise an exception if exist_ok=False. If exist_ok=True, then open the existing table; it will not add the provided data but will validate against any schema that's specified.
-
on_bad_vectors
(str
, default:'error'
) –What to do if any of the vectors are not the same size or contain NaNs. One of "error", "drop", "fill".
Source code in geneva/db.py
create_view
create_view(
name: str, query: str, materialized: bool = False
) -> Table
Create a View from a Query.
Parameters:
-
name
(str
) –Name of the view.
-
query
(str
) –SQL query to create the view.
-
materialized
(bool
, default:False
) –If True, the view is materialized.
Source code in geneva/db.py
create_materialized_view
create_materialized_view(
name: str,
query: GenevaQueryBuilder,
with_no_data: bool = True,
) -> Table
Create a materialized view
Parameters:
-
name
(str
) –Name of the materialized view.
-
query
(GenevaQueryBuilder
) –Query to create the view.
-
with_no_data
(bool
, default:True
) –If True, the view is materialized, if false it is ready for refresh.
Source code in geneva/db.py
drop_view
drop_view(name: str) -> Table
drop_table
sql
sql(query: str) -> Table
Execute a raw SQL query.
It uses the Flight SQL engine to execute the query.
Parameters:
-
query
(str
) –SQL query to execute
Returns:
-
Table
–Result of the query in a
pyarrow.Table
TODO
- Support pagination
- Support query parameters