You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seem discoart doesn't respect replica = 1 settings in .yml file:
jtype: Flow
with:
protocol: http
monitoring: false
cors: true
port: 51001
port_monitoring: 51002 # prometheus monitoring port
env:
JINA_LOG_LEVEL: debug
DISCOART_DISABLE_IPYTHON: 1
DISCOART_DISABLE_RESULT_SUMMARY: 1
WANDB_MODE: disabled
executors:
- name: discoart
uses: DiscoArtExecutor
replicas: 1 # change this if you have larger VRAM
floating: false # new feature in Jina 3.7, set this to true allows `create` to be immediately returned without waiting the response on the client
- name: poller
uses: ResultPoller
The text was updated successfully, but these errors were encountered:
jtype: Flow
with:
protocol: http
monitoring: false
cors: true
port: 51001
port_monitoring: 51002 # prometheus monitoring port
env:
JINA_LOG_LEVEL: debug
DISCOART_DISABLE_IPYTHON: 1
DISCOART_DISABLE_RESULT_SUMMARY: 1
WANDB_MODE: disabled
executors:
- name: discoart
uses: DiscoArtExecutor
replicas: 1 # change this if you have larger VRAM
floating: false # new feature in Jina 3.7, set this to true allows `create` to be immediately returned without waiting the response on the client
- name: poller
uses: ResultPoller
Not sure if this is bug or intended:
case 1: replicas settings is set to 1 in .yml
From one machine:
First python script: d = c.post("/create",parameters={... })
Second python script: d = c.post("/create",parameters={... })
In discoart server (docker):
shows 2 running progress bar of 2 'INFO - creating artworks' ...
Should discoart wait for the first create to complete before starting the 2nd create (like dalle-flow)?
case 2: replicas settings is set to 2 in .yml
From one machine:
First python script: d = c.post("/create",parameters={... })
Second python script: d = c.post("/create",parameters={... })
Third python script: d = c.post("/create",parameters={... })
In discoart server (docker):
shows 3 running progress bar of 3 'INFO - creating artworks' ...
It seem discoart doesn't respect replica = 1 settings in .yml file:
The text was updated successfully, but these errors were encountered: