Skip to main content

Sharing data in MotherDuck

MotherDuck's data sharing model currently has the following key characteristics:

  • Sharing is at the granularity of a MotherDuck database.
  • Sharing is at the moment only read-only.
  • Sharing is done through share objects.
  • You can make shares easily discoverable and queryable by all users in your Organization.
  • Alternatively, you can use share URLs to limit whom you share the data with.

Sharing in MotherDuck works as follows:

  1. The data provider shares their database in MotherDuck by creating a share.
  2. The data consumer attaches said share, which creates a clone database in their workspace. The data consumer can now query this database.
  3. The data provider periodically updates the share to push updates to the database to data consumers.

Creating a share

The first step in sharing databases in MotherDuck is to create a share, which can be done in both UI and SQL. Creating a share does not incur additional costs, and no actual data is copied or transferred - creating a share is a zero-copy, metadata-only operation.

  1. Click on the "trident" next to the database you'd like to share. Select "share". trident
  2. Optionally name the share.
  3. Choose whether the share should only be accessible by users in your Organization, or all MotherDuck users.
  4. Choose whether other members of your Organization should be able to discover this share. trident

Organization shares

When creating a share, you may choose scope of access to this share:

  • Organization. Only users authenticated in your Organization will have access to this share.
  • Unrestricted. Any user signed into MotherDuck can access this share using the share URL.

Discoverable shares

When creating a share, you may choose to make this share Discoverable. All authenticated users in your Organization will be able to easily find this share in the UI.

You can create Discoverable shares that are Unrestricted, but only members of your Organization can find this share in the UI. Non-members can still access this share using the share URL.

Share URLs

When you create a share, a URL for this share is generated:

  • If the share is Discoverable, members of your Organization will easily be able to find this share without the share URL. Alternatively, they can use the URL directly.
  • If the share is Hidden (e.g. not Discoverable), other users will not be able to find the share URL. You will need to send this URL directly to the users with whom you want to share this data.

Consuming shared data

The data consumer needs to attach the share to her workspace, thereby creating a read-only zero-copy clone of the source database. This is a free metadata-only operation.

Consuming discoverable shares

If the data provider created a Discoverable share, you should be able to find this share in the UI.

  1. Select the share you want under "Shared with me".
  2. Optionally roll over the share to see the tooltip that tells you the share owner, when it was last updated, and share access scope.
  3. Click "attach".
  4. You can now query the resulting database.
note

The ability to list and discover Discoverable shares in SQL is coming shortly.

Consuming hidden shares

If the data provider created a Hidden (e.g. non-Discoverable) share, they need to pass the data consumer the share URL. The data consumer, in turn, needs to attach the share URL.

ATTACH 'md:_share/ducks/0a9a026ec5a55946a9de39851087ed81' AS birds;   # attaches the share as database `birds`

Updating shared data

If the database being shared has changed, in order for the changes to propagate to the data consumer, the data provider needs to update the share.

UPDATE SHARE birds; 

Learn more about UPDATE SHARE.

note

We are working on auto-updating shares.