Node batching not pushed to production

Describe the problem/error/question

I’ve added batching to an http node on our development environment:
image

When we push this workflow to the production environment, the batching is not copied (same node as above, just on production):
image

Any idea why that could be the case?

It looks like your topic is missing some important information. Could you provide the following if applicable.

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

Debug info

core

  • n8nVersion: 1.64.2
  • platform: docker (self-hosted)
  • nodeJsVersion: 20.18.0
  • database: postgres
  • executionMode: regular
  • concurrency: -1
  • license: enterprise (production)
  • consumerId: b8cd14cd-d69c-404a-ab9c-df2df3e12272

storage

  • success: none
  • error: all
  • progress: true
  • manual: false
  • binaryMode: memory

pruning

  • enabled: true
  • maxAge: 5 hours
  • maxCount: 10000 executions

Generated at: 2024-10-25T08:37:40.478Z

Operating system = MacOS

Welcome to the community @MartijnvdWiel !

Tip for sharing information

Pasting your n8n workflow


Ensure to copy your n8n workflow and paste it in the code block, that is in between the pairs of triple backticks, which also could be achieved by clicking </> (preformatted text) in the editor and pasting in your workflow.

```
<your workflow>
```

That implies to any JSON output you would like to share with us.

Make sure that you have removed any sensitive information from your workflow and include dummy or pinned data with it!


How does the JSON for the node looks like, the one you pushed to production? Does it contain this bit

      "parameters": {
        "options": {
          "batching": {
            "batch": {
              "batchSize": 1,
              "batchInterval": 200
            }
          }
        }
      }

If it’s not there then it seems something went wrong with the code you stored and pushed to production.

Thanks @ihortom! I just tried pushing again and reloading the page, but I now see that the batching I’m trying to add to our development workflow isn’t even remembered after a reload.

So I’m adding batching to an http node on development. I save the workflow after. I then reload the page. It’s gone. This doesn’t happen for you?

The batching was added to later http nodes in the workflow, but when I’m trying to add it to one of the first http nodes in the workflow, it just won’t accept.

No, works fine for me in n8n Cloud, version 1.64.3.

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.