Drop a keyspace (TypeScript)
Drops a keyspace from a database and deletes all data in that keyspace.
|
You need an application token with permission to interact with the target database, such as the Database Administrator role. For more information, see Get endpoint and token. |
Result
Drops the specified keyspace.
Returns a promise that resolves once the operation completes.
Parameters
Use the dropKeyspace method, which belongs to the DataAPIDbAdmin class.
Method signature
async dropKeyspace(
keyspace: string,
options?: {
timeout?: number | TimeoutDescriptor,
}
): void
| Name | Type | Summary |
|---|---|---|
|
|
The name of the keyspace to drop. |
|
|
Optional.
The options for this operation. See Properties of |
| Name | Type | Summary |
|---|---|---|
|
|
Optional. Whether to wait for the database to become active again before returning. If false, the method returns immediately after issuing the drop request, but you cannot work with the database until it becomes active again. Default: true |
|
|
Optional. The timeout(s) to apply to this method.
You can specify For more information about the |
Examples
The following examples demonstrate how to drop a keyspace.
import { DataAPIClient } from "@datastax/astra-db-ts";
// Get a database
const client = new DataAPIClient();
const database = client.db("API_ENDPOINT", {
token: "APPLICATION_TOKEN",
});
// Get an admin object
const admin = database.admin();
// Drop a keyspace
(async function () {
await admin.dropKeyspace("KEYSPACE_NAME");
})();
Client reference
For more information, see the client reference.