Skip to main content
You can use external connections to specify and interact with resources that are external from CockroachDB. With CREATE EXTERNAL CONNECTION, you define a name for an external connection while passing the provider URI and query parameters. , , , , and queries can interact with the defined external connection instead of a required, provider-specific URI. As a result, you can decouple the management of the external resource from the operation in which you’re using them. CREATE EXTERNAL CONNECTION will validate the URI by writing, reading, and listing a test file to the external storage URI. If you’re using a , CREATE EXTERNAL CONNECTION will encrypt and decrypt a file. You’ll find a crdb_external_storage_location file in your external storage as a result of this test. Each of the operations that access the external connection is aware of the raw URI that is parsed to configure, authenticate, and interact with the connection. The privilege model for external connections means that you can delegate the creation and usage of external connections to the necessary users or roles. You can also use the following SQL statements to work with external connections:

Required privileges

To create an external connection, a user must have the EXTERNALCONNECTION . root and users have this system-level privilege by default and are capable of granting the EXTERNALCONNECTION system-level privilege to other users and roles with or without the . For example:
To use a specific external connection during an operation, the user must also have the USAGE privilege on that connection: For example:

Synopsis

create_external_connection syntax diagram

Parameters

ParameterDescription
connection_nameThe name that represents the external connection.
connection_URIThe storage/sink URI that the external connection will reference.

Supported external storage and sinks

Storage or sinkOperation support
Changefeeds
Backups, restores, imports, exports, changefeeds
Encrypted backups
Backups, restores, imports, exports, changefeeds
Changefeeds
Changefeeds
Changefeeds
Backups, restores, imports, exports, changefeeds
Encrypted backups
Changefeeds
Changefeeds
Backups, restores, imports, exports, changefeeds
connectionsPhysical cluster replication
Backups, restores, imports, exports, changefeeds
Changefeeds
For more information on authentication and forming the URI that an external connection will represent, refer to the storage or sink pages linked in the table.

Changefeed sinks as external connections

Consider the following when you create an external connection for changefeeds:
  • You can only include the query parameters and options that Kafka sinks support. Refer to the table and the Kafka for more detail.
  • To restrict a user’s access to changefeed data and sink credentials, enable the changefeed.permissions.require_external_connection_sink.enabled cluster setting. When you enable this setting, users with the on a set of tables can only create changefeeds into .

External connection URI format

To form the external connection URI in operation statements, use the external:// scheme followed by the name of the external connection. For an external connection named backup_storage:
See the examples in the next section for details on external connection creation.

Examples

The examples in this section demonstrate some of the storage and operation options that external connections support.

Create an external connection for cloud storage

In this example, you create an external connection for an Amazon S3 bucket that will store your backups. Then, you use the external connection to restore the backup to your cluster.
  1. Define your external connection that references the S3 bucket’s URI:
  2. Verify that the new external connection was created successfully with :
  3. Run the backup to your S3 bucket using the external connection’s name:
    If you are creating an external connection with or parameters, you must pass them in uppercase otherwise you will receive an unknown query parameters error.
  4. Use to view your backups in the storage defined by the external connection:
  5. In the event that a restore is necessary, use RESTORE with the external connection:
  6. When you no longer need the external connection, you can delete it with :

Create an external connection for a changefeed sink

In this example, you create an external connection to a Kafka sink to which a changefeed will emit messages. When you create the external connection, you will include the necessary query parameters for your changefeed. As a result, you will only need to specify the external connection’s name when creating a changefeed rather than the Kafka URI and parameters.
  1. Define your external connection that references the Kafka sink URI and any :
If you are creating an external connection with , you must pass them in lowercase otherwise you will receive an unknown query parameters error.
  1. Create your changefeed using the external connection’s name:

See also