Skip to content

Commit

Permalink
Merge main into person/hduygu/confluence-reader-example
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Feb 2, 2024
2 parents 583e85a + 03dde45 commit 80c280a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions projects/vdk-core/src/vdk/api/plugin/plugin_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,7 @@ def pre_ingest_process(
target: Optional[str] = None,
collection_id: Optional[str] = None,
metadata: Optional[IngestionMetadata] = None,
method: Optional[str] = None,
) -> Tuple[List[Dict], Optional[IngestionMetadata]]:
"""
Do some processing on the ingestion payload before passing it to the
Expand All @@ -403,6 +404,7 @@ def pre_ingest_process(self,
target: Optional[str],
collection_id: Optional[str],
metadata: Optional[IngestionMetadata],
method: Optional[str],
) -> Tuple[List[Dict], Optional[IngestionMetadata]]:
# Ensure all values in the payload are strings
processed_payload = \
Expand Down Expand Up @@ -455,6 +457,7 @@ def pre_ingest_process(self,
target: Optional[str],
collection_id: Optional[str],
metadata: Optional[IngestionMetadata],
method: Optional[str],
) -> Tuple[List[Dict], Optional[IngestionMetadata]]:
if metadata:
metadata[IIngesterPlugin.UPDATED_DYNAMIC_PARAMS] = {
Expand All @@ -468,6 +471,23 @@ def pre_ingest_process(self,
return payload, metadata
NOTE: A read-only parameter. Whatever modifications are done to
this object, once returned, it is treated as a new object.
:param method: string
(Optional) A string indicating what ingestion method will be used to
ingest the passed payload. This identifier can be used by the
pre-processor in case some special behavior is necessary for specific
ingestion methods. For example:
.. code-block:: python
def pre_ingest_process(self,
payload: List[dict],
destination_table: Optional[str],
target: Optional[str],
collection_id: Optional[str],
metadata: Optional[IngestionMetadata],
method: Optional[str],
) -> Tuple[List[Dict], Optional[IngestionMetadata]]:
if method == "http":
# do something only for http ingestion
return payload, metadata
:return: Tuple[List[Dict], Optional[IngestionMetadata]], a tuple
containing the processed payload objects and an
IngestionMetadata object with ingestion metadata information.
Expand All @@ -491,6 +511,7 @@ def post_ingest_process(
collection_id: Optional[str] = None,
metadata: Optional[IngestionMetadata] = None,
exception: Optional[Exception] = None,
method: Optional[str] = None,
) -> Optional[IngestionMetadata]:
"""
Do post-ingestion processing of the ingestion payload
Expand All @@ -508,6 +529,7 @@ def post_ingest_process(
collection_id: Optional[str],
metadata: Optional[IngestionMetadata],
exception: Optional[Exception],
method: Optional[str],
) -> Optional[IngestionMetadata]:
# Prepare telemetry
Expand Down Expand Up @@ -567,6 +589,11 @@ def post_ingest_process(
A caught exception (if any) encountered while ingesting data.
NOTE: A read-only parameter. Whatever modifications are done to
this object, once returned, it is treated as a new object.
:param method: string
(Optional) A string indicating what ingestion method was used to
ingest the passed payload. This identifier can be used by the
post-processor in case some special behavior is necessary for specific
ingestion methods.
:return: Optional[IngestionMetadata], an IngestionMetadata object
with information about this and possibly the previous processes (
pre-ingestion, ingestion, post-ingestion).
Expand Down

0 comments on commit 80c280a

Please sign in to comment.