Questions tagged [oryx]

The Oryx open source project provides simple, real-time large-scale machine learning / predictive analytics infrastructure.

The Oryx open source project provides simple, real-time large-scale machine learning / predictive analytics infrastructure. It implements a few classes of algorithm commonly used in business applications: collaborative filtering / recommendation, classification / regression, and clustering. It can continuously build models from a stream of data at large scale using Apache Hadoop. It also serves queries of those models in real-time via an HTTP REST API, and can update models approximately in response to streaming new data. This two-tier design, comprised of the Computation Layer and Serving Layer, respectively, implement a lambda architecture. Models are exchanged in PMML format.

21 questions
6
votes
1 answer

How to access ODBC Driver on Azure App service

I'm trying to run a Django (3.0) app on Azure App Service in Linux, connected to an Azure SQL Database. In my staging App Service instance, this works perfectly, however, when I set up my production instance on a different Azure account, my Django…
2
votes
4 answers

AttributeError: module 'django.db.models' has no attribute 'JSONField'

Following Django 3.1 guidelines for JSONField for all supported database backends… https://docs.djangoproject.com/en/3.1/releases/3.1/#jsonfield-for-all-supported-database-backends WARNINGS: users.Search.input: (fields.W904)…
JV conseil
  • 328
  • 5
  • 11
2
votes
4 answers

BPMN to Image convertor

Our client is using oryx editor to render bpmn in browser .Now they have asked me to capture the image of the Bpmn diagram and save it. Is there any thing in java or javascript that can change BPMN to jpeg,svg format. Please tell me how can I do…
2
votes
1 answer

Hadoop 2.4.1 and Google Cloud Storage connector for Hadoop

I am trying to run Oryx on top of Hadoop using Google's Cloud Storage Connector for Hadoop: https://cloud.google.com/hadoop/google-cloud-storage-connector I prefer to use Hadoop 2.4.1 with Oryx, so I use the hadoop2_env.sh set-up for the hadoop…
Rich
  • 132
  • 9
2
votes
1 answer

Unable to start Oryx with Hadoop

I am trying to run Oryx with Hadoop 2.4. Hadoop starts successfully with warning: WARN util.NativeCodeLoader: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable. Oryx also starts successfully. But…
user1728310
  • 687
  • 2
  • 5
  • 14
1
vote
2 answers

ErgoDox Oryx bad font in Chromium browsers

For all of my chromium based browsers, I'm getting a very bad font within Oryx for ErgoDox. If you're not familiar with the tool, you can see my keyboard layout here. Update: I'm seeing in "Rendered Fonts" a strange font I don't recognize. Now I'm…
Ivan Pointer
  • 181
  • 2
  • 7
1
vote
0 answers

Oryx - The framework 'Microsoft.NETCore.App', version '3.1.0' was not found

When using GitHub Actions to build my Azure Static Web App, the following oryx errors are produced It was not possible to find any compatible framework version The framework 'Microsoft.NETCore.App', version '3.1.0' was not found. - The following…
Ernest
  • 1,370
  • 13
  • 23
1
vote
1 answer

Unable to start Oryx - NoSuchMethodError

Issue: When starting the oryx serving layer with the ALS example I get the following exception: SEVERE: Exception sending context initialized event to listener instance of class…
mds91
  • 217
  • 2
  • 9
1
vote
2 answers

Setup and running examples in Oryx2

I have a CDH5.5 installation and I want to run some oryx2 examples within my virtual machine. I've already downloaded and compiled oryx2 from github successfully. I've copied the example app to my ORYX_HOME/deploy/bin folder where oryx-run.sh is…
Ivan Fernandez
  • 4,173
  • 5
  • 25
  • 30
1
vote
2 answers

Successful Oryx Install on Google Compute Engine?

I am trying to get Oryx up and running on Google Compute Engine. I created a new instance and installed Oryx via: git clone https://github.com/cloudera/oryx.git cd oryx mvn -DskipTests install and saved this install as an image on Google Compute…
Rich
  • 132
  • 9
1
vote
1 answer

How to export/access recommendations for all users in Oryx?

There is Oryx running on Ubuntu. It is configured to read csv files from some directory to update recommendations. What I need is to get full list of recommendations (all users and 100 recommendations per each user) to insert it back to Postgres…
user606521
  • 14,486
  • 30
  • 113
  • 204
0
votes
1 answer

Oryx: How to `inverse` a JAX function with additional parameters

I would like to use the package Oryx to invert an affine transformation written in JAX. The transformation maps x->y and depends on a set of adjustable parameters (which I call params). Specifically, the affine transformation is defined as: import…
Hylke
  • 75
  • 6
0
votes
1 answer

Yarn install timeout on Azure App Service (Oryx)

When using the Azure App Service through vscode, when deploying to a webapp. The Oryx operations may fail because of a timeout during the installation of packages with Yarn with the message "There appears to be trouble with your network…
0
votes
0 answers

Error: Platform 'nodejs' version '14.17.1' is unsupported

I am trying to deploy Angular application to Azure. I created a static web app in Azure, and connected it to my Github main branch. When I run the action to deploy the app, I am getting an error in Build and Deploy action as Platform 'nodejs'…
nmess88
  • 420
  • 1
  • 4
  • 14
0
votes
1 answer

Azure web app intermittently copying code from tmp to home

I am deploying a Django appication to a Azure Web App via Github Actions. The code is consistently deployed to the tmp folder but is not always copied to wwwroot, even though Oryx deployment logs state that the contents are copied. What causes this…
Snorre Hukkelås
  • 141
  • 1
  • 1
  • 13
1
2