Maxime Sabran
02/16/2023, 12:14 PMMatthieu Rousseau
02/16/2023, 1:04 PMpython main.py spec
) :
Traceback (most recent call last):
File "/Users/matrousseau/Programming/Python/beamy/airbyte/airbyte-integrations/connectors/source-netskope/.venv/lib/python3.10/site-packages/airbyte_cdk/sources/declarative/manifest_declarative_source.py", line 141, in _validate_source
validate(self._source_config, declarative_component_schema)
File "/Users/matrousseau/Programming/Python/beamy/airbyte/airbyte-integrations/connectors/source-netskope/.venv/lib/python3.10/site-packages/jsonschema/validators.py", line 934, in validate
raise error
jsonschema.exceptions.ValidationError: 'DpathExtractor' is not one of ['CustomRecordExtractor']
Failed validating 'enum' in schema[0]['properties']['type']:
{'enum': ['CustomRecordExtractor'], 'type': 'string'}
On instance['type']:
'DpathExtractor'
Do you have any information on this?Gunnar Lykins
02/16/2023, 2:24 PMDomenic
02/16/2023, 3:19 PMKyle Cheung
02/16/2023, 3:24 PMNULL
Dhruv Satish
02/16/2023, 3:55 PMgod830
02/16/2023, 4:09 PMAnchit
02/16/2023, 7:14 PMLucas Wiley
02/16/2023, 7:24 PMHarshil Dhariwal
02/16/2023, 9:04 PMDanny Steffy
02/16/2023, 9:38 PMGenerated legacy state for x streams
. Am I missing some sort of configuration to speed up the sync? I'm not sure what that log is denoting either. Thanks for the help!wp
02/16/2023, 9:56 PMisDataGolden
flag not turning true at all? I understand that the connector adds a 2 day lookback window to compensate for the data processing latency but on my daily syncs, isDataGolden
have not returned true on the past days and it goes on to sync new days and skip over the day with the data that is still isDataGolden = false
Sam Kmetz
02/16/2023, 9:58 PMJesse Myers
02/16/2023, 11:52 PMworker
service to the network in question, but the connector fails to establish a connection. I can see that the worker spins up a source and destination container how can i configure those to be attached to the network in question?Arik Elbag
02/17/2023, 12:24 AMMohamed Anas
02/17/2023, 3:00 AM#!/usr/bin/env bash
error_handler() {
echo "While trying to generate a connector, an error occurred on line $1 of generate.sh and the process aborted early. This is probably a bug."
}
trap 'error_handler $LINENO' ERR
set -e
# Ensure script always runs from this directory because thats how docker build contexts work
cd "$(dirname "${0}")" || exit 1
# Make sure docker is running before trying
if ! docker ps; then
echo "docker is not running, this script requires docker to be up"
echo "please start up the docker daemon!"
exit
fi
_UID=$(id -u)
_GID=$(id -g)
# Remove container if already exist
echo "Removing previous generator if it exists..."
docker container rm -f airbyte-connector-bootstrap >/dev/null 2>&1
# Build image for container from Dockerfile
# Specify the host system user UID and GID to chown the generated files to host system user.
# This is done because all generated files in container with mounted folders has root owner
echo "Building generator docker image..."
docker build --build-arg UID="$_UID" --build-arg GID="$_GID" . -t airbyte/connector-bootstrap
# Run the container and mount the airbyte folder
if [ $# -eq 2 ]; then
echo "2 arguments supplied: 1=$1 2=$2"
docker run --name airbyte-connector-bootstrap --user "$_UID:$_GID" -e HOME=/tmp -e package_desc="$1" -e package_name="$2" -v "$(pwd)/../../../.":/airbyte airbyte/connector-bootstrap
else
echo "Running generator..."
docker run --rm -it --name airbyte-connector-bootstrap --user "$_UID:$_GID" -e HOME=/tmp -v "$(pwd)/../../../.":/airbyte airbyte/connector-bootstrap
fi
echo "Finished running generator"
Arvind Pai
02/17/2023, 3:23 AMvismaya Kalaiselvan
02/17/2023, 6:01 AMMadhu Prabhakara
02/17/2023, 6:03 AMMadhu Prabhakara
02/17/2023, 6:04 AMMuhammad Imtiaz
02/17/2023, 6:11 AMI need help regarding parsing airbyte-worker logs using Fluentd. Logs are not in JSON format hence It requires lot of effort to parse them in fluentd.I've search a lil bit around how airbyte-worker produces logs, and it turns out that it primarily uses Logback (which is successor to Log4j) framework. I'm trying to find the logback.xml file which suppose to be present in
airbyte-config
directory, but I couldn't find it there. I wanted to see how can I format these logs in JSON format by changing the xml file.
Since I've deployed airbyte in K8S, so I'm really really interested if the above logging format is parameterized and I want to change them from .env
file. Though I've seen some of environment variables in .env file.
### LOGGING/MONITORING/TRACKING ###
TRACKING_STRATEGY=segment
JOB_ERROR_REPORTING_STRATEGY=logging
# Although not present as an env var, expected by Log4J configuration.
LOG_LEVEL=INFO
Thanks in advance!Ohad
02/17/2023, 6:32 AMnon-json response
. When I check the logs I see the error Server at /xxx.xxx.xxx.xxx:22 presented unverified EC key: SHA256:cl8s2xxxx
I can't find this key anywhere on my jump server, not sure of its source.
I'd appreciate any ideas/help with this 🙏
PS. Airbyte version is 0.40.25sam pai
02/17/2023, 6:44 AMLucio Melito
02/17/2023, 6:53 AMGeorge R
02/17/2023, 9:15 AMMark
02/17/2023, 12:42 PMuser
02/17/2023, 12:45 PMOliver Meyer
02/17/2023, 1:25 PMWalker Philips
02/17/2023, 4:07 PMChristina
02/17/2023, 5:04 PM