Can I Define a Custom Partition Key for GridDB Containers Using Node.js?
I want to distribute data across GridDB nodes based on a custom column (e.g., region_id) instead of relying on automatic partitioning
Use Case: All records with region_id = "East" should reside on Node 1, and region_id = "West" on Node 2
`const containerInfo = {
name: "regional_data",
columns: [{ name: "region_id", type: "STRING" }],
};
store.putContainer(containerInfo, { partitionKey: "region_id" }); // this is hypothetical`
I have two Specific Questions
Does GridDB support custom partition keys via the Node.js API?
If not, what workarounds exist to control data distribution?
**Additional Context: **
The official Node.js client documentation does not mention partition key configuration.