Is it possible to disable topic auto-creation for the Lenses S3 Source Connector?

How do i configure on the connector to not create topic and to not read messages from the beginning?

I see on your documentation this:

That you can configuration:
SET auto.offset.reset = ‘latest’;
SET autocreate=true

Can i use this also for the source ?
“connector.class”: “io.lenses.streamreactor.connect.aws.s3.source.S3SourceConnector”,

Hi @Michal_Singer,

I want to clarify a couple of important points regarding Lenses Streaming SQL and topic creation:

  1. Lenses Streaming SQL vs. Connectors
  • Lenses Streaming SQL is separate from Lenses connectors
  • Connectors use KCQL (Kafka Connect Query Language), which is a SQL-like DSL
  • Most Lenses connectors use KCQL to configure their behavior
  1. Disabling Automatic Topic Creation You have two options:
  • Option 1: Set topic.creation.enable=false in the Kafka Connect worker configuration
  • Option 2: Set auto.create.topics.enable=false in the Kafka brokers configuration