With over two decades of experience in data systems architecture and recent years dedicated to AI engineering, I share insights from my experiences here. I hope you find these posts useful. Your comments and feedback are greatly appreciated. — Rares Vernica

Extending SciDB - Part 1

Documentation and Development Tools

One of the strengths of SciDB over other database management systems is its extensibility.1 SciDB allows the user to add new data types, functions, and operators. In this multi-part post, we discuss various aspects of extending SciDB. In this post we look at the available documentation and how to setup... [Read More]

SciDB Tutorials

Best Resources to Get Started with SciDB

SciDB has extensive documentation but there is no official tutorial or getting started guide. In this post, we go over some of the tutorials and getting started materials available online. Please note that some of the materials listed here are more than two years old and specific functions or commands... [Read More]

Keep an Eye on the Chunk Length

Don't Let the "slice" Operator Choke

To define a SciDB array we need to specify its dimensions. For each dimension, we need to specify its name, low value, high value, chunk length and chunk overlap (see documentation). The chunk parameters are somehow internal to SciDB and affect its performance. In this post, we look at a... [Read More]