Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Javascript code nodes are broken in 1.1.0 #16253

Closed
5 tasks done
Tracked by #16300
YuvalZiegler opened this issue Mar 19, 2025 · 9 comments
Closed
5 tasks done
Tracked by #16300

Javascript code nodes are broken in 1.1.0 #16253

YuvalZiegler opened this issue Mar 19, 2025 · 9 comments
Assignees
Labels
🐞 bug Something isn't working cloud When the version is cloud and it is a bug report

Comments

@YuvalZiegler
Copy link

Self Checks

  • This is only for bug report, if you would like to ask a question, please head to Discussions.
  • I have searched for existing issues search for existing issues, including closed ones.
  • I confirm that I am using English to submit this report (我已阅读并同意 Language Policy).
  • [FOR CHINESE USERS] 请务必使用英文提交 Issue,否则会被关闭。谢谢!:)
  • Please do not modify this template :) and fill in all the required fields.

Dify version

1.1.0

Cloud or Self Hosted

Cloud

Steps to reproduce

connect a code node and select Javascript

✔️ Expected Behavior

executes the code

❌ Actual Behavior

throws an error

node:internal/modules/cjs/loader:1207:32) at Module._load (node:internal/modules/cjs/loader:1023:12) { code: 'ERR_DLOPEN_FAILED' } Node.js v20.11.1 51-4a9c-aa52-d8cebb72c81b/var/sandbox/sandbox-nodejs/nodejs-project/node_temp/node_temp/node_modules/koffi/build/koffi/linux_x64/koffi.node: cannot enable executable stack as shared object requires: Invalid argument at Module._extensions..node (node:internal/modules/cjs/loader:1473:18) at Module.load (node:internal/modules/cjs/loader:1207:32) at Module._load (node:internal/modules/cjs/loader:1023:12) at Module.require (node:internal/modules/cjs/loader:1235:19) at require (node:internal/modules/helpers:176:18) at Object.<anonymous> (/tmp/sandbox-d7e67d7e-1a51-4a9c-aa52-d8cebb72c81b/var/sandbox/sandbox-nodejs/nodejs-project/node_temp/node_temp/node_modules/koffi/index.js:542:33) at Module._compile (node:internal/modules/cjs/loader:1376:14) at Module._extensions..js (node:internal/modules/cjs/loader:1435:10) at Module.load (node:internal/modules/cjs/loader:1207:32) at Module._load (node:internal/modules/cjs/loader:1023:12) { code: 'ERR_DLOPEN_FAILED' } Node.js v20.11.1 error: exit status 1
@dosubot dosubot bot added cloud When the version is cloud and it is a bug report 🐞 bug Something isn't working labels Mar 19, 2025
Copy link

dosubot bot commented Mar 19, 2025

Hello, @YuvalZiegler! I'm here to help with bug fixes, answer your questions, and assist you in becoming a contributor. Let's tackle this issue together!

The error you're encountering seems to be related to the koffi module, which is failing to load due to an ERR_DLOPEN_FAILED error. This error typically occurs when there is an issue with loading a native module, often due to compatibility issues with the Node.js version or the environment configuration.

Here are a few steps you can take to troubleshoot and potentially resolve this issue:

  1. Check Node.js Compatibility: Ensure that the koffi module is compatible with Node.js version 20.11.1. There might be known compatibility issues that require a different version of Node.js or an update to the koffi module.

  2. Environment Configuration: The error message mentions an issue with enabling the executable stack. This might be related to security settings or permissions in the environment where the code is being executed. Check if there are any security policies or configurations that might be preventing the module from loading correctly.

  3. Module Dependencies: Verify that all dependencies for the koffi module are correctly installed and up to date. Sometimes, missing or outdated dependencies can cause such errors.

  4. Consult Documentation or Support: If the above steps do not resolve the issue, consult the documentation for the koffi module or reach out to their support channels for further assistance.

If these steps do not resolve the issue, it might be helpful to look for any updates or patches for Dify version 1.1.0 that address this specific problem.

To continue talking to Dosu, mention @dosu.


Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Bug Report | Other

@masayannuu
Copy link

I'm experiencing the same issue.

@crazywoola
Copy link
Member

Can you paste the code here?

@masayannuu
Copy link

@crazywoola
This is the error that's occurring.

node:internal/modules/cjs/loader:1207:32) at Module._load (node:internal/modules/cjs/loader:1023:12) { code: 'ERR_DLOPEN_FAILED' } Node.js v20.11.1 c7-4c7a-b0cf-6cba873ebd5b/var/sandbox/sandbox-nodejs/nodejs-project/node_temp/node_temp/node_modules/koffi/build/koffi/linux_x64/koffi.node: cannot enable executable stack as shared object requires: Invalid argument at Module._extensions..node (node:internal/modules/cjs/loader:1473:18) at Module.load (node:internal/modules/cjs/loader:1207:32) at Module._load (node:internal/modules/cjs/loader:1023:12) at Module.require (node:internal/modules/cjs/loader:1235:19) at require (node:internal/modules/helpers:176:18) at Object.<anonymous> (/tmp/sandbox-f89db836-93c7-4c7a-b0cf-6cba873ebd5b/var/sandbox/sandbox-nodejs/nodejs-project/node_temp/node_temp/node_modules/koffi/index.js:542:33) at Module._compile (node:internal/modules/cjs/loader:1376:14) at Module._extensions..js (node:internal/modules/cjs/loader:1435:10) at Module.load (node:internal/modules/cjs/loader:1207:32) at Module._load (node:internal/modules/cjs/loader:1023:12) { code: 'ERR_DLOPEN_FAILED' } Node.js v20.11.1 error: exit status 1

The code I'm running on Node is this simple.
Text parser.

function main(args) {
    const text = args["text"];
    const result = (text.includes('hearing') || text.includes('title')) ? 1 : 0;
    return {result: result};
}

@xudongcc
Copy link

The same issue occurred on cloud.dify.ai, making it unusable.

I am using the Team version. Is there a technical support team I can contact to revert to the previous version?

@crazywoola
Copy link
Member

The same issue occurred on cloud.dify.ai, making it unusable.

I am using the Team version. Is there a technical support team I can contact to revert to the previous version?

Well you can not revert to a specific version in Cloud.

@crazywoola
Copy link
Member

We will fix it asap.

@laipz8200
Copy link
Member

fixed

@masayannuu
Copy link

@crazywoola
break again in cloud.

#16397

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐞 bug Something isn't working cloud When the version is cloud and it is a bug report
Projects
None yet
Development

No branches or pull requests

6 participants