Questions tagged [nuclio]

Nuclio is an open source serverless platform for the deployment process automatization (with support for CPU/GPU, low-power devices, on-prem and cloud). Use this tag for questions specific to problems with Nuclio. Do not use this tag for common issues with other platforms which used the Nuclio such as MLRun, etc.

Nuclio is an open-source serverless platform for the automation of the deployment process (with support for CPU/GPU, low-power devices, on-prem and cloud)

The solution also supports k8s, multi-tenancy, monitoring/logging, auto-scaling, scale to zero, LDAP relation, etc. and integration to Kafka, RabbitMQ, Kinesis, Event Hub, etc.

More information

37 questions
2
votes
1 answer

Function cannot be deleted as it is being provisioned

I am trying to deploy a serverless function with nuclio, but for some reason it failed to build. Now when I do nuctl get function. It just states that the function is in build state. How can I delete it? P.s I am trying the SAM integration with CVAT…
danzz
  • 21
  • 3
2
votes
1 answer

How do I set Dask autoscaling using Iguazio?

I need to create a new Dask cluster in Iguazio. I want to take advantage of Dask's autoscaling features that are described here: https://docs.dask.org/en/stable/how-to/adaptive.html Does Iguazio support Dask cluster autoscaling and, if so, how do I…
Brennan
  • 39
  • 1
  • 5
2
votes
1 answer

What is the difference between mlrun.code_to_function and mlrun.new_project?

What is the difference between mlrun.code_to_function and mlrun.new_project? For example, we can deploy a function with code_to_function: a_fn = mlrun.code_to_function(name='my_function', handler='handler', …
xsqian
  • 199
  • 5
  • 13
2
votes
1 answer

how to use get_offline_features() in the mlrun.feature_store?

I am trying to get a feature from an existing feature store. In the documentation https://docs.mlrun.org/en/latest/api/mlrun.feature_store.html, it says you can either pass a feature vector uri or FeatureVector object to the…
xsqian
  • 199
  • 5
  • 13
1
vote
1 answer

Pull nuclio metrics into prometheus-operator

I am currently trying to pull metrics from nuclio functions to my prometheus operator. But I don't realy understand how I am supposed to do. So far, I have 2 namespaces : monitoring : for my kube-prometheus-stack nuclio : for everything related to…
Mulu
  • 13
  • 2
1
vote
1 answer

Facing Error while deploy the serving function in mlrun

I had instal mlrun with kubernates, i had tried the to execute the 02-model training tutorial code in jupyter-lab, so everything works fine till model serving, then i tried to deploy the serving function then it shows as error listed bellow : Failed…
sukku
  • 19
  • 1
1
vote
1 answer

function serving deployment failed

Here, I'm attaching actual error showed. im using mlrun with docker. specifically mlrun 1.2.0. -------------------------------------------------------------------------- RunError Traceback (most recent call…
1
vote
0 answers

Nuclio Streaming Contents Support? (Docker setup - Python)

Is there support for streaming back a response in Nuclio? The workflow I'm trying to achieve is to have the UI request a large file from a Nuclio function running inside a docker container and having it stream back the large file. For example this…
Mecova
  • 11
  • 2
1
vote
1 answer

I often see something like this v3io:// or /v3io/blah/blah, what are the difference

I often see something like this v3io:// or `/v3io/some-directory, what are the differences?
xsqian
  • 199
  • 5
  • 13
1
vote
1 answer

How do I re-run specific experiments in Iguazio?

I have a job that I ran in Iguazio a few weeks ago, and I want to re-run that exact same job, (same inputs, params, etc). Is there any easy way to do that without submitting code or using schedulers?
Brennan
  • 39
  • 1
  • 5
1
vote
2 answers

After creating a Jupyter service in Iguazio, I'm getting an error that mlrun is not installed

I created a Jupyter service in the Iguazio UI, opened it, and tried to run one of the pre-loaded demos. I'm getting an error saying that mlrun is not installed
Nick Schenone
  • 209
  • 1
  • 7
1
vote
1 answer

using Nuclio functions with provided python bulky code: possible?

so my situation, I have been trying to distribute the load of python based some data science pipelines and, after much searching and some QA (Scale out jobs with high memory consumption but low computing power within AWS and using Docker: finding…
1
vote
1 answer

How do use Nuclio to read events from Azure Service Bus?

I'd like to directly read messages from Azure Service Bus with Nuclio using the Python runtime. Does anyone have experience with this? I'm assuming I need to create the ServiceBusClient inside of an init_context function, but the examples from…
GHayes
  • 55
  • 5
1
vote
1 answer

CVAT call to nuclio function for detector times out after 60 seconds

As in the title. I've created my custom detector, which takes a bit of time. It seems if it runs longer than 60 seconds it times out 504 gateway timeout. Otherwise it runs through. Calling the nuclio function with curl directly seems to work without…
nikste
  • 140
  • 9
1
vote
1 answer

How do I deploy a Nuclio function with MLRun?

I need an example of deploying a Nuclio function using MLRun. I have my code in a .py file How do I use MLRun to deploy this function to Nuclio? How do I configure the HTTP endpoint? (using a specified port)
1
2 3