Questions tagged [stargate-oss]

Stargate is an open source data gateway, originally built for use with Cassandra. It's designed with extensibility as a first-class citizen and makes it easy to use a database for any application workload by adding plugin support for new APIs, data types, and access methods.

Stargate is a data gateway deployed between client applications and a database. It's built with extensibility as a first-class citizen and makes it easy to use a database for any application workload by adding plugin support for new APIs, data types, and access methods.

This project enables customization of all aspects of data access and has modules for authentication, APIs, request handling / routing, and persistence backends. The current form is specific to the Apache Cassandra (C*) backend but there's no bounds to the databases or APIs that this framework can support.

24 questions
1
vote
1 answer

GraphQL API (Astra DB) - the list of existing tables and fields

What is the query syntax for getting the list of all previously created tables? And how can I then view selected table fields?
Pro
  • 71
  • 4
1
vote
1 answer

Do we have tool in linux to manage Stargate (DataStax)?

I am running Stargate (datastax) in my dev server (Redhat). ./starctl --cluster-name xxx --cluster-seed xxx --cluster-version 6.8 --listen xxx --dc DDC --rack rack1 --dse --enable-auth But whenever the session between my local and dev server ends…
David
  • 3,538
  • 9
  • 39
  • 50
1
vote
1 answer

Querying an array content in Cassandra using Stargate Document API

My document in Cassandra is { "id": "1234", "vowels": "aeu", "alpha":[ "xyz", "efgh" ], "new": [ {"name":"nam1"}, {"name":"nam2"} ] } I am using Stargate Document API, query documents that has…
Debdeep Das
  • 129
  • 1
  • 9
1
vote
2 answers

DataStax Stargate Document API

What does the a JSON blob with search filters, allowed operators: $eq, $ne, $in, $nin, $gt, $lt, $gte, $lte, $exists in the Swagger documentation that is shown in the DataStax Document API Swagger UI, it's not that documented so I want to ask if the…
quarks
  • 33,478
  • 73
  • 290
  • 513
1
vote
1 answer

Datastax Astra netlify and react-app, should I use nodejs client or REST API for serverless functions?

I built a simple react app with "create-react-app" and I want to use serverless functions with netlify. I use DataStax Astra Cassandra DB for that purpose, and created a netlify.toml config and .env variables (for the Database) inside my react…
MMMM
  • 3,320
  • 8
  • 43
  • 80
0
votes
1 answer

Issue inserting a new record with @astrajs/rest

I'm new to astra db, and am having issues trying to insert a record into my table called 'usersnew' when using @astrajs/rest This is the structure of my table: CREATE TABLE mykeyspace.usersnew ( id uuid PRIMARY KEY, email text, name…
0
votes
1 answer

How can I query Cassandra with GraphQL using a non-primary key column?

I am using GraphQL for Cassandra database operation. The following search query work perfectly when filtering the column with partition key: query oneUsers{ users(value: { username:"username" }) { values { id name username …
Md Riadul Islam
  • 1,273
  • 11
  • 25
0
votes
1 answer

Stargate API Rate Limiter

Planning a migration from DataStax Enterprise to Astra DB, and I'm curious on some points: If we impose rate limiting on API endpoints exposed by Stargate? If answer is yes, what kind of rate limiting algorithm do we impose? What are the expected…
0
votes
2 answers

Getting error while reading data from DSE cluster with Stargate API

Due to some technical hiccups of using cassandra with Talend, we are using stargate api to read and write data into DSE Cassandra. I had to say, i am completely new to the cassandra or even NoSql world. I have few fields, status(text),…
1
2