You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by GitBox <gi...@apache.org> on 2022/06/02 07:16:06 UTC

[GitHub] [dolphinscheduler] github-keep opened a new issue, #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

github-keep opened a new issue, #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340

   ### Search before asking
   
   - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
   
   
   ### What happened
   
   在配置HDFS之后使用资源中心上传过大的文件(90MB)失败,小文件可以。猜想:不能上传超过HDFS数据块大小(64MB)的文件,查看日志错误信息:没有合适的分解器。
   ![image](https://user-images.githubusercontent.com/34233672/171570072-3bb4a43f-0ab3-4474-bb07-bf63fe8bcf40.png)
   
   
   ### What you expected to happen
   
   在之前版本(2.0.5)中,该功能正常可以使用,升级版本3.0.0-alpha,3.0.0-beta-1均不能正常使用。
   
   ### How to reproduce
   
   集群部署完成后,配置HDFS,使用的Hadoop 集群 NameNode 配置了 HA ,完成之后上传一个128MB(超过HDFS数据块)以上的文件
   
   ### Anything else
   
   问题每次都出现,相关的日志再安装目录下面的api-server/logs下的最新文件中
   
   ### Version
   
   3.0.0-beta-1
   
   ### Are you willing to submit PR?
   
   - [X] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] zhongjiajie closed issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by "zhongjiajie (via GitHub)" <gi...@apache.org>.
zhongjiajie closed issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file
URL: https://github.com/apache/dolphinscheduler/issues/10340


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] CriysHot commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
CriysHot commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1181405327

   > 从debug springboot报的实际异常是org.eclipse.jetty.io.EofException: Early EOF。原因在前端用axios 提交时设置了超时时间为15s,导致在上传过程中前端超时提前中断了, 见下面在ui service.ts的代码片段部分,修改加大timeout时间后上传大文件通过
   > `const baseRequestConfig: AxiosRequestConfig = { baseURL: import.meta.env.MODE === 'development' ? '/dolphinscheduler' : import.meta.env.VITE_APP_PROD_WEB_URL + '/dolphinscheduler', timeout: 15000,`
   Excuse me,i wanna know how to change the conf conveniently?should I compile the code?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] zhongjiajie commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
zhongjiajie commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1197892571

   > Thanks, I can try.
   
   Do you still want to submit pull request to fix this?
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] yangjf2019 commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
yangjf2019 commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1181590133

   In general, and frankly, it's not recommended to use dolphinscheduler to upload files that are too big!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] TheWindIsRising commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by "TheWindIsRising (via GitHub)" <gi...@apache.org>.
TheWindIsRising commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1435471179

   > 我也遇到了这个错误。请问这个问题是否有任何更新或潜在的解决方案?
   > 
   > 你好,请问解决了吗?我也遇到这个问题了,好像是上传时间超过15秒就会自动取消。
   > 
   > ![image](https://user-images.githubusercontent.com/124865830/219828722-aaf53436-ad95-4ea1-b612-21ed77c4bc1b.png) 我的版本是3.1.2 存储位置是MinIO 部署方式是K8s使用heml部署的,请问您是怎么解决的
   
   我是上传一个超过200多M的时候发现的问题


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] EricGao888 commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
EricGao888 commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1181468690

   related: #10509


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] TheWindIsRising commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by "TheWindIsRising (via GitHub)" <gi...@apache.org>.
TheWindIsRising commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1435475471

   > > 解决了,需要修改以下4个文件。
   > > ```
   > > /api-server/ui/assets/service.766f4632.js
   > > /api-server/ui/assets/service.766f4632.js.gz
   > > 
   > > /ui/assets/service.766f4632.js
   > > /ui/assets/service.766f4632.js.gz
   > > ```
   > > 
   > > 
   > >     
   > >       
   > >     
   > > 
   > >       
   > >     
   > > 
   > >     
   > >   
   > > 并找到以下配置,然后将 15e3 修改为 15e5 或更高版本。`baseURL:"/dolphinscheduler",timeout:15e3`
   > 
   > @yangjf2019干得好!您想提交 PR 来解决此问题吗?
   
   可否留个联系方式


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] TheWindIsRising commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by "TheWindIsRising (via GitHub)" <gi...@apache.org>.
TheWindIsRising commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1435475329

   我的版本是3.1.2请问这个问题前端是否解决?
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] xpf-demo commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
xpf-demo commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1219138162

   > > 我改了那四个js文件,,为啥还是不行啊,有大佬有同样的情况吗
   > 
   > 文件越大,上传时间越长。建议将时间值设置得大一些
   
   谢谢,我的问题已经解决了。我后面修改了js文件之后,清空了下浏览器的缓存之后,就能正常上传了,后台也没有报错了


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] EricGao888 commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
EricGao888 commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1181572733

   > Solved, the following 4 files need to be modified.
   > 
   > ```
   > /api-server/ui/assets/service.766f4632.js
   > /api-server/ui/assets/service.766f4632.js.gz
   > 
   > /ui/assets/service.766f4632.js
   > /ui/assets/service.766f4632.js.gz
   > ```
   > 
   > and find the following configuration `baseURL:"/dolphinscheduler",timeout:15e3`,then modify 15e3 to 15e5 or greater.
   
   @yangjf2019 Great job! Would you like to submit a PR to fix this?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] yaowj2 commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
yaowj2 commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1177156131

   从debug springboot报的实际异常是org.eclipse.jetty.io.EofException: Early EOF,原因在前端用axios 提交时设置了超时时间为15s,导致在上传过程中前端超时中断了。前端代码在前端ui service.ts这个地方:
   const baseRequestConfig: AxiosRequestConfig = {
     baseURL:
       import.meta.env.MODE === 'development'
         ? '/dolphinscheduler'
         : import.meta.env.VITE_APP_PROD_WEB_URL + '/dolphinscheduler',
     timeout: 15000,


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] xpf-demo commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
xpf-demo commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1214863022

   我改了那四个js文件,,为啥还是不行啊,有大佬有相同的情况吗


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] EricGao888 commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
EricGao888 commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1150594928

   I encountered this error, too. May I ask is there any update or potential solutions for this issue?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] fhygh commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
fhygh commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1151033486

   i upload 200+M file is ok
   ![image](https://user-images.githubusercontent.com/25889738/172842068-4da61396-9849-44fa-a6d4-95f6bd6fe013.png)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] yangjf2019 commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
yangjf2019 commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1181617909

   Yes, I think it should be done too, please let me take another look, thanks.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] yangjf2019 commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
yangjf2019 commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1181500434

   I'm having the same problem, what specific file configuration needs to be changed, please? The service.ts file was not found. @CriysHot @yaowj2 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] github-keep commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
github-keep commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1217703531

   > 我改了那四个js文件,,为啥还是不行啊,有大佬有相同的情况吗
   
   The larger the file, the longer the upload time. It is recommended to set the time value larger


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] EricGao888 commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
EricGao888 commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1181616035

   > Hi, @EricGao888 is it possible to increase the value of this parameter so that it becomes 30 minutes?
   
   May I ask whether it is possible to make it configurable for users?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] yangjf2019 commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
yangjf2019 commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1181575903

   > 
   
   Thanks, I can try.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] TCGOGOGO commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by "TCGOGOGO (via GitHub)" <gi...@apache.org>.
TCGOGOGO commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1409882100

   How about make this configurable? modify code seems tricky


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] TheWindIsRising commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by "TheWindIsRising (via GitHub)" <gi...@apache.org>.
TheWindIsRising commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1435471056

   
   我也遇到了这个错误。请问这个问题是否有任何更新或潜在的解决方案?
   
   你好,请问解决了吗?我也遇到这个问题了,好像是上传时间超过15秒就会自动取消。
   
   ![image](https://user-images.githubusercontent.com/124865830/219828722-aaf53436-ad95-4ea1-b612-21ed77c4bc1b.png)
   我的版本是3.1.2
   存储位置是MinIO 
   部署方式是K8s使用heml部署的,请问您是怎么解决的


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] github-actions[bot] commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1144529787

   ### Search before asking
   
   - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
   
   
   ### What happened
   
   After configuring HDFS, uploading too large files (90MB) using the resource center fails, but small files are ok. Guess: cannot upload files larger than the HDFS data block size (64MB), check the log error message: no suitable decomposer.
   ![image](https://user-images.githubusercontent.com/34233672/171570072-3bb4a43f-0ab3-4474-bb07-bf63fe8bcf40.png)
   
   
   ### What you expected to happen
   
   In the previous version (2.0.5), this function can be used normally, but the upgraded version 3.0.0-alpha and 3.0.0-beta-1 cannot be used normally.
   
   ### How to reproduce
   
   After the cluster is deployed, configure HDFS, use the Hadoop cluster NameNode configured with HA, and upload a file over 128MB (more than HDFS data blocks) after completion
   
   ### Anything else
   
   The problem occurs every time, and the relevant logs are in the latest files under api-server/logs under the installation directory.
   
   ### Version
   
   3.0.0-beta-1
   
   ### Are you willing to submit PR?
   
   - [X] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] yangjf2019 commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
yangjf2019 commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1181570622

   Solved, the following 4 files need to be modified.
   `
   /api-server/ui/assets/service.766f4632.js
   /api-server/ui/assets/service.766f4632.js.gz
   
   /ui/assets/service.766f4632.js
   /ui/assets/service.766f4632.js.gz
   `
   
   and find the following configuration `baseURL:"/dolphinscheduler",timeout:15e3`,then modify 15e3 to 15e5 or greater.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] yangjf2019 commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
yangjf2019 commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1181589156

   Hi, @EricGao888 is it possible to increase the value of this parameter so that it becomes 30 minutes?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] xpf-demo commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
xpf-demo commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1219133301

   
   
   
   > > 我改了那四个js文件,,为啥还是不行啊,有大佬有同样的情况吗
   > 
   > 文件越大,上传时间越长。建议将时间值设置得大一些
   
   问题已经解决了,我怀疑是前端浏览器缓存的问题,,后面我把服务重启之后,然后清除了下缓存就可以了


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] dalaopo commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by "dalaopo (via GitHub)" <gi...@apache.org>.
dalaopo commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1651078164

   > > /api-server/ui/assets/service.766f4632.js
   > 
   > 请问这个文件在哪/api-server/ui/assets/service.766f4632.js 由于我是k8s部署的ds,/ui/assets/service.766f4632.js这个文件我在api的pod里面的ui找到了,但上面那个不知道在哪
   
   docker没有 ui/assets/下文件,忽略


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] github-actions[bot] commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1144530011

   Thank you for your feedback, we have received your issue, Please wait patiently for a reply.
   * In order for us to understand your request as soon as possible, please provide detailed information、version or pictures.
   * If you haven't received a reply for a long time, you can [join our slack](https://join.slack.com/t/asf-dolphinscheduler/shared_invite/zt-omtdhuio-_JISsxYhiVsltmC5h38yfw) and send your question to channel `#troubleshooting`


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] SunHeng98 commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
SunHeng98 commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1165253496

   > I encountered this error, too. May I ask is there any update or potential solutions to this issue?
   
   你好,请问解决了吗?我也遇到这个问题了,好像是上传时间超过15秒就会自动取消。


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] EricGao888 commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
EricGao888 commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1230542733

   > > Yes, I think it should be done too, please let me take another look, thanks.
   > 
   > Hello @yangjf2019, may I ask whether you are still working on this issue? We have received feedback from many users that they get blocked by this issue. IMHO we could have a hot-fix for it at the first step, simply increasing the threshold. Then we could move it further and make it configurable for users. Thanks.
   
   Hot fix #11694


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] TheWindIsRising commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by "TheWindIsRising (via GitHub)" <gi...@apache.org>.
TheWindIsRising commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1435477619

   > /api-server/ui/assets/service.766f4632.js
   
   请问这个文件在哪/api-server/ui/assets/service.766f4632.js
   由于我是k8s部署的ds,/ui/assets/service.766f4632.js这个文件我在api的pod里面的ui找到了,但是上面那个不知道在哪
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] GodWon commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
GodWon commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1159866635

   > 我上传 200+M 文件没问题,3.0.0 beta-1 版本 ![图片](https://user-images.githubusercontent.com/25889738/172842068-4da61396-9849-44fa-a6d4-95f6bd6fe013.png)
   
   我300M也没报错 传900M的报错了 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] EricGao888 commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by GitBox <gi...@apache.org>.
EricGao888 commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1223456773

   > Yes, I think it should be done too, please let me take another look, thanks.
   
   Hello @yangjf2019, may I ask whether you are still working on this issue? We have received feedback from many users that they get blocked by this issue. IMHO we could have a hot-fix for it at the first step, simply increasing the threshold. Then we could move it further and make it configurable for users. Thanks.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] Jacky-YC commented on issue #10340: [Bug] [dolphinscheduler-api] HDFS failed to upload large file

Posted by "Jacky-YC (via GitHub)" <gi...@apache.org>.
Jacky-YC commented on issue #10340:
URL: https://github.com/apache/dolphinscheduler/issues/10340#issuecomment-1518438389

   ![image](https://user-images.githubusercontent.com/42370375/233751384-4177e80d-24c9-4b59-a9d8-01bd83782e78.png)
   
   my version 3.1.5


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org