1

Voltdb creates set of default procedures on tables with primary keys (like HELLO_WORLD.insert, HELLO_WORLD.upsert, HELLO_WORLD.delete etc).

Are these procedures partitioned if my HELLO_WORLD table is partitioned? .

I couldn't find any documentation on default procedure partitioning.

Anil_M
  • 10,893
  • 6
  • 47
  • 74
Shamith Kumar
  • 13
  • 1
  • 3

1 Answers1

0

Yes, the default procedures generated when you create a table in VoltDB are partitioned, if the table is partitioned.

All tables will get an insert procedure. If the table has a primary key, then upsert, update, and delete procedures are also generated.

BenjaminBallard
  • 1,482
  • 12
  • 11