Skip to content

Platform & Experience

Please use this forum to share your ideas on how we can improve in any of these areas.
Join our forum to discuss your ideas with Aiven community or check out our public roadmap.

JUMP TO ANOTHER FORUM

  • Hot ideas
  • Top ideas
  • New ideas
  • My feedback

82 results found

  1. As an Aiven customer
    I want to be able to trigger a rolling restart of my service
    So that I can recover from or troubleshoot potential issues

    7 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  2. As an Administrator
    I want to request certain default project settings for my organization
    so that I can when I create new projects, these settings are in place without needing to contact support each time. E.G. - Static IP Limitations, Custom Plans
    This will reduce the number of tickets I need to raise, and allow my developers to more rapidly spin up new projects.

    7 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    Gathering Interest  ·  0 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  3. As a customer who has applications integrated into my Aiven Services,

    I want some period of time after I change a user credential,

    so that I can go and alter this in all the relevant applications, without a service outage.
    Currently when a user credential is changed, with only 1 user, the old credential is disabled immediately, before I have a chance to update my applications, causing outages or scheduled maintenance windows.

    7 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    Gathering Interest  ·  2 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  4. As an Aiven customer
    I want visibility of what is currently connecting to my service
    so that I can diagnose connectivity issues without opening a support ticket and waiting for engineers to diagnose the issue

    6 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  5. As a developer I would like to ingest Kafka clusters metrics into AWS CloudWatch via the use of IAM Role.

    6 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  6. As DBA
    I want to be able to choose a custom service port
    so that I can migrate databases to Aiven without changing the port in the applications connection string.
    In addition, this would help to avoid issues with the migration because of wrong ports.

    6 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  7. As an Organization Administrator, I want the possibility to nest Organizational Units, so that I can setup my organizational and it's permissions more granular.

    6 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    Gathering Interest  ·  0 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  8. As an Aiven User
    I want to set a config parameter to it's default value
    so that I can be sure that the service is running with the 'Aiven default'

    5 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    Gathering Interest  ·  2 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  9. As an IT manager
    I want to add a new user to a group at the time of inviting them
    so that I can do a single action and not have to wait for them to setup an account.

    Our current process of adding a new user takes 3 steps.
    1. Invite by IT manager
    2. User setups an account
    3. They are adding to the group by IT manager

    5 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    Gathering Interest  ·  0 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  10. As an Aiven user,
    I want to have the ability to whitelist an IP address for a limited time, eg. in hours, so that I can access the database only within this specified window. The whitelist should automatically update once that time is up.
    This would give database access only when needed, and would be beneficial for both network efficiency and security as the whitelist is kept as small as possible, thus also reducing potential attack surface.

    5 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  11. As a developer I want to see and query data in PostgreSQL directly in the Aiven console so that I can access and use my data without needing to setup another tool.

    5 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    Gathering Interest  ·  1 comment  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  12. As DBA, I want to be able to define a schedule to shutdown and turn on services automatically so that I can save costs on non-production environments.
    Example:
    at 19:00 Monday to Friday power off the instance
    at 06:00 Monday to Friday power on the instance

    4 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    I will leave this open to see if we get more votes over the next 6 months. This can be accomplished easily with a simple shell script and Aiven CLI with a cron job for example:


    0 19 * * 1-5 /path/to/shutdown.sh  # Shutdown at 7:00 PM (19:00), Monday-Friday 0 6 * * 1-5 /path/to/startup.sh   # Startup at 6:00 AM (06:00), Monday-Friday


    #!/bin/bash


    # Replace with your Aiven project and service names

    PROJECT_NAME="your-project-name"

    SERVICE_NAME="your-service-name"


    aiven service stop/start $PROJECT_NAME $SERVICE_NAME



  13. As a user, I would like to have more granular details on what is included in updates and get an estimation on how long the maintenance period would be on my service and what would be the impact, if any temporary scale up of service is required during maintenance update

    4 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  14. As a security team engineer, I'm running all services in VPC and want to ensure nobody can expose any Aiven service in my organization via a public endpoint

    4 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  15. The current console is not designed for mobile users but it would be beneficial for our customers to make some improvements. During long upgrades outside of working hours they would like to check the progress of their upgrades from their phones. It would be great to be able to turn off the side bar and also zoom in .

    4 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    Gathering Interest  ·  2 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  16. As a developer I want to see and query data in MySQL directly in the Aiven console so that I can access and use my data without needing to setup another tool.

    4 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    Gathering Interest  ·  0 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  17. As an engineering manager, I want to be able to move services around projects so that I can group them differently as my teams' organization evolves.

    4 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    Gathering Interest  ·  0 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  18. As a developer
    I want to have all of my Gen AI stacks hosted within a single platform to avoid excessive network cost and reduce complexity
    so that I can develop and deploy my GenAI application smoothly with minimum cost

    3 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    Gathering Interest  ·  0 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  19. As Head of SRE & Cloud Technology
    I want to have configurable thresholds
    so that I can configure when new storage will be added to the database
    In addition, this request is mainly because we partially have big databases with X TB of storage. If you have a database with e.g. 4 TB of storage, the current threshold of 85% is at 3.4 TB. So you are paying 600GB of storage without actually using them.

    I totally understand that this threshold makes sense for smaller databases. But with a certain size, it's too expensive.

    3 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  20. In order to streamline and automate the deployment of ClickHouse services, it requires the Aiven Operator for Kubernetes to be able to create roles and set them for users

    3 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  • Don't see your idea?