can config s3 pipeline endpoint when create pipeline
like this :
CREATE PIPELINE mydemo
AS LOAD DATA S3 ‘appdemo’
CONFIG ‘{“region”: “us-east-1”,“endpoint”:""}’
CREDENTIALS ‘{“aws_access_key_id”: “xxxx”, “aws_secret_access_key”: “xxxxxx”}’
INTO TABLE messages
FIELDS TERMINATED BY ‘\t’;
Hi there!
I am not entirely sure what you mean by your question, but I think you’re asking whether MemSQL can configure S3 Pipelines. And the answer is yes:
The full docs is: SingleStoreDB Cloud · SingleStore Documentation
Hi @memsql1,
You can specify an S3-compatible endpoint in the CONFIG
section:
CONFIG '{other config, "endpoint_url":"http://other_endpoint/"}'
This is similar to how BACKUP works: SingleStoreDB Cloud · SingleStore Documentation
The docs will likely be updated to reflect this.