Irek M

Results 38 comments of Irek M

I found a workaround: go to https://aws.amazon.com/ec2/spot/instance-advisor/ and find instance type that is least likely to be interrupted. But anyway multi AZ support would be useful, because single AZs sometimes...

the same with 2021.2.3, simple updating version in plugin.xml doesn't help

When I use haxe downloaded as .tar.gz file it isn't much better, the plugin detects it but doesn't compile anything

the best 'result' I can get with the plugin is: ``` Information:Working path: /home/irek/workspace/misc/public/demos/haxe-demo Information:Output path: /home/irek/workspace/misc/public/out Information:Output file: .n Information:Running command: /home/irek/apps/haxe_20180221160843_bb7b827/haxe /home/irek/workspace/misc/public/demos/haxe-demo/haxe-demo.hxml Information:Standard library not found Information:No additional...

It's not generic, it's very surprising. The generic way in python and any language except bash is using real objects, not strings.

Workaround is adding `task.execute_remotely(queue_name="default")` ```python task = Task.init(project_name="", task_name="test2") task.execute_remotely(queue_name="default") print(task.name, task.id, task.get_parameters()) if task.get_parameter("General/is_subtask", "False") != "True": subtask: Task = Task.clone(task, name="test2-subtask", parent=task.id) subtask.set_parameters(is_subtask=True) Task.enqueue(subtask, queue_name="default") ```

Are you sure it's repo cloning? Even data.script on cloned task is empty, so basically it had no chance to even know about any repo

Aaa, now I understand, so your sleep idea would be second workaround. But anyway, both are workarounds, ideally clone implementation should somehow wait for this thread.

yes, this is next stage, and I want to create both stages in same file for convenience, I don't want to use already-defined tasks like examples, because it's too easy...