Managed Fusion accepts large binary objects (blobs) for upload, and stores them in Solr. Blob uploads are used to install models, lookup lists, JDBC drivers, and more. The default limit for uploads to Managed Fusion is 10MB. If you need more than that, contact Lucidworks.

Blob types

A resourceType query parameter can be used to specify the blob type. For example, specify file:js-index when uploading a Javascript index stage, like this:
curl -u USERNAME:PASSWORD -H 'Content-Type: text/javascript' -X PUT 'https://EXAMPLE_COMPANY.b.lucidworks.cloud/api/blobs/index-pipeline-js-stage.js?resourceType=file:js-index' --data-binary @index-pipeline-js-stage.js
The complete list of valid values for resourceType is below:
TypeDescription
driver:jdbcA Upload a JDBC Driver to Fusion Server
file:js-indexA JavaScript file for use with a Managed Javascript index stage
file:js-queryA JavaScript file for use with a Managed Javascript query stage
fileAny uploaded file, such as from the Quickstart or the Index Workbench
unspecifiedA blob of unknown type If no resourceType is specified on upload, “other” is assigned by default.

The Blob manager

In addition to the Blob Store API, the Managed Fusion UI provides an interface to the blob store in the Managed Fusion workspace at System > Blobs.
  • Click Add to upload a new blob.
  • Select an uploaded blob to view, replace, or delete it.

Blob editor

The blob editor gives the ability to edit blobs in the Managed Fusion UI in a variety of formats:
  • CSV
  • Java
  • JavaScript
  • Python
  • SCALA
  • Typescript
  • Plain text
Navigate to System > Blobs, select a blob, and click the Edit blob button to open the editor: Edit blob button
  • If the Edit blob button is not available, the blob type cannot be edited with the blob editor.
  • JavaScript can be edited directly in the Managed Fusion UI.
The editor has several elements worth noting:
ElementsDescription
Copies the JSON to the clipboard.
Pastes the clipboard into the editor. Only valid JSON is accepted.
Expands the editor to a fullscreen view.
Condenses the editor to a compact view.
Saves the JSON in the editor and updates the blob.
Resets changes made since the last time changes were applied.
For instructions, see Use the Blob Editor.