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:
{<br /> "converterConfig": {<br /> "fileType": "parquet",<br /> "compressionType": "none",<br /> "convertToAmplitudeFunc": {<br /> "event_type": "type",<br /> "ts": "timestamp",<br /> "profile_id": "profileId",<br /> "device_id": "deviceId",<br /> "kafka_ts": "kafka_timestamp"<br /> }<br /> },<br /> "keyValidatorConfig": {<br /> "filterPattern": ".*\\.parquet"<br /> }<br />}
What am I missing/misunderstanding? I also have error logs but I’m having trouble following what they mean.