graflo.hq¶
High-level orchestration modules for graflo.
This package provides high-level orchestration classes that coordinate multiple components for graph database operations.
CastBatchResult
¶
Bases: BaseModel
Outcome of casting a batch through a resource (possibly with skipped documents).
Source code in graflo/hq/ingestion_parameters.py
Caster
¶
Main class for data casting and ingestion.
This class handles the process of casting data into graph structures and ingesting them into the database. It supports batch processing, parallel execution, and various data formats.
Attributes:
| Name | Type | Description |
|---|---|---|
schema |
Schema configuration for the graph |
|
ingestion_params |
IngestionParams instance controlling ingestion behavior |
Source code in graflo/hq/caster.py
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 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 | |
__init__(schema, ingestion_model, ingestion_params=None, **kwargs)
¶
Initialize the caster with schema and configuration.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
schema
|
Schema
|
Schema configuration for the graph |
required |
ingestion_params
|
IngestionParams | None
|
IngestionParams instance with ingestion configuration. If None, creates IngestionParams from kwargs or uses defaults |
None
|
**kwargs
|
Additional configuration options (for backward compatibility): - clear_data: Whether to clear existing data before ingestion - n_cores: Number of CPU cores/threads to use for parallel processing - max_items: Maximum number of items to process - batch_size: Size of batches for processing - dry: Whether to perform a dry run |
{}
|
Source code in graflo/hq/caster.py
cast_normal_resource(data, resource_name=None)
async
¶
Cast data into a graph container using a resource.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
Iterable of documents to cast |
required | |
resource_name
|
str | None
|
Optional name of the resource to use |
None
|
Returns:
| Type | Description |
|---|---|
CastBatchResult
|
CastBatchResult with graph and any per-document failures (empty when |
CastBatchResult
|
|
Source code in graflo/hq/caster.py
ingest(target_db_config, bindings=None, ingestion_params=None, connection_provider=None)
¶
Ingest data into the graph database.
This is the main ingestion method that takes: - Schema: Graph structure (already set in Caster) - OutputConfig: Target graph database configuration - Bindings: Mapping of resources to physical data sources - IngestionParams: Parameters controlling the ingestion process
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
target_db_config
|
DBConfig
|
Target database connection configuration (for writing graph) |
required |
bindings
|
Bindings | None
|
Bindings instance mapping resources to data sources If None, defaults to empty Bindings() |
None
|
ingestion_params
|
IngestionParams | None
|
IngestionParams instance with ingestion configuration. If None, uses default IngestionParams() |
None
|
Source code in graflo/hq/caster.py
ingest_data_sources(data_source_registry, conn_conf, ingestion_params=None, allowed_resource_names=None, bindings=None, connection_provider=None)
async
¶
Ingest data from data sources in a registry.
Note: Schema definition should be handled separately via GraphEngine.define_schema() before calling this method.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data_source_registry
|
DataSourceRegistry
|
Registry containing data sources mapped to resources |
required |
conn_conf
|
DBConfig
|
Database connection configuration |
required |
ingestion_params
|
IngestionParams | None
|
IngestionParams instance with ingestion configuration. If None, uses default IngestionParams() |
None
|
bindings
|
Bindings | None
|
Optional manifest bindings (used to resolve S3 staging proxies). |
None
|
connection_provider
|
ConnectionProvider | None
|
Runtime credential provider for source connectors and S3. |
None
|
Source code in graflo/hq/caster.py
normalize_resource(data, columns=None)
staticmethod
¶
Normalize resource data into a list of dictionaries.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
DataFrame | list[list] | list[dict]
|
Data to normalize (DataFrame, list of lists, or list of dicts) |
required |
columns
|
list[str] | None
|
Optional column names for list data |
None
|
Returns:
| Type | Description |
|---|---|
list[dict]
|
list[dict]: Normalized data as list of dictionaries |
Raises:
| Type | Description |
|---|---|
ValueError
|
If columns is not provided for list data |
Source code in graflo/hq/caster.py
process_batch(batch, resource_name, conn_conf=None)
async
¶
Process a batch of data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
batch
|
Batch of data to process |
required | |
resource_name
|
str | None
|
Optional name of the resource to use |
required |
conn_conf
|
None | DBConfig
|
Optional database connection configuration |
None
|
Source code in graflo/hq/caster.py
process_data_source(data_source, resource_name=None, conn_conf=None)
async
¶
Process a data source.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data_source
|
AbstractDataSource
|
Data source to process |
required |
resource_name
|
str | None
|
Optional name of the resource (overrides data_source.resource_name) |
None
|
conn_conf
|
None | DBConfig
|
Optional database connection configuration |
None
|
Source code in graflo/hq/caster.py
process_resource(resource_instance, resource_name, conn_conf=None, **kwargs)
async
¶
Process a resource instance from configuration or direct data.
This method accepts either: 1. A configuration dictionary with 'source_type' and data source parameters 2. A file path (Path or str) - creates FileDataSource 3. In-memory data (list[dict], list[list], or pd.DataFrame) - creates InMemoryDataSource
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
resource_instance
|
Path | str | list[dict] | list[list] | DataFrame | dict[str, Any]
|
Configuration dict, file path, or in-memory data. Configuration dict format: - {"source_type": "file", "path": "data.json"} - {"source_type": "api", "config": {"url": "https://..."}} - {"source_type": "sql", "config": {"connection_string": "...", "query": "..."}} - {"source_type": "in_memory", "data": [...]} |
required |
resource_name
|
str | None
|
Optional name of the resource |
required |
conn_conf
|
None | DBConfig
|
Optional database connection configuration |
None
|
**kwargs
|
Additional arguments passed to data source creation (e.g., columns for list[list], encoding for files) |
{}
|
Source code in graflo/hq/caster.py
process_with_queue(tasks, conn_conf=None)
async
¶
Process tasks from a queue.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tasks
|
Queue
|
Async queue of tasks to process |
required |
conn_conf
|
DBConfig | None
|
Optional database connection configuration |
None
|
Source code in graflo/hq/caster.py
ConnectionProvider
¶
Bases: Protocol
Resolve runtime source connection/auth configuration.
New connector-centric resolution (preferred):
- :meth:get_generalized_conn_config takes a connector and returns the
generalized runtime config.
Legacy helpers (kept for backwards compatibility):
- :meth:get_postgres_config
- :meth:get_sparql_auth
Source code in graflo/hq/connection_provider.py
DBWriter
¶
Push :class:GraphContainer data to the target graph database.
The orchestrator (e.g. :class:Caster) must initialize schema and
ingestion_model for the target database (db_profile.db_flavor,
:meth:Schema.finish_init, :meth:IngestionModel.finish_init) before
calling :meth:write; this class does not repeat that work on every batch.
Attributes:
| Name | Type | Description |
|---|---|---|
schema |
Schema configuration providing vertex/edge metadata. |
|
dry |
When |
|
max_concurrent |
Upper bound on concurrent DB operations (semaphore size). |
Source code in graflo/hq/db_writer.py
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 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 357 358 359 360 361 362 363 364 365 366 367 368 | |
write(gc, conn_conf, resource_name, *, bulk_session_id=None)
async
¶
Push gc to the database (vertices, extra weights, then edges).
When bulk_session_id is provided, appends rows using the connection's native bulk interface instead of using per-record writes.
.. note::
gc is mutated in-place for the REST path: blank-vertex keys are
updated and blank edges are extended after the vertex round-trip.
The bulk path does not support blank vertices or extra_weights.
Source code in graflo/hq/db_writer.py
DocCastFailure
¶
Bases: BaseModel
Structured record for one source document that failed during resource casting.
Source code in graflo/hq/ingestion_parameters.py
DocErrorBudgetExceeded
¶
Bases: RuntimeError
Raised when total document cast failures exceed IngestionParams.max_doc_errors.
Source code in graflo/hq/ingestion_parameters.py
DocErrorSink
¶
Bases: Protocol
Append structured cast failures (e.g. JSONL or compressed JSONL).
Source code in graflo/hq/doc_error_sink.py
EmptyConnectionProvider
¶
No-op provider when no source credentials/config are configured.
Source code in graflo/hq/connection_provider.py
GraphEngine
¶
Orchestrator for graph database operations.
GraphEngine coordinates schema inference, connector creation, schema definition, and data ingestion, providing a unified interface for working with graph databases.
The typical workflow is: 1. infer_schema() - Infer schema from source database (if possible) 2. create_bindings() - Create bindings mapping resources to data sources (if possible) 3. define_schema() - Define schema in target database (if possible and necessary) 4. ingest() - Ingest data into the target database
Attributes:
| Name | Type | Description |
|---|---|---|
target_db_flavor |
Target database flavor for schema sanitization |
|
resource_mapper |
ResourceMapper instance for connector creation |
Source code in graflo/hq/graph_engine.py
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 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 | |
__init__(target_db_flavor=DBType.ARANGO)
¶
Initialize the GraphEngine.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
target_db_flavor
|
DBType
|
Target database flavor for schema sanitization |
ARANGO
|
Source code in graflo/hq/graph_engine.py
create_bindings(postgres_config, schema_name=None, datetime_columns=None, type_lookup_overrides=None, include_raw_tables=False)
¶
Create Bindings from PostgreSQL tables.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
postgres_config
|
PostgresConfig
|
PostgresConfig instance |
required |
schema_name
|
str | None
|
Schema name to introspect |
None
|
datetime_columns
|
dict[str, str] | None
|
Optional mapping of resource/table name to datetime column name for date-range filtering (sets date_field per TableConnector). Use with IngestionParams.datetime_after / datetime_before. |
None
|
type_lookup_overrides
|
dict[str, dict] | None
|
Optional mapping of table name to type_lookup spec for edge tables where source/target types come from a lookup table. Each value: {table, identity, type_column, source, target, relation?}. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
Bindings |
Bindings
|
Bindings object with TableConnector instances for all tables |
Source code in graflo/hq/graph_engine.py
create_bindings_from_rdf(source, *, endpoint_url=None, graph_uri=None, sparql_config=None)
¶
Create :class:Bindings from an RDF ontology.
One :class:SparqlConnector is created per owl:Class found in the
ontology.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
source
|
str | Path
|
Path to an RDF file or base URL. |
required |
endpoint_url
|
str | None
|
SPARQL endpoint for the data (ABox). |
None
|
graph_uri
|
str | None
|
Named graph containing the data. |
None
|
sparql_config
|
SparqlEndpointConfig | None
|
Optional :class: |
None
|
Returns:
| Type | Description |
|---|---|
Bindings
|
Bindings with SPARQL connectors for each class. |
Source code in graflo/hq/graph_engine.py
define_and_ingest(manifest, target_db_config, ingestion_params=None, connection_provider=None, recreate_schema=None, clear_data=None, graph_target_namespace=None)
¶
Define schema and ingest data into the graph database in one operation.
This is a convenience method that chains define_schema() and ingest(). It's the recommended way to set up and populate a graph database.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
manifest
|
GraphManifest
|
GraphManifest with schema/ingestion/bindings blocks. |
required |
target_db_config
|
DBConfig
|
Target database connection configuration |
required |
ingestion_params
|
IngestionParams | None
|
IngestionParams instance with ingestion configuration. If None, uses default IngestionParams() |
None
|
recreate_schema
|
bool | None
|
If True, drop existing schema and define new one. If None, defaults to False. When False and schema already exists, define_schema raises SchemaExistsError and the script halts. |
None
|
clear_data
|
bool | None
|
If True, remove existing data before ingestion (schema unchanged). If None, uses ingestion_params.clear_data. |
None
|
graph_target_namespace
|
str | None
|
Optional target graph/database/space name; passed
to both |
None
|
Source code in graflo/hq/graph_engine.py
define_schema(manifest, target_db_config, recreate_schema=False, graph_target_namespace=None)
¶
Define schema in the target database.
This method handles database/schema creation and initialization. Some databases don't require explicit schema definition (e.g., Neo4j), but this method ensures the database is properly initialized.
If the schema/graph already exists and recreate_schema is False (default), init_db raises SchemaExistsError and the script halts.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
manifest
|
GraphManifest
|
GraphManifest with schema block. |
required |
target_db_config
|
DBConfig
|
Target database connection configuration |
required |
recreate_schema
|
bool
|
If True, drop existing schema and define new one. If False and schema/graph already exists, raises SchemaExistsError. |
False
|
graph_target_namespace
|
str | None
|
Optional target graph/database/space name (e.g. temp
schema). Overrides |
None
|
Source code in graflo/hq/graph_engine.py
infer_manifest(postgres_config, schema_name=None, fuzzy_threshold=0.8, discard_disconnected_vertices=False)
¶
Infer a GraphManifest from PostgreSQL database.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
postgres_config
|
PostgresConfig
|
PostgresConfig instance |
required |
schema_name
|
str | None
|
Schema name to introspect (defaults to config schema_name or 'public') |
None
|
fuzzy_threshold
|
float
|
Similarity threshold for fuzzy matching (0.0 to 1.0, default 0.8) |
0.8
|
discard_disconnected_vertices
|
bool
|
If True, remove vertices that do not take part in any relation (and resources/actors that reference them). Default False. |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
GraphManifest |
GraphManifest
|
Inferred manifest with schema, ingestion model, and bindings. |
Source code in graflo/hq/graph_engine.py
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 | |
infer_schema_from_rdf(source, *, endpoint_url=None, graph_uri=None, schema_name=None)
¶
Infer a graflo Schema from an RDF / OWL ontology.
Reads the TBox (class and property declarations) and produces
vertices (from owl:Class), fields (from owl:DatatypeProperty),
and edges (from owl:ObjectProperty with domain/range).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
source
|
str | Path
|
Path to an RDF file (e.g. |
required |
endpoint_url
|
str | None
|
Optional SPARQL endpoint to CONSTRUCT the ontology from. |
None
|
graph_uri
|
str | None
|
Named graph containing the ontology. |
None
|
schema_name
|
str | None
|
Name for the resulting schema. |
None
|
Returns:
| Type | Description |
|---|---|
tuple[Schema, IngestionModel]
|
tuple[Schema, IngestionModel]: fully initialised schema and ingestion model. |
Source code in graflo/hq/graph_engine.py
ingest(manifest, target_db_config, ingestion_params=None, connection_provider=None, graph_target_namespace=None)
¶
Ingest data into the graph database.
If ingestion_params.clear_data is True, removes all existing data (without touching the schema) before ingestion.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
manifest
|
GraphManifest
|
GraphManifest with schema/ingestion/bindings blocks. |
required |
target_db_config
|
DBConfig
|
Target database connection configuration |
required |
ingestion_params
|
IngestionParams | None
|
IngestionParams instance with ingestion configuration. If None, uses default IngestionParams() |
None
|
graph_target_namespace
|
str | None
|
Same semantics as |
None
|
Source code in graflo/hq/graph_engine.py
introspect(postgres_config, schema_name=None, include_raw_tables=True)
¶
Introspect PostgreSQL schema and return a serializable result.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
postgres_config
|
PostgresConfig
|
PostgresConfig instance |
required |
schema_name
|
str | None
|
Schema name to introspect (defaults to config schema_name or 'public') |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
SchemaIntrospectionResult |
SchemaIntrospectionResult
|
Introspection result (vertex_tables, edge_tables, raw_tables, schema_name) suitable for serialization. |
Source code in graflo/hq/graph_engine.py
InMemoryConnectionProvider
¶
Bases: BaseModel
Simple in-memory provider for proxy-based generalized configs.
Supports two wiring modes:
- New: proxy_by_connector_hash + configs_by_proxy
- Legacy: per-resource maps (postgres_by_resource / sparql_by_resource)
Source code in graflo/hq/connection_provider.py
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 | |
bind_from_bindings(*, bindings)
¶
Populate proxy_by_connector_hash from the contract bindings.
Source code in graflo/hq/connection_provider.py
bind_single_config_for_bindings(*, bindings, conn_proxy, config)
¶
Bind one generalized config to all connectors in bindings.
This is intended for the common case where a single source DB (or single generalized API endpoint) supplies all SQL/SPARQL connectors in the manifest.
Raises:
| Type | Description |
|---|---|
ValueError
|
if bindings use multiple different |
Source code in graflo/hq/connection_provider.py
register_s3_config(*, conn_proxy, config)
¶
Store S3 staging credentials/config under conn_proxy.
IngestionParams
¶
Bases: BaseModel
Parameters for controlling the ingestion process.
max_items caps how many source items (rows, JSON objects, grouped
RDF subjects, …) are read per resource run. It maps to
AbstractDataSource.iter_batches(..., limit=...). batch_size is only
the maximum number of items per yielded batch, not a cap on total volume.
Source code in graflo/hq/ingestion_parameters.py
JsonlGzDocErrorSink
¶
Append gzip-compressed JSON lines (one member per write batch).
Source code in graflo/hq/doc_error_sink.py
PostgresGeneralizedConnConfig
¶
Bases: BaseModel
Generalized runtime config variant for SQL/Postgres connections.
Source code in graflo/hq/connection_provider.py
RegistryBuilder
¶
Create a :class:DataSourceRegistry from :class:Bindings.
Attributes:
| Name | Type | Description |
|---|---|---|
schema |
Schema providing the resource definitions and vertex/edge config. |
Source code in graflo/hq/registry_builder.py
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 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 | |
build(bindings, ingestion_params, connection_provider=None, *, strict=False)
¶
Return a populated :class:DataSourceRegistry.
For each ingestion resource, registers every bound connector (same resource may have multiple physical sources).
Source code in graflo/hq/registry_builder.py
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 | |
discover_files(fpath, connector, limit_files=None)
staticmethod
¶
Discover files matching connector in a directory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
fpath
|
Path | str
|
Directory to search in. |
required |
connector
|
FileConnector
|
Connector used to match files. |
required |
limit_files
|
int | None
|
Optional cap on the number of files returned. |
None
|
Returns:
| Type | Description |
|---|---|
list[Path]
|
Matching file paths. |
Source code in graflo/hq/registry_builder.py
ResourceMapper
¶
Maps different data sources to Bindings for graph ingestion.
This class provides methods to create Bindings from various data sources, enabling a unified interface for connector creation regardless of the source type.
Source code in graflo/hq/resource_mapper.py
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 139 140 141 142 143 144 | |
create_bindings_with_provider_from_introspection(introspection_result, conn, schema_name=None, datetime_columns=None, type_lookup_overrides=None)
¶
Create bindings/provider from a precomputed introspection result.
Source code in graflo/hq/resource_mapper.py
create_bindings_with_provider_from_postgres(conn, schema_name=None, datetime_columns=None, type_lookup_overrides=None, include_raw_tables=False)
¶
Create Bindings from PostgreSQL tables.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
conn
|
PostgresConnection
|
PostgresConnection instance |
required |
schema_name
|
str | None
|
Schema name to introspect |
None
|
datetime_columns
|
dict[str, str] | None
|
Optional mapping of resource/table name to datetime column name for date-range filtering (sets date_field on each TableConnector). Used with IngestionParams.datetime_after / datetime_before. |
None
|
type_lookup_overrides
|
dict[str, dict] | None
|
Optional mapping of table name to type_lookup spec for edge tables where source/target types come from a lookup table. Each value is a dict with: table, identity, type_column, source, target, relation (optional). |
None
|
Returns:
| Type | Description |
|---|---|
tuple[Bindings, InMemoryConnectionProvider]
|
Tuple of: - Bindings object with TableConnector instances for all tables - InMemoryConnectionProvider containing connector->PostgresConfig mappings |
Source code in graflo/hq/resource_mapper.py
SQLInferenceManager
¶
Inference manager for PostgreSQL sources.
This class only performs introspection / schema inference / resource
creation. Sanitization for a target DB flavor (reserved words, TigerGraph
identity normalization, etc.) is the caller's responsibility and should be
applied a posteriori via
:class:graflo.hq.sanitizer.Sanitizer.
Source code in graflo/hq/sql_inferencer.py
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 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 | |
__init__(conn, target_db_flavor=DBType.ARANGO, fuzzy_threshold=0.8)
¶
Initialize the PostgreSQL inference manager.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
conn
|
PostgresConnection
|
PostgresConnection instance |
required |
target_db_flavor
|
DBType
|
Target database flavor (used for type mapping during inference; does NOT trigger sanitization). |
ARANGO
|
fuzzy_threshold
|
float
|
Similarity threshold for fuzzy matching (0.0 to 1.0, default 0.8) |
0.8
|
Source code in graflo/hq/sql_inferencer.py
create_resources(introspection_result, schema)
¶
Create Resources from PostgreSQL introspection result.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
introspection_result
|
SchemaIntrospectionResult from PostgreSQL |
required | |
schema
|
Schema
|
Existing Schema object |
required |
Returns:
| Type | Description |
|---|---|
list[Resource]
|
list[Resource]: List of Resources for PostgreSQL tables |
Source code in graflo/hq/sql_inferencer.py
create_resources_for_schema(schema, schema_name=None)
¶
Create Resources from source for an existing schema.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
schema
|
Schema
|
Existing Schema object |
required |
schema_name
|
str | None
|
Schema name to introspect (source-specific) |
None
|
Returns:
| Type | Description |
|---|---|
list[Resource]
|
list[Resource]: List of Resources for the source |
Source code in graflo/hq/sql_inferencer.py
infer_artifacts(schema_name=None)
¶
Infer schema/resources from a single introspection pass.
Returns:
| Name | Type | Description |
|---|---|---|
SQLInferenceArtifacts |
SQLInferenceArtifacts
|
introspection + schema + ingestion model tuple. The output is NOT sanitized for the target DB flavor. |
Source code in graflo/hq/sql_inferencer.py
infer_complete_schema(schema_name=None)
¶
Infer a complete schema and ingestion model from source.
This is a convenience method that: 1. Introspects the source schema 2. Infers the graflo Schema 3. Creates resources and finishes ingestion init
No sanitization is performed; apply :class:graflo.hq.sanitizer.Sanitizer
a posteriori to the returned manifest if you need it.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
schema_name
|
str | None
|
Schema name to introspect (source-specific) |
None
|
Returns:
| Type | Description |
|---|---|
tuple[Schema, IngestionModel]
|
tuple[Schema, IngestionModel]: Complete schema and ingestion model |
Source code in graflo/hq/sql_inferencer.py
infer_schema(introspection_result, schema_name=None)
¶
Infer graflo Schema from PostgreSQL introspection result.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
introspection_result
|
SchemaIntrospectionResult from PostgreSQL |
required | |
schema_name
|
str | None
|
Schema name (optional, may be inferred from result) |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
Schema |
Schema
|
Inferred schema with vertices and edges |
Source code in graflo/hq/sql_inferencer.py
introspect(schema_name=None, include_raw_tables=False)
¶
Introspect PostgreSQL schema.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
schema_name
|
str | None
|
Schema name to introspect |
None
|
include_raw_tables
|
bool
|
Whether to build sampled per-column raw table metadata. Defaults to False for performance (binding/schema inference does not require it). |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
SchemaIntrospectionResult |
SchemaIntrospectionResult
|
PostgreSQL schema introspection result |
Source code in graflo/hq/sql_inferencer.py
Sanitizer
¶
DB-flavor-aware orchestrator for manifest sanitization.
The class encodes the per-flavor policy ("which evolution ops sanitize a
manifest for db_flavor") and applies them in place. Callers that want a
different sanitization recipe can either subclass and override
:meth:build_ops or build ops directly via
:mod:graflo.architecture.evolution.
Source code in graflo/hq/sanitizer.py
__init__(db_flavor)
¶
build_ops(manifest, *, reserved_words=None)
¶
Return the ordered list of evolution ops that sanitize manifest.
Today the list collapses to [SanitizeOp(db_flavor=...)]; exposing
it as a list keeps the door open for future per-flavor composition
(e.g. flavor-specific identity-normalization variants, future
rename-relation ops).
Source code in graflo/hq/sanitizer.py
sanitize_manifest(manifest)
¶
Mutate manifest in place per :meth:build_ops and return it.
Returns the same manifest object so callers can chain or simply assert that the in-place result is the original input.
Source code in graflo/hq/sanitizer.py
SparqlAuth
¶
SparqlGeneralizedConnConfig
¶
Bases: BaseModel
Generalized runtime config variant for SPARQL endpoint connections.
Source code in graflo/hq/connection_provider.py
failure_sinks_from_ingestion_params(params)
¶
Build file sinks from :class:~graflo.hq.ingestion_parameters.IngestionParams.