I’m trying to import events via parquet files on s3. Trying to keep thing super simple but still having issues:
- Should I be able to see a preview here? It must be doing some parsing because the config converter can identify the columns:
- Given the 5 columns, I’m using the following conversion but getting errors for the files:
{
"converterConfig": {
"fileType": "parquet",
"compressionType": "none",
"convertToAmplitudeFunc": {
"event_type": "type",
"ts": "timestamp",
"profile_id": "profileId",
"device_id": "deviceId",
"kafka_ts": "kafka_timestamp"
}
},
"keyValidatorConfig": {
"filterPattern": ".*\\.parquet"
}
}
What am I missing/misunderstanding? I also have error logs but I’m having trouble following what they mean.