Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
Start Free Trial

Alteryx Server Ideas

Share your Server product ideas - we're listening!
Submitting an Idea?

Be sure to review our Idea Submission Guidelines for more information!

Submission Guidelines

Featured Ideas

0 Likes

Hello Alteryx Team,

 

I hope this message finds you well.

 

I would like to propose a utility enhancement for Alteryx Server, particularly at the enterprise level. It would be extremely beneficial to have a workflow-based utility that can be configured for any licensed environment to perform scheduled backups and similarly facilitate the restore process.

 

Currently, the restore process is quite tedious and heavily reliant on the Server Host Recovery Guide. Post-recovery, we often encounter multiple errors, especially related to connections and add-ons, which makes real-time disaster recovery (DR) environments difficult to manage and unreliable.

 

While PowerShell scripts can be developed to assist with recovery, they still require significant manual intervention and troubleshooting. A built-in utility would greatly simplify the administrator's job and improve the robustness of DR strategies.

 

I kindly request the Alteryx internal development team to consider this feature request. I also encourage community admins and users to vote for this suggestion so it can gain visibility and traction.

 

Best regards,
Sheik Sabir Ali, G

Hello Alteryx Team,

 

I've developed a workflow and successfully uploaded it to our Alteryx Gallery. This workflow requires an Excel file as input, which the user should select interactively via a File Browse Tool.

To achieve this, I've used the following configuration:

  • An Input Data Tool is connected to a sample Excel file and reads a specific sheet (e.g., "Sheet1" or "Data").
  • A File Browse Tool allows the user to select the Excel input file.
  • An Action Tool connects the File Browse Tool to the Input Data Tool to dynamically update the Excel file path

 

Every time a user runs the workflow in the Gallery and selects an Excel file, a pop-up window appears, prompting the user to select the Excel sheet.

Screenshot 2025-09-04 105046.png

I do not want to have the option of selecting "<List of Sheet Names>". I only want to be able to select the Sheet itself.

 

I would suggest to add an option that allows the creator of the App to deselect the field "<List of Sheet Names>", so that the User on the Server can not see and select this field.

 

Thank you in advance for your help!

 

Best regards, Felix

0 Likes

Our organization heavily leverages Active Directory for all data connections. We manage access to Alteryx Gallery Collections by Active Directory. If I want to use DCM, and share the connection, I can only specify an individual or a custom group of individuals. This is against our efforts to manage security and access usingDCM Active Directory. It would be incredibly beneficial for Alteryx DCM to support connection sharing using Active Directory. Another alternative would be to allow active directory groups to be added to custom user groups. 

0 Likes

TLS certificate lifespans will be changing starting in 2026. Managing certificates manually will become a headache for many Alteryx Server administrators. Create a method to allow automated TLS certificate installation in Alteryx Server.

 

47-day SSL/TLS certificates will be the new standard in 2029

The newly approved measure, initially proposed by Apple and endorsed by Sectigo in January 2025, will gradually reduce certificate lifespans from the current 398 days to 47 days through a phased approach.

 

Ballot SC-081v3 formally passed on April 11th, 2025, putting the phased reduction into effect with the following enforcement dates:

  • March 15, 2026: Maximum certificate lifespan reduced to 200 days

  • March 15, 2027: Further reduction to 100 days

  • March 15, 2029: Final enforcement of the 47-day maximum lifespan

0 Likes

For admins to be able to prioritize workflows, because by default, users are not allowed to prioritize jobs.

 

Capture.JPG

 

In combination with Quality of Service (3 - Critical Priority and above) and worker tagging, for example we have all workflows belonging to a project tagged to a specific worker, but since "Member" (default) users cannot prioritize jobs, these workflows would never run on this specific worker

 

 

0 Likes

Automatic Deletion of Logs files from Engine, Service and Gallery Folders for on perm servers

0 Likes

I think file explorer or management related to workflow in the server should be able to be seen, linked and reffered to so that much more creative way to check and use them in the server via multiple workflow can be realized. 

Data Connections and Workflow Credentials are key part of migration process for workflows to Gallery.

They are provisioned for each user upon request.

When a developer leaves the organization, there is no easy way to identify all the Data Connections and Workflow Credentials assigned to that user.

Current options in the Gallery is for the Admin to browse through each Data Connection and Workflow Credential, navigate the Users tab and identify the list users. 

 

For a large organization with many Data Connections and Workflow Credentials it will hard to manage this since.

1. If the workflows change ownership, the new owner has to be given access to the Data Connections and Workflow Credentials.

2. Remove user access to the Data Connections and Workflow Credentials.

 

A Gallery page in Admin should include all Assets a user owns/has access to which includes the following. By selecting a user, the list should populate.

  1. Workflows
  2. Schedules
  3. Collections
  4. Data Connections
  5. Workflow Credentials

 

We have implemented a solution to capture this information by getting the details from MongoDB. Also an automated process where the list goes to the manager when a developer leaves the organization so that he can manage the assets by identifying a new owner for the assets.

 

In the new version, we have an easy way to change ownership of a workflow in Gallery. In the same manner other Assets also should be taken care.

0 Likes

There are some products in the Market whic allows to install multiple services as Windows service on a single server. 

In large organizations it is found that when we are running ALteryx Server in multi node setup at that time 1 worker server has only one Alteryx service installed and runs as single windows service. If we have configured FID with log on as a service FID in that case if one FID reached to its shared path mapping capacity 1018k then it stops authentication and windows service is not able to start.

If we have multiple services installed on the same server then we can configure like :

AlteryxService.exe : FID1

AlteryxService2.exe : FID2

AlteryxService3.exe : FID3

In this case we can utilize the server compute and enhance the multi tenancy instead of adding more additional server.

The V3 jobs API endpoint woefully lacks any usefulness. The current endpoint only has a get jobs/{jobid} method that is not useful because a database admin must query the database to get a list of all job IDs. To add insult to injury, this method is only limited to the user whose job is running or queued.

 

These are new features that I am proposing

1. GET jobs/listThis method must be callable by all users. Parameters such as none (default—full list), running, or queued will display jobs with the appropriate status. The job ID of the running or queued job and the worker it is running on must be included in the resultset.

2. GET jobs/{ownerid} — This method must be callable by all users. Like the GET jobs/list above, the resultset must include the job ID of the running or queued job and the worker it is running on.

3. DELETE jobs/{jobid} This method must be callable by the person who scheduled the job, the owner of the workflow, or the curator. This method is the equivalent of cancelling a job on the Server Admin page - #!/admin/jobs by a curator. All three mentioned people have a vested interest in the running or queued jobs on the server and must be able to cancel those jobs.

4. POST jobs/reassign/{jobid}/{new_job_tag} This method is restricted to the curator and applies to any job in a queued state. It allows a curator to reassign a job to another job tag or the first available worker for reasons determined by the curator.

 

This is an enhancement that I am proposing
1. GET jobs/{jobid} This method must be callable by all users. This will allow any user to get the details of any running or queued job.

 

Logging requirements

All DELETE or POST methods must be logged and purged based on the Persistence OptionDelete queue and results after (days).

 

 

I would like the ability to "favorite" Public flows that are on the server and then have a separate "Favorites" section.  As the volume of Public flows on the server increases, It would allow for users to be able to navigate to frequently used flows much faster.

0 Likes

The gallery needs to implement basic auditing in the data connections.Currently, there is no way to determine who or when a data connection was created or updated.

 

The dataConnections Collection contains data connections with these keys

  • _id: (ObjectId) Document primary key.

  • ConectionString: (String) Hashed database connection string.

  • PasswordSecured: (String) Encrypted password for the database connection.

  • ConnectionName: (String) Data connection display name.

  • Subscriptions: (Array) Array of subscription IDs the data connection has been shared with.

  • Users: (Array) Array of user IDs the data connection has been shared with.

  • UserGroups: (Array) Array of group IDs the data connection has been shared with.

Add these keys to provide a basic audit trail

  • CreationDate: (DateTime) Date time in UTC when the data connection was created.
  • CreatedByUser: (String) user ID of the user that created the data connection.
  • LastUpdateDate: (DateTime) Date time in UTC when the data connection was updated.
  • UpdatedByUser: (String) user ID of the user that updated the data connection.

 

Modify the gallery to allow the values of the new keys to be displayed. Modify the API endpoint to retrieve this information.

0 Likes

You cannot currently upload a new workflow and specify your own workflow_id GUID.  This would be useful for systematic workflows that need to be referenced in code.  Currently, you either to search for a workflow by name, but you are not guaranteed it a workflow instance you uploaded.  This would be helpful for server and workflow administration.

0 Likes

Given there are multiple api versions.  I need a way to call the api and get the server version so I can make the correct API call or construct code logic which provides the user code requirement based on the versions features or limitations.

 

I propose a api call ../getserverinfo/ that returns server metadata like version, default worker thread count, and default memory allocation.

0 Likes

There is currently not a way to call the API and find out the calling user.  For instance, if I have a user API key and secret, I  to return the rest of the user info for the calling user or who is calling the api.  I propose a api call like ../user/whoami

 

After a job is run on Alteryx Server, Gallery lists Job Results with a Status column containing with one of 2 values:

  • Error (represented by a red exclamation point icon); and
  • Success (represented by a green checkmark icon).
    See attached screenshot for illustration.

 

If any WARNING messages are generated by the workflow, the operator/user is unaware unless they take the time to expand the message log details, then scroll through the long list of messages that typically appear in the log.

 

Because the Success Icon appears whether there are Warnings or not, the user must dutifully spend extra time scrolling through the list looking for Warnings even if there are none to be found.

 

My Idea: provide additional information under the Status column in one or more of these ways:

  1. add a 3rd status option with a yellow/orange icon that indicates if/when 1 or more warnings are present
    • This should be a quick/easy enhancement that would provide immediate value

  2. append one or more numbers after the Icon to indicate counts (see mock-up example)
    • There seems to be ample space for this type of info
    • This could be done at a later date as a subsequent enhancement

I think that the user would benefit from a filter where they could focus on errors, warnings, or other types of messages in the same spirit as the Designer interface, but I recognize that would be a lot of work and I am not asking for that now.

 

 

Workflows which are scheduled and continuously failing in a row 5 times need to stop/disable the schedule. Sent a mail to the workflow owner stopped schedule due to continuous error.

 

For Administrating the schedule workflows this feature helps a lot. Many users create workflows and dump into server and schedule it and forgot it if we implement this strategy, it will be helpful to both users and Admin team.

Hello,

Maybe it's time to have a better licensing model. In addition of the current and restricted core-base model, why not having a user-based model?

Best regards,

Simon

At my organization, we have many workflows on our server that take data from one database and store it on another. We would love the ability for an alert system that warns us when a job fails so that we can solve it immediately and not risk the chance of not noticing until a few weeks or months later.

0 Likes

why didn't you implement the search in the schedules for users, it is available for admins?

for users who have a lot of schedules, it's essential

 

 

Top Liked Authors