Skip to content

Latest commit

 

History

History
102 lines (76 loc) · 4.35 KB

get-started.asciidoc

File metadata and controls

102 lines (76 loc) · 4.35 KB

Get started

On this page, you will learn how to:

Create an {es-serverless} project

Use your {ecloud} account to create a fully-managed {es} project:

  1. Navigate to {ess-console}[cloud.elastic.co] and create a new account or log in to your existing account.

  2. Within Serverless Projects, choose Create project.

  3. Choose the {es} project type.

  4. Select a configuration for your project, based on your use case.

    • General purpose: For general search use cases across various data types.

    • Optimized for Vectors: For search use cases using vectors and near real-time retrieval.

  5. Provide a name for the project and optionally edit the project settings, such as the cloud platform region. Select Create project to continue.

  6. Once the project is ready, select Continue.

Tip

Learn how billing works for your project in Elasticsearch billing dimensions.

Now your project is ready to start creating indices, adding data, and performing searches. You can choose one of the following options to proceed.

Option 1: Follow the guided index flow

Once your project is set up, you’ll be directed to a page where you can create your first index. An index is where documents are stored and organized, making it possible to search and retrieve data.

  1. Enter a name for your index.

  2. Click Create my index. You can also create the index by clicking on Code to view and run code through the command line.

    Create an index.
  3. You’ll be directed to the Index Management page. Here, copy and save the following:

    • Elasticsearch URL

    • API key

Note

You won’t be able to view this API key again. If needed, refer to Create a new API key to generate a new one.

The UI provides ready-to-use code examples for ingesting data via the REST API. Choose your preferred tool for making these requests:

  • Console in your project’s UI

  • Python

  • JavaScript

  • cURL

Option 2: Follow the Getting Started guide

To get started using the in-product tutorial, navigate to the Getting Started page and follow the on-screen steps.

Getting Started page.

Option 3: Explore on your own

If you’re already familiar with Elasticsearch, you can jump right into setting up a connection and ingesting data as per your needs.

  1. Retrieve your connection details.

  2. Ingest your data. Elasticsearch provides several methods for ingesting data:

Next steps

  • Once you’ve added data to your {es-serverless} project, you can use {kibana-ref}/playground.html[Playground] to test and tweak {es} queries and chat with your data, using GenAI.

  • You can also try our hands-on {ref}/quickstart.html#quickstart-list[quick start tutorials] in the core {es} documentation.