Hi,
It can.
Double click job - open tasks, double click task - open task.
Look at its "files_block" parameter.
It exists&? Is it correct?
Search found 673 matches
- Fri Dec 04, 2020 9:28 am
- Forum: Web GUI
- Topic: WebGUI Thumbnails
- Replies: 4
- Views: 243
- Thu Dec 03, 2020 12:56 pm
- Forum: Web GUI
- Topic: WebGUI Thumbnails
- Replies: 4
- Views: 243
Re: WebGUI Thumbnails
Hi! To make a thumbnail, afrender should know image file path rendered. There are 2 ways to explain render the file to make a thumbnail. 1. Job (block, task) can arrive to server with images files specified, server sends task to render with an image file path. 2. Render can parse an image file path ...
- Sun Nov 29, 2020 1:23 pm
- Forum: General
- Topic: One of the slaves does not put rendered images in the folder specified
- Replies: 2
- Views: 198
Re: One of the slaves does not put rendered images in the folder specified
Hi! You are asking why the same command works as expected on all machines except one. Check Maya settings on that machine. You can also (better) ask this question on Maya forums. As it is not an Afanasy related question, you can not no mention it: " - Running this command all machines works fine exc...
- Fri Nov 20, 2020 9:30 am
- Forum: Maya
- Topic: Maya and Redshift, how to split render layers into separate tasks?
- Replies: 5
- Views: 340
- Thu Nov 19, 2020 2:22 pm
- Forum: Maya
- Topic: Maya and Redshift, how to split render layers into separate tasks?
- Replies: 5
- Views: 340
Re: Maya and Redshift, how to split render layers into separate tasks?
I am not a Maya user. But i can say, that afstarted does not analyzes 3d scene. Only in-app submission scripts, that runs within application internal Python with an opened scene can check for some layers and other options. User should specify all and any options himself when using a stand-alone appl...
- Thu Nov 19, 2020 12:44 pm
- Forum: Maya
- Topic: Maya and Redshift, how to split render layers into separate tasks?
- Replies: 5
- Views: 340
Re: Maya and Redshift, how to split render layers into separate tasks?
Hi!
What is "the job launcher outside of Maya"?
Is it an Afstarter: https://cgru.readthedocs.io/en/latest/a ... arter.html?
What is "the job launcher outside of Maya"?
Is it an Afstarter: https://cgru.readthedocs.io/en/latest/a ... arter.html?
- Tue Nov 03, 2020 9:19 am
- Forum: General
- Topic: How to add new event types
- Replies: 4
- Views: 367
Re: How to add new event types
https://cgru.readthedocs.io/en/latest/a ... tml#events
May be RENDER_ZOMBIE?
https://github.com/CGRU/cgru/blob/maste ... .json#L129
It is already exists since the 3.x version.
May be RENDER_ZOMBIE?
https://github.com/CGRU/cgru/blob/maste ... .json#L129
It is already exists since the 3.x version.
- Tue Nov 03, 2020 8:56 am
- Forum: General
- Topic: How to add new event types
- Replies: 4
- Views: 367
Re: How to add new event types
Hi! Events are build in Afanasy server code. To add a new event, you should add it in the code and recompile the project. But such events as JOB_CREATED and JOB_STARTED can be handled not by the server. When artist submits a job it is JOB_CREATED - submission script perform event. When the first job...
- Tue Nov 03, 2020 8:15 am
- Forum: Web GUI
- Topic: Slowness when browsing jobs
- Replies: 2
- Views: 262
Re: Slowness when browsing jobs
Hi! C++ compiled code using C++ Qt library will be always much-much slower than Web browser interpreting JavaScript. You should use AfWatch - it is the main GUI, it is much more customizable and powerful. Web GUI is designed as an auxiliary GUI, and should be used only in cases (on platforms) where ...
- Fri Oct 30, 2020 7:01 am
- Forum: General
- Topic: Two tasks on gpu and cpu on the same computers
- Replies: 1
- Views: 221
Re: Two tasks on gpu and cpu on the same computers
Hi! Afanasy render can run any number of tasks. Busy - means that it runs at least one task, and it does not mean that it can't take another one. Any task (job block) has a capacity. Render with 2000 capacity can run 2 tasks with 100 capacity, or 1x1000 and 2x500, or 8x250 and so on. Also there is a...